scahpy 0.0.9__tar.gz → 0.0.11__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.

Potentially problematic release.


This version of scahpy might be problematic. Click here for more details.

Files changed (39) hide show
  1. {scahpy-0.0.9 → scahpy-0.0.11}/MANIFEST.in +2 -2
  2. {scahpy-0.0.9/scahpy.egg-info → scahpy-0.0.11}/PKG-INFO +2 -1
  3. {scahpy-0.0.9 → scahpy-0.0.11}/pyproject.toml +2 -1
  4. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy/__init__.py +1 -1
  5. scahpy-0.0.11/scahpy/data/SA_paises.dbf +0 -0
  6. scahpy-0.0.11/scahpy/data/SA_paises.prj +1 -0
  7. scahpy-0.0.11/scahpy/data/SA_paises.shp +0 -0
  8. scahpy-0.0.11/scahpy/data/SA_paises.shp.xml +1411 -0
  9. scahpy-0.0.11/scahpy/data/SA_paises.shx +0 -0
  10. scahpy-0.0.11/scahpy/data/Z12.cpg +1 -0
  11. scahpy-0.0.11/scahpy/data/Z12.dbf +0 -0
  12. scahpy-0.0.11/scahpy/data/Z12.prj +1 -0
  13. scahpy-0.0.11/scahpy/data/Z12.shp +0 -0
  14. scahpy-0.0.11/scahpy/data/Z12.shx +0 -0
  15. scahpy-0.0.11/scahpy/data/estaciones_test.cpg +1 -0
  16. scahpy-0.0.11/scahpy/data/estaciones_test.dbf +0 -0
  17. scahpy-0.0.11/scahpy/data/estaciones_test.prj +1 -0
  18. scahpy-0.0.11/scahpy/data/estaciones_test.qmd +27 -0
  19. scahpy-0.0.11/scahpy/data/estaciones_test.shp +0 -0
  20. scahpy-0.0.11/scahpy/data/estaciones_test.shx +0 -0
  21. scahpy-0.0.11/scahpy/data/geo_em.d01.nc +0 -0
  22. scahpy-0.0.11/scahpy/data/geo_em.d02.nc +0 -0
  23. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy/in_out.py +74 -34
  24. scahpy-0.0.11/scahpy/map_plots.py +279 -0
  25. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy/met_diag.py +50 -17
  26. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy/spatial_scales.py +1 -1
  27. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy/temp_scales.py +18 -7
  28. {scahpy-0.0.9 → scahpy-0.0.11/scahpy.egg-info}/PKG-INFO +2 -1
  29. scahpy-0.0.11/scahpy.egg-info/SOURCES.txt +35 -0
  30. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy.egg-info/requires.txt +1 -0
  31. scahpy-0.0.9/scahpy/map_plots.py +0 -73
  32. scahpy-0.0.9/scahpy.egg-info/SOURCES.txt +0 -17
  33. {scahpy-0.0.9 → scahpy-0.0.11}/LICENSE +0 -0
  34. {scahpy-0.0.9 → scahpy-0.0.11}/README.md +0 -0
  35. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy/colors_scales.py +0 -0
  36. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy/data/__init__.py +0 -0
  37. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy.egg-info/dependency_links.txt +0 -0
  38. {scahpy-0.0.9 → scahpy-0.0.11}/scahpy.egg-info/top_level.txt +0 -0
  39. {scahpy-0.0.9 → scahpy-0.0.11}/setup.cfg +0 -0
@@ -5,5 +5,5 @@ include *.toml
5
5
  recursive-exclude * __pycache__
6
6
  recursive-exclude * *.py[co]
7
7
 
8
- recursive-include scahpy/*.py
9
- recursive-include scahpy/data/*
8
+ include scahpy/*.py
9
+ include scahpy/data/*
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scahpy
3
- Version: 0.0.9
3
+ Version: 0.0.11
4
4
  Summary: Package to process and analyze outputs from IGP-RESM-COW model
5
5
  Author-email: Fiorela Castillón <fv.castillon@gmail.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -689,6 +689,7 @@ License-File: LICENSE
689
689
  Requires-Dist: wrf-python
690
690
  Requires-Dist: netCDF4
691
691
  Requires-Dist: xarray
692
+ Requires-Dist: dask
692
693
  Requires-Dist: numpy
693
694
  Requires-Dist: pandas
694
695
  Requires-Dist: matplotlib
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
 
7
7
  [project]
8
8
  name = "scahpy"
9
- version = "0.0.9"
9
+ version = "0.0.11"
10
10
  description = "Package to process and analyze outputs from IGP-RESM-COW model"
11
11
  readme = "README.md"
12
12
  authors = [{ name = "Fiorela Castillón", email = "fv.castillon@gmail.com" }]
@@ -22,6 +22,7 @@ dependencies = [
22
22
  'wrf-python',
23
23
  'netCDF4',
24
24
  'xarray',
25
+ 'dask',
25
26
  'numpy',
26
27
  'pandas',
27
28
  'matplotlib',
@@ -9,4 +9,4 @@ __all__ = [
9
9
  ]
10
10
 
11
11
  # Version of scahpy package
12
- __version__ = "0.0.9"
12
+ __version__ = "0.0.11"
Binary file
@@ -0,0 +1 @@
1
+ GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]]
Binary file