This is an automated email from the ASF dual-hosted git repository.

eamonford pushed a change to branch climatology
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git.


 discard edc6497  wip
     add d2ba5ad  SDAP-219: Add README for Helm chart (#95)
     add 599312d  SDAP-226: pass in the configured number of zookeeper replicas 
to zookeeper container args (#96)
     add 2d7e962  SDAP-228 Add option to enable/disable root webpage in helm 
chart (#97)
     add 8f05da6  SDAP-220: temporal variance algorithm (#93)
     add a253969  SDAP-223: add esri integration (#94)
     add 5bf903f  SDAP-242: Add updates to ESRI/SDAP Integration (#99)
     add 5c3d5d8  SDAP-232: Add performance metrics logging. (#98)
     add 15dd6f8  SDAP-253 MaximaMinima Algorithm (#102)
     add 0363a6c  wip

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (edc6497)
            \
             N -- N -- N   refs/heads/climatology (0363a6c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   3 +-
 analysis/setup.py                                  |   3 +-
 analysis/webservice/NexusHandler.py                |  39 +++-
 .../webservice/algorithms_spark/HofMoellerSpark.py |  42 +++-
 .../{TimeAvgMapSpark.py => MaximaMinimaSpark.py}   |  79 ++++---
 .../webservice/algorithms_spark/TimeAvgMapSpark.py |  93 ++++++---
 .../webservice/algorithms_spark/TimeSeriesSpark.py |  42 ++--
 .../{TimeAvgMapSpark.py => VarianceSpark.py}       | 108 ++++++++--
 analysis/webservice/algorithms_spark/__init__.py   |  10 +
 analysis/webservice/metrics/MetricsField.py        |  34 +++
 analysis/webservice/metrics/MetricsRecord.py       |  32 +++
 analysis/webservice/metrics/__init__.py            |   2 +
 client/.idea/client.iml                            |  11 -
 client/.idea/encodings.xml                         |   6 -
 client/.idea/misc.xml                              |   4 -
 client/.idea/modules.xml                           |   8 -
 client/.idea/vcs.xml                               |   6 -
 data-access/nexustiles/nexustiles.py               |  94 ++++++---
 helm/Chart.yaml                                    |   2 +-
 helm/README.md                                     | 228 +++++++++++++++++++++
 helm/templates/ingress.yaml                        |   2 +
 helm/templates/root-webpage.yaml                   |   3 +
 helm/templates/zookeeper.yml                       |   2 +-
 helm/values.yaml                                   |  13 +-
 integrations/esri/README.md                        |  59 ++++++
 integrations/esri/nexus_toolbox_embedded.tbx       | Bin 0 -> 681472 bytes
 .../zipped_toolbox/daily_difference_average.py     |  69 +++++++
 .../esri/zipped_toolbox/lat_hof_moeller.py         | 105 ++++++++++
 .../esri/zipped_toolbox/lon_hof_moeller.py         | 105 ++++++++++
 integrations/esri/zipped_toolbox/matchup.py        |  80 ++++++++
 integrations/esri/zipped_toolbox/nexus_toolbox.tbx | Bin 0 -> 644608 bytes
 .../esri/zipped_toolbox/time_average_map.py        |  66 ++++++
 .../esri/zipped_toolbox/time_series_script.py      |  70 +++++++
 {client => integrations/python-client}/.gitignore  |   0
 {client => integrations/python-client}/README.md   |   0
 .../python-client}/docs/nexuscli/index.html        |   0
 .../python-client}/docs/nexuscli/nexuscli.m.html   |   0
 .../docs/nexuscli/nexuscli_ow.m.html               |   0
 .../python-client}/docs/nexuscli/test/index.html   |   0
 .../docs/nexuscli/test/nexuscli_test.m.html        |   0
 .../python-client}/nexuscli/__init__.py            |   0
 .../python-client}/nexuscli/nexuscli.py            |   0
 .../python-client}/nexuscli/nexuscli_ow.py         |   0
 .../python-client}/nexuscli/test/__init__.py       |   0
 .../python-client}/nexuscli/test/nexuscli_test.py  |   0
 .../python-client}/requirements.txt                |   0
 {client => integrations/python-client}/setup.py    |   0
 47 files changed, 1249 insertions(+), 171 deletions(-)
 copy analysis/webservice/algorithms_spark/{TimeAvgMapSpark.py => 
MaximaMinimaSpark.py} (76%)
 copy analysis/webservice/algorithms_spark/{TimeAvgMapSpark.py => 
VarianceSpark.py} (75%)
 create mode 100644 analysis/webservice/metrics/MetricsField.py
 create mode 100644 analysis/webservice/metrics/MetricsRecord.py
 create mode 100644 analysis/webservice/metrics/__init__.py
 delete mode 100644 client/.idea/client.iml
 delete mode 100644 client/.idea/encodings.xml
 delete mode 100644 client/.idea/misc.xml
 delete mode 100644 client/.idea/modules.xml
 delete mode 100644 client/.idea/vcs.xml
 create mode 100644 helm/README.md
 create mode 100644 integrations/esri/README.md
 create mode 100644 integrations/esri/nexus_toolbox_embedded.tbx
 create mode 100755 integrations/esri/zipped_toolbox/daily_difference_average.py
 create mode 100755 integrations/esri/zipped_toolbox/lat_hof_moeller.py
 create mode 100755 integrations/esri/zipped_toolbox/lon_hof_moeller.py
 create mode 100755 integrations/esri/zipped_toolbox/matchup.py
 create mode 100755 integrations/esri/zipped_toolbox/nexus_toolbox.tbx
 create mode 100755 integrations/esri/zipped_toolbox/time_average_map.py
 create mode 100755 integrations/esri/zipped_toolbox/time_series_script.py
 rename {client => integrations/python-client}/.gitignore (100%)
 rename {client => integrations/python-client}/README.md (100%)
 rename {client => integrations/python-client}/docs/nexuscli/index.html (100%)
 rename {client => integrations/python-client}/docs/nexuscli/nexuscli.m.html 
(100%)
 rename {client => integrations/python-client}/docs/nexuscli/nexuscli_ow.m.html 
(100%)
 rename {client => integrations/python-client}/docs/nexuscli/test/index.html 
(100%)
 rename {client => 
integrations/python-client}/docs/nexuscli/test/nexuscli_test.m.html (100%)
 rename {client => integrations/python-client}/nexuscli/__init__.py (100%)
 rename {client => integrations/python-client}/nexuscli/nexuscli.py (100%)
 rename {client => integrations/python-client}/nexuscli/nexuscli_ow.py (100%)
 rename {client => integrations/python-client}/nexuscli/test/__init__.py (100%)
 rename {client => integrations/python-client}/nexuscli/test/nexuscli_test.py 
(100%)
 rename {client => integrations/python-client}/requirements.txt (100%)
 rename {client => integrations/python-client}/setup.py (100%)

Reply via email to