You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by rk...@apache.org on 2023/03/30 17:42:32 UTC

[incubator-sdap-nexus] branch master updated: Add baja_2018 to in-situ config (#231)

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

rkk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


The following commit(s) were added to refs/heads/master by this push:
     new f4f3294  Add baja_2018 to in-situ config (#231)
f4f3294 is described below

commit f4f3294607990ab58bffb84234b16674fbd4bc61
Author: Riley Kuttruff <72...@users.noreply.github.com>
AuthorDate: Thu Mar 30 10:42:25 2023 -0700

    Add baja_2018 to in-situ config (#231)
    
    * Add baja_2018 to in-situ config
    
    * Update CHANGELOG.md
    
    ---------
    
    Co-authored-by: rileykk <ri...@jpl.nasa.gov>
---
 CHANGELOG.md                                  | 1 +
 analysis/webservice/algorithms/doms/config.py | 6 +++++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index b03fda5..9f509a7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 ## [Unreleased]
 ### Added
 - Deletebyquery: Parameter to set the number of rows to fetch from Solr. Speeds up time to gather tiles to delete; especially when there is a lot of them.
+- Added Saildrone's `baja_2018` insitu dataset.
 ### Changed
 - SDAP-443:
   - Replacing DOMS terminology with CDMS terminology:
diff --git a/analysis/webservice/algorithms/doms/config.py b/analysis/webservice/algorithms/doms/config.py
index 3213960..8bdcd0a 100644
--- a/analysis/webservice/algorithms/doms/config.py
+++ b/analysis/webservice/algorithms/doms/config.py
@@ -66,6 +66,10 @@ INSITU_PROVIDER_MAP = [
             {
                 'name': 'shark-2018',
                 'platforms': ['3B']
+            },
+            {
+                'name': 'baja_2018',
+                'platforms': ['3B']
             }
         ]
     },
@@ -257,4 +261,4 @@ def get_project_name(project_name):
         return project['name']
 
     # If not found, return input project name. DOMS insitu node will need this
-    return project_name
\ No newline at end of file
+    return project_name