-
Notifications
You must be signed in to change notification settings - Fork 7
Ingest suite to download raw obs and convert it to ioda format, and ingest it to R2D2 #770
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
089d82f
save
mer-a-o b5746c6
clean up
mer-a-o b13b672
save
mer-a-o 1117977
save
mer-a-o 929cf48
save
mer-a-o 1444256
remove earthdata token and use ~/.netrc
mer-a-o cd3eab5
user provide converter path
mer-a-o eb4996d
add wget_pipeline key
mer-a-o 83025af
better name
mer-a-o b2a4274
some clean up
mer-a-o 59693b4
update ingest documentation
mer-a-o dd62462
change retrieval_method to acquisition_method
mer-a-o c2afe29
address comments
mer-a-o d7353e3
address comments
mer-a-o 7cd7654
cleanup
mer-a-o 7a5638e
coding norm
mer-a-o ad83c50
better handling of errors, and addressing comments
mer-a-o 293761e
save
mer-a-o 6d36b83
Merge branch 'develop' into feature/omps-o3-ingest
mer-a-o 27827ce
Merge branch 'develop' into feature/omps-o3-ingest
mranst File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
src/swell/configuration/jedi/interfaces/geos_cf/convert_observations/omps_o3_nm_total.yaml
This file contains hidden or 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 @@ | ||
| # OMPS Nadir Mapper Total Ozone L2 — IODA converter configuration | ||
| # Converter: omps_o3_nm_h52ioda.py (Must be available either in | ||
| # `converter_path`, set in suite_config.py or | ||
| # or in jedi_bundle/build/bin/) | ||
| # | ||
| # Invocation (one call per cycle, all granules passed together): | ||
| # python3 <jedi_bundle>/build/bin/omps_o3_nm_h52ioda.py | ||
| # -i <granule1.h5> <granule2.h5> ... | ||
| # -o <cycle_dir>/ioda/omps_o3_nm/omps_o3_nm_YYYYMMDDHH.nc | ||
| # -q 128 | ||
| # -e atbd | ||
|
|
||
| # name of the IODA-converterPython | ||
| converter_script: omps_o3_nm_h52ioda.py | ||
|
|
||
| # Output filename template (must be the same as | ||
| # source in ingest_observations/omps_o3_nm_total.yaml) | ||
| output_filename_template: "omps_o3_nm_total_%Y%m%d%H.nc" | ||
|
|
||
| # Additional IODA converter flags passed verbatim after -i and -o | ||
| extra_flags: | ||
| -q: 128 # quality flag threshold | ||
| -e: atbd # error estimation method |
19 changes: 19 additions & 0 deletions
19
src/swell/configuration/jedi/interfaces/geos_cf/download_observations/omps_o3_nm_total.yaml
This file contains hidden or 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,19 @@ | ||
| # OMPS Nadir Mapper Total Ozone L2 — download configuration | ||
| # Instrument: OMPS-NM on Suomi NPP | ||
| # Product: OMPS_NPP_NMTO3_L2 v2.1 | ||
| # Source: NASA GES DISC (Earthdata authentication required in ~/.netrc) | ||
| # | ||
| # Files are named: OMPS-NPP_NMTO3-L2_v2.1_YYYYmMMDDtHH*.h5 | ||
| # where HH is the UTC hour at the start of the orbit granule. | ||
|
|
||
| # Requires earthdata token in `~/.netrc'. | ||
| # Follow the instruction in the documentations | ||
| remote_host: https://snpp-omps.gesdisc.eosdis.nasa.gov | ||
| remote_path_template: /data/SNPP_OMPS_Level2/OMPS_NPP_NMTO3_L2.2/YYYY/JJJ/ | ||
| filename_pattern: OMPS-NPP_NMTO3-L2_v2.1_YYYYmMMDDtHH*.h5 | ||
|
|
||
| # Maximum duration of a single orbit granule. Used to extend the file | ||
| # search window backwards so that orbits starting before window_begin | ||
| # but containing data within the DA window are not missed. | ||
| # OMPS-NM orbits are approximately 101 minutes; PT2H provides a safe margin. | ||
| max_orbit_duration: PT2H |
5 changes: 5 additions & 0 deletions
5
src/swell/configuration/jedi/interfaces/geos_cf/ingest_observations/omps_o3_nm_total.yaml
This file contains hidden or 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,5 @@ | ||
| # OMPS Nadir Mapper Total Ozone L2 — R2D2 ingestion configuration | ||
| # Source: output of ConvertObsToIoda, relative to the cycle work directory. | ||
|
|
||
| acquisition_method: local | ||
| source: ioda/omps_o3_nm_total/omps_o3_nm_total_%Y%m%d%H.nc # in CYCLE_DIR |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -61,5 +61,3 @@ PYTHONPATH={{swell_lib_path}}:$PYTHONPATH | |
| ulimit -S -s unlimited | ||
| ulimit -S -v unlimited | ||
| umask 022 | ||
|
|
||
|
|
||
This file contains hidden or 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
|
mranst marked this conversation as resolved.
|
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.