Skip to content

Commit d7f77d3

Browse files
committed
revert versions back to 006 for ATL06 and ATL08
1 parent e36238c commit d7f77d3

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

clients/python/sliderule/earthdata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
# best effort match of datasets to providers and versions for earthdata
5757
DATASETS = {
5858
"ATL03": {"provider": "NSIDC_CPRD", "version": "007", "api": "cmr", "formats": [".h5"], "collections": [], "url": None},
59-
"ATL06": {"provider": "NSIDC_CPRD", "version": "007", "api": "cmr", "formats": [".h5"], "collections": [], "url": None},
60-
"ATL08": {"provider": "NSIDC_CPRD", "version": "007", "api": "cmr", "formats": [".h5"], "collections": [], "url": None},
59+
"ATL06": {"provider": "NSIDC_CPRD", "version": "006", "api": "cmr", "formats": [".h5"], "collections": [], "url": None},
60+
"ATL08": {"provider": "NSIDC_CPRD", "version": "006", "api": "cmr", "formats": [".h5"], "collections": [], "url": None},
6161
"ATL09": {"provider": "NSIDC_CPRD", "version": "006", "api": "cmr", "formats": [".h5"], "collections": [], "url": None},
6262
"ATL13": {"provider": "NSIDC_CPRD", "version": "006", "api": "cmr", "formats": {".h5"}, "collections": [], "url": None},
6363
"GEDI01_B": {"provider": "LPCLOUD", "version": "002", "api": "cmr", "formats": [".h5"], "collections": [], "url": None},

clients/python/tests/test_earthdata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_grandmesa_time_range(self, init):
3232
granules = earthdata.cmr(short_name='ATL03', polygon=grandmesa, time_start='2018-10-01', time_end='2018-12-01')
3333
assert init
3434
assert isinstance(granules, list)
35-
assert 'ATL03_20181017222812_02950102_006_02.h5' in granules
35+
assert 'ATL03_20181017222812_02950102_007_01.h5' in granules
3636

3737
def test_collection(self, init):
3838
entries = cmr_collection_query('NSIDC_ECS', 'ATL03')

docs/rtd/source/developer_guide/release_notes/release-v04-18-00.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,8 @@ atl03_polygon_subset <50615 x 22> - 2.450325 secs
5252
## Baseline
5353
> clients/python/utils/baseline.py
5454
```
55+
GEDI / 3DEP = 2660.2507194650643
56+
ICESat-2 / ArcticDEM = 1598.2301327720206
57+
ICESat-2 / ATL06p = 1809.8936901734673
58+
ICESat-2 / PhoREAL = 3.245903730392456
5559
```

packages/core/extensions/earth_data_query.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ DEFAULT_MAX_REQUESTED_RESOURCES = 300
1515
-- best effort match of datasets to providers and versions for earthdata
1616
DATASETS = {
1717
ATL03 = {provider = "NSIDC_CPRD", version = "007", api = "cmr", formats = {".h5"}, collections = {}, url = nil},
18-
ATL06 = {provider = "NSIDC_CPRD", version = "007", api = "cmr", formats = {".h5"}, collections = {}, url = nil},
19-
ATL08 = {provider = "NSIDC_CPRD", version = "007", api = "cmr", formats = {".h5"}, collections = {}, url = nil},
18+
ATL06 = {provider = "NSIDC_CPRD", version = "006", api = "cmr", formats = {".h5"}, collections = {}, url = nil},
19+
ATL08 = {provider = "NSIDC_CPRD", version = "006", api = "cmr", formats = {".h5"}, collections = {}, url = nil},
2020
ATL09 = {provider = "NSIDC_CPRD", version = "006", api = "cmr", formats = {".h5"}, collections = {}, url = nil},
2121
ATL13 = {provider = "NSIDC_CPRD", version = "006", api = "cmr", formats = {".h5"}, collections = {}, url = nil},
2222
ATL24 = {provider = "NSIDC_CPRD", version = "001", api = "cmr", formats = {".h5"}, collections = {}, url = nil},

0 commit comments

Comments
 (0)