Skip to content

Commit

Permalink
changed default version of ICESat-2 products to 006
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Aug 3, 2023
1 parent 46531c2 commit 7e16d3e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions clients/python/sliderule/earthdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@

# best effort match of datasets to providers and versions for earthdata
DATASETS = {
"ATL03": {"provider": "NSIDC_ECS", "version": "005", "api": "cmr", "formats": [".h5"], "collections": [] },
"ATL06": {"provider": "NSIDC_ECS", "version": "005", "api": "cmr", "formats": [".h5"], "collections": []},
"ATL08": {"provider": "NSIDC_ECS", "version": "005", "api": "cmr", "formats": [".h5"], "collections": []},
"ATL03": {"provider": "NSIDC_ECS", "version": "006", "api": "cmr", "formats": [".h5"], "collections": [] },
"ATL06": {"provider": "NSIDC_ECS", "version": "006", "api": "cmr", "formats": [".h5"], "collections": []},
"ATL08": {"provider": "NSIDC_ECS", "version": "006", "api": "cmr", "formats": [".h5"], "collections": []},
"GEDI01_B": {"provider": "LPDAAC_ECS", "version": "002", "api": "cmr", "formats": [".h5"], "collections": []},
"GEDI02_A": {"provider": "LPDAAC_ECS", "version": "002", "api": "cmr", "formats": [".h5"], "collections": []},
"GEDI02_B": {"provider": "LPDAAC_ECS", "version": "002", "api": "cmr", "formats": [".tiff"], "collections": []},
Expand Down
2 changes: 1 addition & 1 deletion clients/python/sliderule/icesat2.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
DEFAULT_ASSET="icesat2"

# default standard data product version
DEFAULT_ICESAT2_SDP_VERSION='005'
DEFAULT_ICESAT2_SDP_VERSION='006'

# icesat2 parameters
CNF_POSSIBLE_TEP = -2
Expand Down
2 changes: 1 addition & 1 deletion clients/python/tests/test_earthdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_grandmesa_time_range(self, domain, organization, desired_nodes):
icesat2.init(domain, organization=organization, desired_nodes=desired_nodes, bypass_dns=True)
granules = earthdata.cmr(short_name='ATL03', polygon=grandmesa, time_start='2018-10-01', time_end='2018-12-01')
assert isinstance(granules, list)
assert 'ATL03_20181017222812_02950102_005_01.h5' in granules
assert 'ATL03_20181017222812_02950102_006_02.h5' in granules

#
# STAC
Expand Down
2 changes: 1 addition & 1 deletion clients/python/utils/query_cmr.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"region": "tests/data/grandmesa.geojson",
"tolerance": 0.0,
"dataset": "ATL03",
"version": "005",
"version": "006",
}

# Command line parameters
Expand Down

0 comments on commit 7e16d3e

Please sign in to comment.