wrfrun 0.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. wrfrun-0.1.4/.gitattributes +3 -0
  2. wrfrun-0.1.4/.gitignore +19 -0
  3. wrfrun-0.1.4/LICENSE +674 -0
  4. wrfrun-0.1.4/PKG-INFO +52 -0
  5. wrfrun-0.1.4/README.md +25 -0
  6. wrfrun-0.1.4/main.py +25 -0
  7. wrfrun-0.1.4/meson.build +12 -0
  8. wrfrun-0.1.4/pyproject.toml +26 -0
  9. wrfrun-0.1.4/wrfrun/__init__.py +9 -0
  10. wrfrun-0.1.4/wrfrun/core/__init__.py +4 -0
  11. wrfrun-0.1.4/wrfrun/core/config.py +135 -0
  12. wrfrun-0.1.4/wrfrun/core/constant.py +121 -0
  13. wrfrun-0.1.4/wrfrun/core/meson.build +10 -0
  14. wrfrun-0.1.4/wrfrun/core/namelist.py +301 -0
  15. wrfrun-0.1.4/wrfrun/core/server.py +187 -0
  16. wrfrun-0.1.4/wrfrun/data.py +413 -0
  17. wrfrun-0.1.4/wrfrun/extension/__init__.py +1 -0
  18. wrfrun-0.1.4/wrfrun/extension/goos_sst/__init__.py +3 -0
  19. wrfrun-0.1.4/wrfrun/extension/goos_sst/goos_sst.py +86 -0
  20. wrfrun-0.1.4/wrfrun/extension/goos_sst/meson.build +10 -0
  21. wrfrun-0.1.4/wrfrun/extension/goos_sst/res/Vtable.ERA_GOOS_SST +7 -0
  22. wrfrun-0.1.4/wrfrun/extension/goos_sst/res/__init__.py +9 -0
  23. wrfrun-0.1.4/wrfrun/extension/goos_sst/res/meson.build +7 -0
  24. wrfrun-0.1.4/wrfrun/extension/goos_sst/utils.py +81 -0
  25. wrfrun-0.1.4/wrfrun/extension/littler/__init__.py +1 -0
  26. wrfrun-0.1.4/wrfrun/extension/littler/meson.build +7 -0
  27. wrfrun-0.1.4/wrfrun/extension/littler/utils.py +561 -0
  28. wrfrun-0.1.4/wrfrun/extension/meson.build +10 -0
  29. wrfrun-0.1.4/wrfrun/extension/micaps/README.md +30 -0
  30. wrfrun-0.1.4/wrfrun/extension/utils.py +61 -0
  31. wrfrun-0.1.4/wrfrun/meson.build +17 -0
  32. wrfrun-0.1.4/wrfrun/model/__init__.py +8 -0
  33. wrfrun-0.1.4/wrfrun/model/core.py +187 -0
  34. wrfrun-0.1.4/wrfrun/model/geodata.py +301 -0
  35. wrfrun-0.1.4/wrfrun/model/meson.build +16 -0
  36. wrfrun-0.1.4/wrfrun/model/namelist.py +373 -0
  37. wrfrun-0.1.4/wrfrun/model/ndown.py +39 -0
  38. wrfrun-0.1.4/wrfrun/model/plot.py +50 -0
  39. wrfrun-0.1.4/wrfrun/model/run.py +418 -0
  40. wrfrun-0.1.4/wrfrun/model/scheme.py +191 -0
  41. wrfrun-0.1.4/wrfrun/model/utils.py +115 -0
  42. wrfrun-0.1.4/wrfrun/model/wps.py +168 -0
  43. wrfrun-0.1.4/wrfrun/model/wrf.py +66 -0
  44. wrfrun-0.1.4/wrfrun/model/wrfda.py +0 -0
  45. wrfrun-0.1.4/wrfrun/pbs.py +85 -0
  46. wrfrun-0.1.4/wrfrun/plot/__init__.py +1 -0
  47. wrfrun-0.1.4/wrfrun/plot/meson.build +7 -0
  48. wrfrun-0.1.4/wrfrun/plot/wps.py +188 -0
  49. wrfrun-0.1.4/wrfrun/res/__init__.py +12 -0
  50. wrfrun-0.1.4/wrfrun/res/config.yaml.template +211 -0
  51. wrfrun-0.1.4/wrfrun/res/extension/__init__.py +9 -0
  52. wrfrun-0.1.4/wrfrun/res/extension/meson.build +7 -0
  53. wrfrun-0.1.4/wrfrun/res/extension/plotgrids.ncl +216 -0
  54. wrfrun-0.1.4/wrfrun/res/geogrid/GEOGRID.SHAN_DONG_LANDUSE_SOIL_TOP.TBL +982 -0
  55. wrfrun-0.1.4/wrfrun/res/geogrid/__init__.py +8 -0
  56. wrfrun-0.1.4/wrfrun/res/geogrid/meson.build +7 -0
  57. wrfrun-0.1.4/wrfrun/res/meson.build +14 -0
  58. wrfrun-0.1.4/wrfrun/res/metgrid/METGRID.TBL +1150 -0
  59. wrfrun-0.1.4/wrfrun/res/metgrid/__init__.py +8 -0
  60. wrfrun-0.1.4/wrfrun/res/metgrid/meson.build +7 -0
  61. wrfrun-0.1.4/wrfrun/res/namelist/__init__.py +16 -0
  62. wrfrun-0.1.4/wrfrun/res/namelist/meson.build +12 -0
  63. wrfrun-0.1.4/wrfrun/res/namelist/namelist.input.da_wrfvar.template +261 -0
  64. wrfrun-0.1.4/wrfrun/res/namelist/namelist.input.dfi.template +260 -0
  65. wrfrun-0.1.4/wrfrun/res/namelist/namelist.input.real.template +262 -0
  66. wrfrun-0.1.4/wrfrun/res/namelist/namelist.input.wrf.template +262 -0
  67. wrfrun-0.1.4/wrfrun/res/namelist/namelist.wps.template +44 -0
  68. wrfrun-0.1.4/wrfrun/res/namelist/parame.in.template +11 -0
  69. wrfrun-0.1.4/wrfrun/res/run.sh.template +16 -0
  70. wrfrun-0.1.4/wrfrun/res/ungrib/__init__.py +7 -0
  71. wrfrun-0.1.4/wrfrun/res/ungrib/meson.build +6 -0
  72. wrfrun-0.1.4/wrfrun/run.py +186 -0
  73. wrfrun-0.1.4/wrfrun/utils.py +227 -0
  74. wrfrun-0.1.4/wrfrun/workspace.py +87 -0
@@ -0,0 +1,3 @@
1
+ .gitea/ export-ignore
2
+ .github/ export-ignore
3
+ images/ export-ignore
@@ -0,0 +1,19 @@
1
+ .vscode/
2
+ .wrf_env/
3
+ output_data/
4
+ test/
5
+ **/__pycache__
6
+ logs/
7
+ outputs/
8
+ dist/
9
+ wrfrun.egg-info/
10
+ .idea/
11
+ data/
12
+
13
+ **/*.1
14
+ **/*.input_step1
15
+ **/*.input_step2
16
+ **/*.exe
17
+ **/*.so
18
+ test.*
19
+ config.yaml