-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* download test data from zenodo in parallel * run integration test in circleci * adding pytest as requirement and to docker specifile * updated specfile * account for multiburst, new burst ID, geocode entire burst * use main instead of tag because of missing features * clone from https not ssh * template yaml for test run * validation to check for presense of reflectors Co-authored-by: Scott Staniewicz <[email protected]>
- Loading branch information
1 parent
31e6959
commit 8e0545e
Showing
6 changed files
with
303 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
python>=3.9 # sentinel1-reader requirement | ||
numpy # sentinel1-reader requirement | ||
lxml # sentinel1-reader requirement | ||
gdal>=3 | ||
#isce3 # since the conda-installed isce3 is not the most updated version, installing isce3 from stratch is recommended, to stay in sync with isce3 development. | ||
#journal # as of Mar 2022, journal from conda does not support python3.9; since it is included during isce3 installation above, comment this out temporarily. | ||
lxml | ||
pandas | ||
pyproj | ||
pytest | ||
ruamel.yaml | ||
scipy | ||
yamale | ||
h5py | ||
shapely | ||
requests |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
runconfig: | ||
groups: | ||
dynamic_ancillary_file_group: | ||
dem_file: @DATA_PATH@/test_dem.tiff | ||
static_ancillary_file_group: | ||
burst_database_file: @DATA_PATH@/test_burst_map.sqlite3 | ||
input_file_group: | ||
burst_id: | ||
- @BURST_ID@ | ||
orbit_file_path: | ||
- @DATA_PATH@/orbits/S1A_OPER_AUX_POEORB_OPOD_20221105T083813_V20221015T225942_20221017T005942.EOF | ||
safe_file_path: | ||
- @DATA_PATH@/S1A_IW_SLC__1SDV_20221016T015043_20221016T015111_045461_056FC0_6681.zip | ||
pge_name_group: | ||
pge_name: CSLC_S1_PGE | ||
primary_executable: | ||
product_type: CSLC_S1 | ||
processing: | ||
rdr2geo: | ||
enabled: false | ||
geo2rdr: | ||
lines_per_block: 1000 | ||
numiter: 25 | ||
threshold: 1.0e-08 | ||
geocoding: | ||
flatten: true | ||
lines_per_block: 1000 | ||
x_posting: 5 | ||
x_snap: null | ||
y_posting: 10 | ||
y_snap: null | ||
polarization: co-pol | ||
range_split_spectrum: | ||
enabled: False | ||
product_path_group: | ||
product_path: @TEST_PATH@/product | ||
sas_output_file: @TEST_PATH@/product | ||
scratch_path: @TEST_PATH@/scratch | ||
worker: | ||
gpu_enabled: false | ||
gpu_id: 0 | ||
internet_access: false | ||
name: cslc_s1_workflow_default |
Oops, something went wrong.