Skip to content

Commit 3bd90f7

Browse files
authored
Merge pull request #11 from flamingbear/mhs/DAS-2293/smap-l2-gridder-add-spl2sma-tests
fork test Mhs/das 2293/smap l2 gridder add spl2sma tests
2 parents e722114 + 82337b9 commit 3bd90f7

File tree

4 files changed

+32
-1
lines changed

4 files changed

+32
-1
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ test/hybig/reference_data/**/*.png filter=lfs diff=lfs merge=lfs -text
55
test/hybig/reference_data/**/*.jpg filter=lfs diff=lfs merge=lfs -text
66
test/smap-l2-gridder/reference_files/SPL2SMP_E_reference.nc filter=lfs diff=lfs merge=lfs -text
77
test/smap-l2-gridder/reference_files/SPL2SMAP_reference.nc filter=lfs diff=lfs merge=lfs -text
8+
test/smap-l2-gridder/reference_files/SPL2SMA_reference.nc filter=lfs diff=lfs merge=lfs -text

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ versioning. Rather than a static releases, this repository contains of a number
55
of regression tests that are each semi-independent. This CHANGELOG file should be used
66
to document pull requests to this repository.
77

8+
9+
## 2025-02-05 ([#134](https://github.com/nasa/harmony-regression-tests/pull/134))
10+
11+
- Add configuration for the [SPL2SMA](https://nsidc.org/data/spl2smap/versions/3) collection to harmony-smap-l2-gridder.
12+
813
## 2025-01-31 ([#130](https://github.com/nasa/harmony-regression-tests/pull/130))
914

1015
- Add tests and configuration for harmony-smap-l2-gridder.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:f79a2fd5edfc6f5db4de5c964dfead6af43e8925750ffcc2bf06e9ce3b7875ed
3+
size 54464118

test/smap-l2-gridder/smap-l2-gridder_Regression.ipynb

+23-1
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,19 @@
159159
" },\n",
160160
"}\n",
161161
"\n",
162+
"\n",
163+
"spl2sma_slice = {\n",
164+
" \"y-dim\": slice(0, 1000),\n",
165+
" \"x-dim\": slice(9500, 10500),\n",
166+
"}\n",
167+
"\n",
168+
"spl2sma_selector = {\n",
169+
" \"Soil_Moisture_Retrieval_Data\": spl2sma_slice,\n",
170+
" \"Radar_Data\": spl2sma_slice,\n",
171+
" \"Ancillary_Data\": spl2sma_slice,\n",
172+
"}\n",
173+
"\n",
174+
"\n",
162175
"non_production_configuration = {\n",
163176
" 'SPL2SMP_E': {\n",
164177
" 'collection_concept_id': Collection(id='C1268429712-EEDTEST'),\n",
@@ -170,6 +183,11 @@
170183
" 'granule_id': 'G1268429753-EEDTEST',\n",
171184
" 'selector': spl2smap_selector,\n",
172185
" },\n",
186+
" 'SPL2SMA': {\n",
187+
" 'collection_concept_id': Collection(id='C1268429729-EEDTEST'),\n",
188+
" 'granule_id': 'G1268429743-EEDTEST',\n",
189+
" 'selector': spl2sma_selector,\n",
190+
" },\n",
173191
"}\n",
174192
"\n",
175193
"\n",
@@ -184,6 +202,11 @@
184202
" 'granule_id': '',\n",
185203
" 'selector': spl2smap_selector,\n",
186204
" },\n",
205+
" 'SPL2SMA': {\n",
206+
" 'collection_concept_id': Collection(id='C1236303826-NSIDC_ECS'),\n",
207+
" 'granule_id': '',\n",
208+
" 'selector': spl2sma_selector,\n",
209+
" },\n",
187210
"}"
188211
]
189212
},
@@ -241,7 +264,6 @@
241264
"if configuration is not None:\n",
242265
" for collection, test_config in configuration['config'].items():\n",
243266
" with TemporaryDirectory() as tmp_dir:\n",
244-
"\n",
245267
" test_request = Request(\n",
246268
" collection=test_config['collection_concept_id'],\n",
247269
" granule_id=[test_config['granule_id']],\n",

0 commit comments

Comments
 (0)