You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by sk...@apache.org on 2023/06/21 01:28:57 UTC

[incubator-sdap-nexus] branch tmp-aq-match-updates updated: add forgotten change

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

skperez pushed a commit to branch tmp-aq-match-updates
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


The following commit(s) were added to refs/heads/tmp-aq-match-updates by this push:
     new 63c6013  add forgotten change
63c6013 is described below

commit 63c6013839f27f8b130237cf1c134dd0fcd037b5
Author: skorper <st...@gmail.com>
AuthorDate: Tue Jun 20 18:28:47 2023 -0700

    add forgotten change
---
 analysis/webservice/algorithms_spark/Matchup.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/analysis/webservice/algorithms_spark/Matchup.py b/analysis/webservice/algorithms_spark/Matchup.py
index f27612a..be62dfe 100644
--- a/analysis/webservice/algorithms_spark/Matchup.py
+++ b/analysis/webservice/algorithms_spark/Matchup.py
@@ -539,7 +539,8 @@ class DomsPoint(object):
             'wind_to_direction_quality',
             'eastward_wind',
             'northward_wind',
-            'wind_component_quality'
+            'wind_component_quality',
+            'Qout'
         ]
         data = []
         # This is for in-situ secondary points
@@ -806,6 +807,8 @@ def match_satellite_to_insitu(tile_ids, primary_b, secondary_b, parameter_b, tt_
     # Query edge for all points within the spatial-temporal extents of this partition
     is_insitu_dataset = edge_endpoints.get_provider_name(secondary_b.value) is not None
 
+    print(f'{is_insitu_dataset=}')
+
     if is_insitu_dataset:
         the_time = datetime.now()
         edge_session = requests.Session()