-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add presets and adapt code to plot FLEXPART-ICON output. (#37)
* Added ICON model names. * Fix bug for FLEXPART-ICON output plotting, increase patch level * Add modifications from black. * Update README.md, fix bug that caused species attributes to always have the default values. * Make README.md adhere to MD032. * Use pinned environment for gihub actions.
- Loading branch information
Showing
30 changed files
with
787 additions
and
91 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 +1 @@ | ||
1.1.0 | ||
1.1.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
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
49 changes: 49 additions & 0 deletions
49
src/pyflexplot/data/presets/opr/cosmo-1e-ctrl/all_shp.toml
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 @@ | ||
# PyFlexPlot setup file to create deterministic COSMO-1E-CTRL shapefiles | ||
|
||
[_base] | ||
# Test data source: /store/mch/msopr/pyflexplot_testdata/ | ||
infile = "data/cosmo-1e-ctrl/grid_conc_0910_20200216000000.nc" | ||
model = "COSMO-1E" | ||
lang = "de" | ||
outfile_time_format = "%Y%m%dT%H%M" | ||
combine_species = false | ||
|
||
[_base._concentration] | ||
plot_variable = "concentration" | ||
level = 0 | ||
|
||
[_base._concentration._integr] | ||
integrate = true | ||
time = -1 | ||
|
||
[_base._tot_deposition] | ||
plot_variable = "tot_deposition" | ||
integrate = true | ||
|
||
[_base._affected_area] | ||
plot_variable = "affected_area" | ||
integrate = true | ||
level = 0 | ||
time = -1 | ||
combine_species = true | ||
|
||
[_base._concentration."_shp+"] | ||
outfile = "concentration_site-{release_site}_species-{species_id}_domain-{domain}_lang-{lang}_ts-{time_step}.shp" | ||
[_base._concentration._integr."_shp+"] | ||
outfile = "integrated_concentration_site-{release_site}_species-{species_id}_domain-{domain}_lang-{lang}_ts-{time_step}.shp" | ||
[_base._tot_deposition."_shp+"] | ||
outfile = "deposition_tot_site-{release_site}_species-{species_id}_domain-{domain}_lang-{lang}_ts-{time_step}.shp" | ||
[_base._affected_area."_shp+"] | ||
outfile = "affected_area_site-{release_site}_species-{species_id}_domain-{domain}_lang-{lang}_ts-{time_step}.shp" | ||
|
||
[_base._concentration."_multipanel_time+"] | ||
outfile = "concentration_site-{release_site}_species-{species_id}_domain-{domain}_lang-{lang}_ts-{time_step}.shp" | ||
plot_type = "multipanel" | ||
multipanel_param = "time" | ||
time = [2, 4, 8, -1] | ||
|
||
["**".full] | ||
domain = "full" | ||
|
||
["**".zoom] | ||
domain = "ch" |
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
Oops, something went wrong.