ICEPyUS 1.0.1__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.
icepyus-1.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Omar Ramos Pérez
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
icepyus-1.0.1/PKG-INFO ADDED
@@ -0,0 +1,148 @@
1
+ Metadata-Version: 2.4
2
+ Name: ICEPyUS
3
+ Version: 1.0.1
4
+ Summary: Índices Climáticos ETCCDI de Precipitación en Python - Universidad de Sonora
5
+ Author-email: Omar Ramos Pérez <omar.ramos@unison.mx>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2026 Omar Ramos Pérez
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Project-URL: Homepage, https://github.com/OmarRamosPerez/Indices-ETCCDI-precipitacion-
29
+ Keywords: ETCCDI,precipitacion,climate indices,netcdf
30
+ Classifier: Programming Language :: Python :: 3
31
+ Classifier: License :: OSI Approved :: MIT License
32
+ Classifier: Operating System :: OS Independent
33
+ Requires-Python: >=3.10
34
+ Description-Content-Type: text/markdown
35
+ License-File: LICENSE
36
+ Requires-Dist: numpy
37
+ Requires-Dist: xarray
38
+ Requires-Dist: netCDF4
39
+ Requires-Dist: pandas
40
+ Requires-Dist: matplotlib
41
+ Requires-Dist: pip
42
+ Requires-Dist: cdo
43
+ Requires-Dist: numpy
44
+ Requires-Dist: scipy
45
+ Requires-Dist: geopandas
46
+ Requires-Dist: pyyaml
47
+ Requires-Dist: pyproj
48
+ Requires-Dist: cartopy
49
+ Requires-Dist: jupyterlab
50
+ Requires-Dist: ipykernel
51
+ Requires-Dist: ipympl
52
+ Requires-Dist: xarray
53
+ Requires-Dist: openpyxl
54
+ Requires-Dist: tqdm
55
+ Requires-Dist: pymannkendall
56
+ Dynamic: license-file
57
+
58
+ # Indices-ETCCDI-precipitacion
59
+ Paquete en Python para calcular y graficar índices climáticos de precipitación ETCCDI para datos en malla (NetCDF) e in situ (TXT)
60
+
61
+ <br><br>
62
+
63
+ # Versión:
64
+ 1.0
65
+ <br><br>
66
+
67
+
68
+
69
+ # Tutorial
70
+ Aquí encontrarás la definición de los índices y ejemplos de cuadernos de Jupyter. [Enlace](ejemplos/Indice.md)
71
+ <br><br>
72
+
73
+
74
+
75
+ # Instalación paso a paso
76
+ - [Windows](Instalacion/Instalacion_ETCCDI-precipitacion_Windows.md)
77
+ - [Linux](Instalacion/Instalacion_ETCCDI-precipitacion_Linux.md)
78
+ - [MacOS](Instalacion/Instalacion_ETCCDI-precipitacion_MacOS.md)
79
+ <br><br>
80
+ <!--
81
+ ##3.1 Instalación en Linux (Ubuntu / Debian)
82
+
83
+ Paso 1: Instalar CDO y dependencias del sistema
84
+
85
+ ```
86
+ sudo apt update
87
+ ```
88
+
89
+ ```
90
+ sudo apt install cdo python3-pip python3-venv git -y
91
+ ```
92
+
93
+ Paso 2: Clonar el repositorio corregido
94
+ ```
95
+ git clone https://github.com/OmarRamosPerez/Indices-ETCCDI-precipitacion-.git
96
+ ```
97
+ ```
98
+ cd Indices-ETCCDI-precipitacion-
99
+ ```
100
+
101
+ Paso 3: Crear entorno virtual (recomendado)
102
+ ```
103
+ python3 -m venv venv_etccdi
104
+ ```
105
+ ```
106
+ source venv_etccdi/bin/activate
107
+ ```
108
+
109
+
110
+ Paso 4: Instalar el paquete en modo editable (para desarrollo, los cambios al código se reflejan al instante):
111
+ ```
112
+ pip install -e .
113
+ ```
114
+
115
+ Paso 5: Verificar instalación
116
+ ```
117
+ python3 -c "from ETCCDI_precipitacion.Procesamiento import ETCCDI_precip_procesamiento; print('OK')"
118
+ ```
119
+ -->
120
+
121
+ # Verificación de instalación
122
+
123
+ En una nueva anaconda prompt o terminal, activar el entorno "ETCCDI_precipitacion"
124
+ ```
125
+ conda activate ETCCDI_precipitacion
126
+ ```
127
+ Enseguida escribir las siguientes líneas
128
+ ```
129
+ python -c "
130
+ from ETCCDI_precipitacion import ETCCDI_precip_malla, ETCCDI_precip_in_situ
131
+ from ETCCDI_precipitacion import ETCCDI_precip_plot_in_situ, ETCCDI_precip_plot_malla
132
+ print('✅ Paquete instalado correctamente')
133
+ "
134
+ ```
135
+ <br><br>
136
+ Resultado esperado
137
+
138
+ ![Felicitaciones paquete "ETCCDI_precipitacion"](Verificacion_Instalacion_paquete.png)
139
+
140
+ <br><br>
141
+ # Asistencia
142
+
143
+ Si tienes alguna pregunta, no dudes en escribir a:
144
+ ```
145
+ omar.ramos@unison.mx
146
+ ```
147
+
148
+ Puedes escribirme en español o inglés.
@@ -0,0 +1,91 @@
1
+ # Indices-ETCCDI-precipitacion
2
+ Paquete en Python para calcular y graficar índices climáticos de precipitación ETCCDI para datos en malla (NetCDF) e in situ (TXT)
3
+
4
+ <br><br>
5
+
6
+ # Versión:
7
+ 1.0
8
+ <br><br>
9
+
10
+
11
+
12
+ # Tutorial
13
+ Aquí encontrarás la definición de los índices y ejemplos de cuadernos de Jupyter. [Enlace](ejemplos/Indice.md)
14
+ <br><br>
15
+
16
+
17
+
18
+ # Instalación paso a paso
19
+ - [Windows](Instalacion/Instalacion_ETCCDI-precipitacion_Windows.md)
20
+ - [Linux](Instalacion/Instalacion_ETCCDI-precipitacion_Linux.md)
21
+ - [MacOS](Instalacion/Instalacion_ETCCDI-precipitacion_MacOS.md)
22
+ <br><br>
23
+ <!--
24
+ ##3.1 Instalación en Linux (Ubuntu / Debian)
25
+
26
+ Paso 1: Instalar CDO y dependencias del sistema
27
+
28
+ ```
29
+ sudo apt update
30
+ ```
31
+
32
+ ```
33
+ sudo apt install cdo python3-pip python3-venv git -y
34
+ ```
35
+
36
+ Paso 2: Clonar el repositorio corregido
37
+ ```
38
+ git clone https://github.com/OmarRamosPerez/Indices-ETCCDI-precipitacion-.git
39
+ ```
40
+ ```
41
+ cd Indices-ETCCDI-precipitacion-
42
+ ```
43
+
44
+ Paso 3: Crear entorno virtual (recomendado)
45
+ ```
46
+ python3 -m venv venv_etccdi
47
+ ```
48
+ ```
49
+ source venv_etccdi/bin/activate
50
+ ```
51
+
52
+
53
+ Paso 4: Instalar el paquete en modo editable (para desarrollo, los cambios al código se reflejan al instante):
54
+ ```
55
+ pip install -e .
56
+ ```
57
+
58
+ Paso 5: Verificar instalación
59
+ ```
60
+ python3 -c "from ETCCDI_precipitacion.Procesamiento import ETCCDI_precip_procesamiento; print('OK')"
61
+ ```
62
+ -->
63
+
64
+ # Verificación de instalación
65
+
66
+ En una nueva anaconda prompt o terminal, activar el entorno "ETCCDI_precipitacion"
67
+ ```
68
+ conda activate ETCCDI_precipitacion
69
+ ```
70
+ Enseguida escribir las siguientes líneas
71
+ ```
72
+ python -c "
73
+ from ETCCDI_precipitacion import ETCCDI_precip_malla, ETCCDI_precip_in_situ
74
+ from ETCCDI_precipitacion import ETCCDI_precip_plot_in_situ, ETCCDI_precip_plot_malla
75
+ print('✅ Paquete instalado correctamente')
76
+ "
77
+ ```
78
+ <br><br>
79
+ Resultado esperado
80
+
81
+ ![Felicitaciones paquete "ETCCDI_precipitacion"](Verificacion_Instalacion_paquete.png)
82
+
83
+ <br><br>
84
+ # Asistencia
85
+
86
+ Si tienes alguna pregunta, no dudes en escribir a:
87
+ ```
88
+ omar.ramos@unison.mx
89
+ ```
90
+
91
+ Puedes escribirme en español o inglés.
@@ -0,0 +1,48 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "ICEPyUS"
7
+ version = "1.0.1"
8
+ description = "Índices Climáticos ETCCDI de Precipitación en Python - Universidad de Sonora"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = {file = "LICENSE"}
12
+ authors = [
13
+ {name = "Omar Ramos Pérez", email = "omar.ramos@unison.mx"}
14
+ ]
15
+ keywords = ["ETCCDI", "precipitacion", "climate indices", "netcdf"]
16
+ classifiers = [
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ ]
21
+ dependencies = [
22
+ "numpy",
23
+ "xarray",
24
+ "netCDF4",
25
+ "pandas",
26
+ "matplotlib",
27
+ "pip",
28
+ "cdo",
29
+ "numpy",
30
+ "scipy",
31
+ "geopandas",
32
+ "pyyaml",
33
+ "pyproj",
34
+ "cartopy",
35
+ "jupyterlab",
36
+ "ipykernel",
37
+ "ipympl",
38
+ "xarray",
39
+ "openpyxl",
40
+ "tqdm",
41
+ "pymannkendall",
42
+ ]
43
+
44
+ [project.urls]
45
+ Homepage = "https://github.com/OmarRamosPerez/Indices-ETCCDI-precipitacion-"
46
+
47
+ [tool.setuptools.packages.find]
48
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,148 @@
1
+ Metadata-Version: 2.4
2
+ Name: ICEPyUS
3
+ Version: 1.0.1
4
+ Summary: Índices Climáticos ETCCDI de Precipitación en Python - Universidad de Sonora
5
+ Author-email: Omar Ramos Pérez <omar.ramos@unison.mx>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2026 Omar Ramos Pérez
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Project-URL: Homepage, https://github.com/OmarRamosPerez/Indices-ETCCDI-precipitacion-
29
+ Keywords: ETCCDI,precipitacion,climate indices,netcdf
30
+ Classifier: Programming Language :: Python :: 3
31
+ Classifier: License :: OSI Approved :: MIT License
32
+ Classifier: Operating System :: OS Independent
33
+ Requires-Python: >=3.10
34
+ Description-Content-Type: text/markdown
35
+ License-File: LICENSE
36
+ Requires-Dist: numpy
37
+ Requires-Dist: xarray
38
+ Requires-Dist: netCDF4
39
+ Requires-Dist: pandas
40
+ Requires-Dist: matplotlib
41
+ Requires-Dist: pip
42
+ Requires-Dist: cdo
43
+ Requires-Dist: numpy
44
+ Requires-Dist: scipy
45
+ Requires-Dist: geopandas
46
+ Requires-Dist: pyyaml
47
+ Requires-Dist: pyproj
48
+ Requires-Dist: cartopy
49
+ Requires-Dist: jupyterlab
50
+ Requires-Dist: ipykernel
51
+ Requires-Dist: ipympl
52
+ Requires-Dist: xarray
53
+ Requires-Dist: openpyxl
54
+ Requires-Dist: tqdm
55
+ Requires-Dist: pymannkendall
56
+ Dynamic: license-file
57
+
58
+ # Indices-ETCCDI-precipitacion
59
+ Paquete en Python para calcular y graficar índices climáticos de precipitación ETCCDI para datos en malla (NetCDF) e in situ (TXT)
60
+
61
+ <br><br>
62
+
63
+ # Versión:
64
+ 1.0
65
+ <br><br>
66
+
67
+
68
+
69
+ # Tutorial
70
+ Aquí encontrarás la definición de los índices y ejemplos de cuadernos de Jupyter. [Enlace](ejemplos/Indice.md)
71
+ <br><br>
72
+
73
+
74
+
75
+ # Instalación paso a paso
76
+ - [Windows](Instalacion/Instalacion_ETCCDI-precipitacion_Windows.md)
77
+ - [Linux](Instalacion/Instalacion_ETCCDI-precipitacion_Linux.md)
78
+ - [MacOS](Instalacion/Instalacion_ETCCDI-precipitacion_MacOS.md)
79
+ <br><br>
80
+ <!--
81
+ ##3.1 Instalación en Linux (Ubuntu / Debian)
82
+
83
+ Paso 1: Instalar CDO y dependencias del sistema
84
+
85
+ ```
86
+ sudo apt update
87
+ ```
88
+
89
+ ```
90
+ sudo apt install cdo python3-pip python3-venv git -y
91
+ ```
92
+
93
+ Paso 2: Clonar el repositorio corregido
94
+ ```
95
+ git clone https://github.com/OmarRamosPerez/Indices-ETCCDI-precipitacion-.git
96
+ ```
97
+ ```
98
+ cd Indices-ETCCDI-precipitacion-
99
+ ```
100
+
101
+ Paso 3: Crear entorno virtual (recomendado)
102
+ ```
103
+ python3 -m venv venv_etccdi
104
+ ```
105
+ ```
106
+ source venv_etccdi/bin/activate
107
+ ```
108
+
109
+
110
+ Paso 4: Instalar el paquete en modo editable (para desarrollo, los cambios al código se reflejan al instante):
111
+ ```
112
+ pip install -e .
113
+ ```
114
+
115
+ Paso 5: Verificar instalación
116
+ ```
117
+ python3 -c "from ETCCDI_precipitacion.Procesamiento import ETCCDI_precip_procesamiento; print('OK')"
118
+ ```
119
+ -->
120
+
121
+ # Verificación de instalación
122
+
123
+ En una nueva anaconda prompt o terminal, activar el entorno "ETCCDI_precipitacion"
124
+ ```
125
+ conda activate ETCCDI_precipitacion
126
+ ```
127
+ Enseguida escribir las siguientes líneas
128
+ ```
129
+ python -c "
130
+ from ETCCDI_precipitacion import ETCCDI_precip_malla, ETCCDI_precip_in_situ
131
+ from ETCCDI_precipitacion import ETCCDI_precip_plot_in_situ, ETCCDI_precip_plot_malla
132
+ print('✅ Paquete instalado correctamente')
133
+ "
134
+ ```
135
+ <br><br>
136
+ Resultado esperado
137
+
138
+ ![Felicitaciones paquete "ETCCDI_precipitacion"](Verificacion_Instalacion_paquete.png)
139
+
140
+ <br><br>
141
+ # Asistencia
142
+
143
+ Si tienes alguna pregunta, no dudes en escribir a:
144
+ ```
145
+ omar.ramos@unison.mx
146
+ ```
147
+
148
+ Puedes escribirme en español o inglés.
@@ -0,0 +1,14 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.cfg
5
+ src/ICEPyUS.egg-info/PKG-INFO
6
+ src/ICEPyUS.egg-info/SOURCES.txt
7
+ src/ICEPyUS.egg-info/dependency_links.txt
8
+ src/ICEPyUS.egg-info/requires.txt
9
+ src/ICEPyUS.egg-info/top_level.txt
10
+ src/icepyus/__init__.py
11
+ src/icepyus/Ploteo/ETCCDI_precip_plot.py
12
+ src/icepyus/Ploteo/__init__.py
13
+ src/icepyus/Procesamiento/ETCCDI_precip_procesamiento.py
14
+ src/icepyus/Procesamiento/__init__.py
@@ -0,0 +1,20 @@
1
+ numpy
2
+ xarray
3
+ netCDF4
4
+ pandas
5
+ matplotlib
6
+ pip
7
+ cdo
8
+ numpy
9
+ scipy
10
+ geopandas
11
+ pyyaml
12
+ pyproj
13
+ cartopy
14
+ jupyterlab
15
+ ipykernel
16
+ ipympl
17
+ xarray
18
+ openpyxl
19
+ tqdm
20
+ pymannkendall
@@ -0,0 +1 @@
1
+ icepyus