-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from nasa/release/1.2.0
Release/1.2.0
- Loading branch information
Showing
20 changed files
with
703 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "batchee" | ||
version = "1.1.0" | ||
version = "1.2.0rc1" | ||
description = "Determine how to group together input files into batches for subsequent concatenation" | ||
authors = ["Daniel Kaufman <[email protected]>"] | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from pathlib import Path | ||
|
||
import pytest | ||
|
||
|
||
def pytest_addoption(parser): | ||
"""Sets up optional argument to keep temporary testing directory.""" | ||
parser.addoption( | ||
"--keep-tmp", | ||
action="store_true", | ||
help="Keep temporary directory after testing. Useful for debugging.", | ||
) | ||
|
||
|
||
@pytest.fixture(scope="class") | ||
def pass_options(request): | ||
"""Adds optional argument to a test class.""" | ||
request.cls.KEEP_TMP = request.config.getoption("--keep-tmp") | ||
|
||
|
||
@pytest.fixture(scope="function", autouse=True) | ||
def temp_output_dir(tmpdir_factory) -> Path: | ||
return Path(tmpdir_factory.mktemp("tmp-")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"sources": [{ | ||
"collection": "C1234088182-EEDTEST" | ||
}], | ||
"format": { | ||
"mime": "application/x-netcdf4" | ||
}, | ||
"subset": {}, | ||
"requestId": "00001111-2222-3333-4444-555566667777", | ||
"user": "jdoe", | ||
"client": "harmony-example", | ||
"isSynchronous": false, | ||
"stagingLocation": "s3://example-bucket/public/some-org/some-service/some-uuid/", | ||
"callback": "http://localhost/some-path", | ||
"version": "0.10.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"stac_version": "1.0.0-beta.2", | ||
"stac_extensions": [], | ||
"id": "cfc32383-cfd1-4e43-8d5f-55f539b6fa59", | ||
"links": [ | ||
{ | ||
"rel": "harmony_source", | ||
"href": "https://cmr.uat.earthdata.nasa.gov/search/concepts/C1234088182-EEDTEST" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S012G01.json", | ||
"type": "application/json", | ||
"title": "granule_S012G01" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S012G02.json", | ||
"type": "application/json", | ||
"title": "granule_S012G02" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S013G01.json", | ||
"type": "application/json", | ||
"title": "granule_S013G01" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S013G02.json", | ||
"type": "application/json", | ||
"title": "granule_S013G02" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S014G01.json", | ||
"type": "application/json", | ||
"title": "granule_S014G01" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S014G02.json", | ||
"type": "application/json", | ||
"title": "granule_S014G02" | ||
} | ||
], | ||
"description": "CMR Granules for C1234088182-EEDTEST batch 1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"stac_version": "1.0.0-beta.2", | ||
"stac_extensions": [], | ||
"id": "cfc32383-cfd1-4e43-8d5f-55f539b6fa59", | ||
"links": [ | ||
{ | ||
"rel": "harmony_source", | ||
"href": "https://cmr.uat.earthdata.nasa.gov/search/concepts/C1234088182-EEDTEST" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S012G01.json", | ||
"type": "application/json", | ||
"title": "granule_S012G01" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S012G02.json", | ||
"type": "application/json", | ||
"title": "granule_S012G02" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S013G01.json", | ||
"type": "application/json", | ||
"title": "granule_S013G01" | ||
}, | ||
{ | ||
"rel": "next", | ||
"href": "tests/data/harmony/source/catalog1.json", | ||
"type": "application/json", | ||
"title": "Next page" | ||
} | ||
], | ||
"description": "CMR Granules for C1234088182-EEDTEST batch 1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"stac_version": "1.0.0-beta.2", | ||
"stac_extensions": [], | ||
"id": "cfc32383-cfd1-4e43-8d5f-55f539b6fa59", | ||
"links": [ | ||
{ | ||
"rel": "harmony_source", | ||
"href": "https://cmr.uat.earthdata.nasa.gov/search/concepts/C1234088182-EEDTEST" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S013G02.json", | ||
"type": "application/json", | ||
"title": "granule_S013G02" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S014G01.json", | ||
"type": "application/json", | ||
"title": "granule_S014G01" | ||
}, | ||
{ | ||
"rel": "item", | ||
"href": "./granule_S014G02.json", | ||
"type": "application/json", | ||
"title": "granule_S014G02" | ||
}, | ||
{ | ||
"rel": "prev", | ||
"href": "tests/data/harmony/source/catalog0.json", | ||
"type": "application/json", | ||
"title": "Previous page" | ||
} | ||
], | ||
"description": "CMR Granules for C1234088182-EEDTEST batch 2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"stac_version": "1.0.0-beta.2", | ||
"stac_extensions": [], | ||
"id": "51d02b24-d00e-4640-9887-05f98f6b96d8", | ||
"type": "Feature", | ||
"links": [], | ||
"properties": { | ||
"start_datetime": "2020-01-02T00:00:00.000Z", | ||
"end_datetime": "2020-01-02T23:59:59.000Z" | ||
}, | ||
"bbox": [1, 3, 1, 3], | ||
"geometry": { | ||
"type": "Polygon", | ||
"coordinates": [ | ||
[ | ||
[ | ||
-179.95, | ||
-89.95 | ||
], | ||
[ | ||
-179.95, | ||
89.95 | ||
], | ||
[ | ||
179.95, | ||
89.95 | ||
], | ||
[ | ||
179.95, | ||
-89.95 | ||
], | ||
[ | ||
-179.95, | ||
-89.95 | ||
] | ||
] | ||
] | ||
}, | ||
"assets": { | ||
"data": { | ||
"href": "file://tests/data/harmony/granules/TEMPO_NO2_L2_V03_20240601T120101Z_S012G01.nc", | ||
"title": "TEMPO_NO2_L2_V03_20240601T120101Z_S012G01.nc", | ||
"type": "application/x-netcdf4", | ||
"roles": [ | ||
"data" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"stac_version": "1.0.0-beta.2", | ||
"stac_extensions": [], | ||
"id": "21eb7dc5-7a9d-4374-9a88-12451ba653ef", | ||
"type": "Feature", | ||
"links": [], | ||
"properties": { | ||
"start_datetime": "2020-01-03T00:00:00.000Z", | ||
"end_datetime": "2020-01-03T23:59:59.000Z" | ||
}, | ||
"bbox": [-1, -3, -1, -3], | ||
"geometry": { | ||
"type": "Polygon", | ||
"coordinates": [ | ||
[ | ||
[ | ||
-179.95, | ||
-89.95 | ||
], | ||
[ | ||
-179.95, | ||
89.95 | ||
], | ||
[ | ||
179.95, | ||
89.95 | ||
], | ||
[ | ||
179.95, | ||
-89.95 | ||
], | ||
[ | ||
-179.95, | ||
-89.95 | ||
] | ||
] | ||
] | ||
}, | ||
"assets": { | ||
"data": { | ||
"href": "file://tests/data/harmony/granules/TEMPO_NO2_L2_V03_20240601T120107Z_S012G02.nc", | ||
"title": "TEMPO_NO2_L2_V03_20240601T120107Z_S012G02.nc", | ||
"type": "application/x-netcdf4", | ||
"roles": [ | ||
"data" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.