-
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 #142 from nsidc/update-pm_icecon
Update pm_icecon dep
- Loading branch information
Showing
56 changed files
with
3,923 additions
and
888 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
# v0.2.0 | ||
|
||
* Produce 25km CDR instead of 12.5km. | ||
* Refactor how platforms are handled to support overriding platform start dates | ||
via yaml configuration files. | ||
|
||
|
||
# v0.1.0 | ||
|
||
* Initial version of the ECDR. |
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,20 @@ | ||
#!/bin/bash | ||
|
||
set -exo pipefail | ||
|
||
BT_NT_BASE_DIR="/share/apps/G02202_V5/25km/BT_NT_ss" | ||
mkdir -p $BT_NT_BASE_DIR | ||
NT2_BASE_DIR="/share/apps/G02202_V5/25km/NT2_ss" | ||
mkdir -p $NT2_BASE_DIR | ||
|
||
START_DATE="2018-04-01" | ||
END_DATE="2018-12-31" | ||
HEMISPHERE="north" | ||
|
||
# NT method first | ||
FORCE_PLATFORM=F17 ./scripts/cli.sh multiprocess-daily --start-date $START_DATE --end-date $END_DATE --hemisphere $HEMISPHERE --base-output-dir $BT_NT_BASE_DIR --land-spillover-alg BT_NT --resolution 25 --ancillary-source CDRv4 | ||
FORCE_PLATFORM=am2 ./scripts/cli.sh multiprocess-daily --start-date $START_DATE --end-date $END_DATE --hemisphere $HEMISPHERE --base-output-dir $BT_NT_BASE_DIR --land-spillover-alg BT_NT --resolution 25 --ancillary-source CDRv4 | ||
|
||
# NT2 method second | ||
FORCE_PLATFORM=F17 ./scripts/cli.sh multiprocess-daily --start-date $START_DATE --end-date $END_DATE --hemisphere $HEMISPHERE --base-output-dir $NT2_BASE_DIR --land-spillover-alg NT2 --resolution 25 --ancillary-source CDRv4 | ||
FORCE_PLATFORM=am2 ./scripts/cli.sh multiprocess-daily --start-date $START_DATE --end-date $END_DATE --hemisphere $HEMISPHERE --base-output-dir $NT2_BASE_DIR --land-spillover-alg NT2 --resolution 25 --ancillary-source CDRv4 |
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
Oops, something went wrong.