sarapy 0.4.0__tar.gz → 0.4.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.
Files changed (29) hide show
  1. sarapy-0.4.1/PKG-INFO +31 -0
  2. sarapy-0.4.1/README.md +15 -0
  3. {sarapy-0.4.0 → sarapy-0.4.1}/pyproject.toml +3 -2
  4. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/dataProcessing/OpsProcessor.py +8 -8
  5. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/dataProcessing/TimeSeriesProcessor.py +2 -2
  6. sarapy-0.4.1/sarapy/dataProcessing/__init__.py +4 -0
  7. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/mlProcessors/PlantinClassifier.py +5 -7
  8. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/mlProcessors/PlantinFMCreator.py +10 -11
  9. sarapy-0.4.1/sarapy/mlProcessors/__init__.py +0 -0
  10. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/preprocessing/DistancesImputer.py +4 -5
  11. sarapy-0.4.1/sarapy/preprocessing/__init__.py +2 -0
  12. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/version.py +1 -1
  13. sarapy-0.4.1/sarapy.egg-info/PKG-INFO +31 -0
  14. {sarapy-0.4.0 → sarapy-0.4.1}/setup.py +1 -1
  15. sarapy-0.4.0/PKG-INFO +0 -85
  16. sarapy-0.4.0/README.md +0 -63
  17. sarapy-0.4.0/sarapy/dataProcessing/__init__.py +0 -4
  18. sarapy-0.4.0/sarapy/mlProcessors/__init__.py +0 -2
  19. sarapy-0.4.0/sarapy/preprocessing/__init__.py +0 -2
  20. sarapy-0.4.0/sarapy.egg-info/PKG-INFO +0 -85
  21. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/__init__.py +0 -0
  22. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/dataProcessing/GeoProcessor.py +0 -0
  23. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/dataProcessing/TLMSensorDataProcessor.py +0 -0
  24. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy/preprocessing/FertilizerImputer.py +0 -0
  25. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy.egg-info/SOURCES.txt +0 -0
  26. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy.egg-info/dependency_links.txt +0 -0
  27. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy.egg-info/requires.txt +0 -0
  28. {sarapy-0.4.0 → sarapy-0.4.1}/sarapy.egg-info/top_level.txt +0 -0
  29. {sarapy-0.4.0 → sarapy-0.4.1}/setup.cfg +0 -0
sarapy-0.4.1/PKG-INFO ADDED
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.1
2
+ Name: sarapy
3
+ Version: 0.4.1
4
+ Home-page: https://github.com/lucasbaldezzari/sarapy
5
+ Author: Lucas Baldezzari
6
+ Author-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
7
+ Maintainer-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
8
+ License: Your license text goes here
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: numpy
11
+ Requires-Dist: matplotlib
12
+ Requires-Dist: pandas
13
+ Requires-Dist: scipy
14
+ Requires-Dist: scikit-learn
15
+ Requires-Dist: geopy
16
+
17
+ # SARAPY
18
+
19
+ Library for processing SARAPICO project metadata of _AMG_.
20
+
21
+ #### Version 0.4.1 (working)
22
+
23
+ - Se corrigen problemas de importaciones circulares.
24
+
25
+ #### Version 0.4.0
26
+
27
+ - Se implementa _OpsProcessor_.
28
+ - Se implementa _PlanntinClassifier_.
29
+ - Se corrige salida de _transform()_ y _fit_transform()_ de GeoProcessor.
30
+ - Se mueve PlantinFMCreator a mlProcessors
31
+ - Se cambia nombre de TLMSensorDataCreator a TLMSensorDataProcessor
sarapy-0.4.1/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # SARAPY
2
+
3
+ Library for processing SARAPICO project metadata of _AMG_.
4
+
5
+ #### Version 0.4.1 (working)
6
+
7
+ - Se corrigen problemas de importaciones circulares.
8
+
9
+ #### Version 0.4.0
10
+
11
+ - Se implementa _OpsProcessor_.
12
+ - Se implementa _PlanntinClassifier_.
13
+ - Se corrige salida de _transform()_ y _fit_transform()_ de GeoProcessor.
14
+ - Se mueve PlantinFMCreator a mlProcessors
15
+ - Se cambia nombre de TLMSensorDataCreator a TLMSensorDataProcessor
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "sarapy"
3
3
 
4
- version = "0.4.0"
4
+ version = "0.4.1"
5
5
  authors = [
6
6
  {name = "Lucas Baldezzari", email = "lmbaldezzari@gmail.com"},]
7
7
  maintainers = [
@@ -17,4 +17,5 @@ dependencies = [
17
17
  "geopy",
18
18
  ]
19
19
 
20
- readme = "README.md"
20
+ readme = "README.md"
21
+ license = {text = "Your license text goes here"}
@@ -1,9 +1,9 @@
1
1
  ###Documentación en https://github.com/lucasbaldezzari/sarapy/blob/main/docs/Docs.md
2
-
2
+ import warnings
3
3
  import numpy as np
4
- from sarapy.mlProcessors import PlantinFMCreator
4
+ # from sarapy.mlProcessors import PlantinFMCreator
5
5
  from sarapy.mlProcessors import PlantinClassifier
6
- import warnings
6
+
7
7
 
8
8
  class OpsProcessor():
9
9
  """Clase para procesar las operaciones de los operarios. La información se toma de la base de datos
@@ -24,11 +24,11 @@ class OpsProcessor():
24
24
  - distanciaMedia: Distancia media entre operaciones.
25
25
  """
26
26
 
27
- self._plantinFMCreator = PlantinFMCreator(distanciaMedia = distanciaMedia, umbral_precision = umbral_precision,
28
- dist_mismo_lugar = dist_mismo_lugar, max_dist = max_dist,
29
- umbral_ratio_dCdP = umbral_ratio_dCdP, deltaO_medio = deltaO_medio)
27
+ # self._plantinFMCreator = PlantinFMCreator(distanciaMedia = distanciaMedia, umbral_precision = umbral_precision,
28
+ # dist_mismo_lugar = dist_mismo_lugar, max_dist = max_dist,
29
+ # umbral_ratio_dCdP = umbral_ratio_dCdP, deltaO_medio = deltaO_medio)
30
30
 
31
- self._plantin_classifier = PlantinClassifier()
31
+ self._plantin_classifier = PlantinClassifier.PlantinClassifier()
32
32
  # self._fertilizerFMCreator = FertilizerFMCreator() ## PARA IMPLEMENTAR
33
33
 
34
34
  self._operationsDict = {} ##diccionario de operarios con sus operaciones
@@ -273,7 +273,7 @@ if __name__ == "__main__":
273
273
  break
274
274
  index += random_value
275
275
 
276
- from sarapy.dataProcessing import OpsProcessor
276
+ # from sarapy.dataProcessing import OpsProcessor
277
277
  op = OpsProcessor()
278
278
 
279
279
  op.operationsDict
@@ -116,7 +116,7 @@ if __name__ == "__main__":
116
116
  tlm_data = raw_data[50:60,2]
117
117
 
118
118
  from sarapy.dataProcessing import TLMSensorDataProcessor
119
- tlm_extractor = TLMSensorDataProcessor()
119
+ tlm_extractor = TLMSensorDataProcessor.TLMSensorDataProcessor()
120
120
  tlm_extractor.fit(tlm_data)
121
121
 
122
122
  deltaPicos = tlm_extractor.TIMEAC.astype(float)
@@ -136,7 +136,7 @@ if __name__ == "__main__":
136
136
  timestamps2 = np.array([1697724423])
137
137
 
138
138
  tmsp2 = TimeSeriesProcessor()
139
- tlm_extractor2 = TLMSensorDataProcessor()
139
+ tlm_extractor2 = TLMSensorDataProcessor.TLMSensorDataProcessor()
140
140
 
141
141
  tlm_extractor2.fit(tlm_data2)
142
142
 
@@ -0,0 +1,4 @@
1
+ # from .TLMSensorDataProcessor import TLMSensorDataProcessor
2
+ # from .GeoProcessor import GeoProcessor
3
+ # from .TimeSeriesProcessor import TimeSeriesProcessor
4
+ # from .OpsProcessor import OpsProcessor
@@ -10,7 +10,7 @@ class PlantinClassifier(BaseEstimator, TransformerMixin):
10
10
  def __init__(self):
11
11
  """Constructor de la clase PlantinClassifier."""
12
12
 
13
- self._plantinFMCreator = PlantinFMCreator()
13
+ self._plantinFMCreator = PlantinFMCreator.PlantinFMCreator()
14
14
 
15
15
  self._pipeline = Pipeline([
16
16
  ("FMCreator", self._plantinFMCreator),
@@ -30,8 +30,6 @@ class PlantinClassifier(BaseEstimator, TransformerMixin):
30
30
  return self._pipeline.fit_transform(newData).round(2)
31
31
 
32
32
  if __name__ == "__main__":
33
- import numpy as np
34
- from sarapy.mlProcessors import PlantinClassifier
35
33
  from sarapy.dataProcessing import OpsProcessor
36
34
 
37
35
  #cargo archivo examples\volcado_17112023_NODE_processed.csv
@@ -52,9 +50,9 @@ if __name__ == "__main__":
52
50
  break
53
51
  index += random_value
54
52
 
55
- op = OpsProcessor()
53
+ op = OpsProcessor.OpsProcessor()
56
54
  ##actualizo el diccionario de operaciones
57
- op.updateOprrsDict(sample[12])
58
-
55
+ op.updateOperationsDict(sample[12])
56
+ op.operationsDict
59
57
  plantin_classifier = PlantinClassifier()
60
- plantin_classifier.classify(op.oprrsDict["2"]["sample_ops"])
58
+ plantin_classifier.classify(op.operationsDict["1"]["sample_ops"])
@@ -1,8 +1,8 @@
1
1
  ###Documentación en https://github.com/lucasbaldezzari/sarapy/blob/main/docs/Docs.md
2
2
 
3
+ import warnings
3
4
  import numpy as np
4
5
  from sklearn.base import BaseEstimator, TransformerMixin
5
- import warnings
6
6
  from sarapy.dataProcessing import TLMSensorDataProcessor, TimeSeriesProcessor, GeoProcessor
7
7
  from sarapy.preprocessing import DistancesImputer
8
8
 
@@ -65,9 +65,9 @@ class PlantinFMCreator(BaseEstimator, TransformerMixin):
65
65
  precitions = X[:,4].astype(float) #precision del GPS
66
66
 
67
67
  ##instanciamos los objetos
68
- tlmDataExtractor = TLMSensorDataProcessor()
69
- timeProcessor = TimeSeriesProcessor()
70
- geoprocessor = GeoProcessor()
68
+ tlmDataExtractor = TLMSensorDataProcessor.TLMSensorDataProcessor()
69
+ timeProcessor = TimeSeriesProcessor.TimeSeriesProcessor()
70
+ geoprocessor = GeoProcessor.GeoProcessor()
71
71
 
72
72
  ##***** OBTENEMOS LOS DATOS PARA FITEAR LOS OBJETOS Y ASÍ PROCESAR LA FM *****
73
73
  ##obtengo las posiciones de los datos de tlmDataExtractor y timeProcessor
@@ -88,11 +88,12 @@ class PlantinFMCreator(BaseEstimator, TransformerMixin):
88
88
 
89
89
  ####***** IMPUTAMOS DATOS SI ES LO REQUERIDO*****
90
90
  if self.imputeDistances:
91
- distanceimputer = DistancesImputer(distanciaMedia = self.distanciaMedia,
92
- umbral_precision = self.umbral_precision,
93
- dist_mismo_lugar = self.dist_mismo_lugar, max_dist = self.max_dist,
94
- umbral_ratio_dCdP = self.umbral_ratio_dCdP,
95
- deltaO_medio = self.deltaO_medio, keepDims = False, columnToImpute = 0)
91
+ distanceimputer = DistancesImputer.DistancesImputer(distanciaMedia = self.distanciaMedia,
92
+ umbral_precision = self.umbral_precision,
93
+ dist_mismo_lugar = self.dist_mismo_lugar,
94
+ max_dist = self.max_dist,
95
+ umbral_ratio_dCdP = self.umbral_ratio_dCdP,
96
+ deltaO_medio = self.deltaO_medio, keepDims = False, columnToImpute = 0)
96
97
 
97
98
  X_distance_imputation = np.hstack((self._distances.reshape(-1, 1),
98
99
  precitions.reshape(-1, 1),
@@ -180,9 +181,7 @@ class PlantinFMCreator(BaseEstimator, TransformerMixin):
180
181
  if __name__ == "__main__":
181
182
  ##genero objeto FMCreator
182
183
  fmcreator = PlantinFMCreator(imputeDistances=False)
183
-
184
184
  import pandas as pd
185
- import numpy as np
186
185
  import os
187
186
  path = os.path.join(os.getcwd(), "examples\\volcado_17112023_NODE_processed.csv")
188
187
  raw_data = pd.read_csv(path, sep=";", ).to_numpy()
File without changes
@@ -3,8 +3,6 @@
3
3
  import numpy as np
4
4
  from sklearn.base import BaseEstimator, TransformerMixin
5
5
 
6
- from sarapy.dataProcessing import TLMSensorDataProcessor
7
-
8
6
  class DistancesImputer(BaseEstimator, TransformerMixin):
9
7
  """La clase DistancesImputer se encarga de imputar/modificar los datos de telemetría entregados por el sistema. Se utilizan las clases TLMSensorDataExtractor, TimeSeriesProcessor y GeoProcessor para realizar las transformaciones necesarias y luego aplicar las modificaciones necesarias en base a las reglas definidas luego del análisis estadístico.
10
8
  """
@@ -155,9 +153,10 @@ class DistancesImputer(BaseEstimator, TransformerMixin):
155
153
 
156
154
  if __name__ == "__main__":
157
155
  from sarapy.dataProcessing import TimeSeriesProcessor, GeoProcessor
158
- tlmda = TLMSensorDataProcessor()
159
- tsa = TimeSeriesProcessor()
160
- gpa = GeoProcessor()
156
+ from sarapy.dataProcessing import TLMSensorDataProcessor
157
+ tlmda = TLMSensorDataProcessor.TLMSensorDataProcessor()
158
+ tsa = TimeSeriesProcessor.TimeSeriesProcessor()
159
+ gpa = GeoProcessor.GeoProcessor()
161
160
 
162
161
  ##datos de ejemplo
163
162
  tlmsbp_sample = np.array(['0010001000010010110000011000000111111101001000000000000000000000',
@@ -0,0 +1,2 @@
1
+ # from .DistancesImputer import DistancesImputer
2
+ # from .FertilizerImputer import FertilizerImputer
@@ -1,2 +1,2 @@
1
1
  ## Version of the package
2
- __version__ = "0.4.0"
2
+ __version__ = "0.4.1"
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.1
2
+ Name: sarapy
3
+ Version: 0.4.1
4
+ Home-page: https://github.com/lucasbaldezzari/sarapy
5
+ Author: Lucas Baldezzari
6
+ Author-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
7
+ Maintainer-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
8
+ License: Your license text goes here
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: numpy
11
+ Requires-Dist: matplotlib
12
+ Requires-Dist: pandas
13
+ Requires-Dist: scipy
14
+ Requires-Dist: scikit-learn
15
+ Requires-Dist: geopy
16
+
17
+ # SARAPY
18
+
19
+ Library for processing SARAPICO project metadata of _AMG_.
20
+
21
+ #### Version 0.4.1 (working)
22
+
23
+ - Se corrigen problemas de importaciones circulares.
24
+
25
+ #### Version 0.4.0
26
+
27
+ - Se implementa _OpsProcessor_.
28
+ - Se implementa _PlanntinClassifier_.
29
+ - Se corrige salida de _transform()_ y _fit_transform()_ de GeoProcessor.
30
+ - Se mueve PlantinFMCreator a mlProcessors
31
+ - Se cambia nombre de TLMSensorDataCreator a TLMSensorDataProcessor
@@ -1,5 +1,5 @@
1
1
  from setuptools import setup, find_packages
2
- import os, toml
2
+ import toml
3
3
 
4
4
  def getRequirements():
5
5
  with open('requirements.txt', 'r') as f:
sarapy-0.4.0/PKG-INFO DELETED
@@ -1,85 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: sarapy
3
- Version: 0.4.0
4
- Summary: Library for Sarapico Metadata processing
5
- Home-page: https://github.com/lucasbaldezzari/sarapy
6
- Author: Lucas Baldezzari
7
- Author-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
8
- Maintainer-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
9
- License: MIT
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Operating System :: Microsoft :: Windows :: Windows 10
13
- Classifier: Operating System :: Microsoft :: Windows :: Windows 11
14
- Classifier: Operating System :: Unix
15
- Description-Content-Type: text/markdown
16
- Requires-Dist: numpy
17
- Requires-Dist: matplotlib
18
- Requires-Dist: pandas
19
- Requires-Dist: scipy
20
- Requires-Dist: scikit-learn
21
- Requires-Dist: geopy
22
-
23
- # SARAPY
24
-
25
- Library for processing SARAPICO project metadata of _AMG_.
26
-
27
- #### Version 0.4.0 (working)
28
-
29
- - Se implementa _OpsProcessor_.
30
- - Se implementa _PlanntinClassifier_.
31
- - Se corrige salida de _transform()_ y _fit_transform()_ de GeoProcessor.
32
- - Se mueve PlantinFMCreator a mlProcessors
33
- - Se cambia nombre de TLMSensorDataCreator a TLMSensorDataProcessor
34
-
35
- #### Version 0.3.10
36
-
37
- - Se corrige línea en DistancesImputer.
38
-
39
- #### Version 0.3.9
40
-
41
- - Se corrige nombre de argumento en el constructor de PlantinFMCreator
42
-
43
- #### Version 0.3.8
44
-
45
- - Se agregan condiciones para mejorar la imputación de distancias en _DistancesImputer_.
46
-
47
- #### Version 0.3.7
48
-
49
- - Se implementa la imputación de distancias con _DistancesImputer_ dentro de PlantinFMCreator.
50
- - Se agregan argumentos al constructor de _PlantinFMCreator_ necesarios para poder imputar con _DistancesImputer_.
51
- - Se agrega argumento dist*mismo_lugar en *DistancesImputer\* para usar dicho valor en las imputaciones que correspondan a operaciones en el mismo lugar.
52
-
53
- #### Version 0.3.6
54
-
55
- - Se agregan argumentos al constructor de _DistancesImputer_ para que Transform y fit_transform puedan entregar un array de shape (n,1) o bien de (n,6) eligiendo la columna a imputar.
56
-
57
- #### Version 0.3.5
58
-
59
- - Se implementa clase _DistancesImputer_.
60
-
61
- #### Version 0.3.4
62
-
63
- - Se actializa _dataPositions_ de PlantinFMCreator.
64
-
65
- #### Version 0.3.3
66
-
67
- - Se cambia el nombre de la clase FMCreator a PlantinFMCreator. Se modifica la matriz transformada quitando el dato de distorsión de Fertilizante.
68
-
69
- #### Version 0.3.2
70
-
71
- - Se agrega property en FMCreator para acceder a _dataPosition_. Se cambia la forma de los diccionarios de _dataPosition_ de FMCreator, TimeSeriesProcesor y TLMSensorDataExtractor. Además, ahora este atributo se crea en init().
72
- - Se corrige bug por división por cero en el cálculo de _ratio_dCdP_ de TimeSeriesProcessor.
73
-
74
- #### Version 0.3.1
75
-
76
- - Se corrige forma de acceder a los datos de X en FMCreator.fit().
77
-
78
- #### Version 0.3.0
79
-
80
- - Se implementa clase FMCreator.
81
- - Se quita método TLMSensorDataExtractor.getMetadataRevisionNumber().
82
- - Se agrega cálculo de ratio_dCdP en TimeSeriesProcessor
83
- - Se cambia nombre de clase _GeoAnalyzer_ por _GeoProcessor_
84
- - Se agrega atritubo dataPositions en _TLMSensorDataExtractor_ para poder saber qué representa cada columna dentro del array devuelto por tranform.
85
- - Se agrega dataPositions a TimeSeriesProcessor
sarapy-0.4.0/README.md DELETED
@@ -1,63 +0,0 @@
1
- # SARAPY
2
-
3
- Library for processing SARAPICO project metadata of _AMG_.
4
-
5
- #### Version 0.4.0 (working)
6
-
7
- - Se implementa _OpsProcessor_.
8
- - Se implementa _PlanntinClassifier_.
9
- - Se corrige salida de _transform()_ y _fit_transform()_ de GeoProcessor.
10
- - Se mueve PlantinFMCreator a mlProcessors
11
- - Se cambia nombre de TLMSensorDataCreator a TLMSensorDataProcessor
12
-
13
- #### Version 0.3.10
14
-
15
- - Se corrige línea en DistancesImputer.
16
-
17
- #### Version 0.3.9
18
-
19
- - Se corrige nombre de argumento en el constructor de PlantinFMCreator
20
-
21
- #### Version 0.3.8
22
-
23
- - Se agregan condiciones para mejorar la imputación de distancias en _DistancesImputer_.
24
-
25
- #### Version 0.3.7
26
-
27
- - Se implementa la imputación de distancias con _DistancesImputer_ dentro de PlantinFMCreator.
28
- - Se agregan argumentos al constructor de _PlantinFMCreator_ necesarios para poder imputar con _DistancesImputer_.
29
- - Se agrega argumento dist*mismo_lugar en *DistancesImputer\* para usar dicho valor en las imputaciones que correspondan a operaciones en el mismo lugar.
30
-
31
- #### Version 0.3.6
32
-
33
- - Se agregan argumentos al constructor de _DistancesImputer_ para que Transform y fit_transform puedan entregar un array de shape (n,1) o bien de (n,6) eligiendo la columna a imputar.
34
-
35
- #### Version 0.3.5
36
-
37
- - Se implementa clase _DistancesImputer_.
38
-
39
- #### Version 0.3.4
40
-
41
- - Se actializa _dataPositions_ de PlantinFMCreator.
42
-
43
- #### Version 0.3.3
44
-
45
- - Se cambia el nombre de la clase FMCreator a PlantinFMCreator. Se modifica la matriz transformada quitando el dato de distorsión de Fertilizante.
46
-
47
- #### Version 0.3.2
48
-
49
- - Se agrega property en FMCreator para acceder a _dataPosition_. Se cambia la forma de los diccionarios de _dataPosition_ de FMCreator, TimeSeriesProcesor y TLMSensorDataExtractor. Además, ahora este atributo se crea en init().
50
- - Se corrige bug por división por cero en el cálculo de _ratio_dCdP_ de TimeSeriesProcessor.
51
-
52
- #### Version 0.3.1
53
-
54
- - Se corrige forma de acceder a los datos de X en FMCreator.fit().
55
-
56
- #### Version 0.3.0
57
-
58
- - Se implementa clase FMCreator.
59
- - Se quita método TLMSensorDataExtractor.getMetadataRevisionNumber().
60
- - Se agrega cálculo de ratio_dCdP en TimeSeriesProcessor
61
- - Se cambia nombre de clase _GeoAnalyzer_ por _GeoProcessor_
62
- - Se agrega atritubo dataPositions en _TLMSensorDataExtractor_ para poder saber qué representa cada columna dentro del array devuelto por tranform.
63
- - Se agrega dataPositions a TimeSeriesProcessor
@@ -1,4 +0,0 @@
1
- from .TLMSensorDataProcessor import TLMSensorDataProcessor
2
- from .GeoProcessor import GeoProcessor
3
- from .TimeSeriesProcessor import TimeSeriesProcessor
4
- from .OpsProcessor import OpsProcessor
@@ -1,2 +0,0 @@
1
- from .PlantinClassifier import PlantinClassifier
2
- from .PlantinFMCreator import PlantinFMCreator
@@ -1,2 +0,0 @@
1
- from .DistancesImputer import DistancesImputer
2
- from .FertilizerImputer import FertilizerImputer
@@ -1,85 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: sarapy
3
- Version: 0.4.0
4
- Summary: Library for Sarapico Metadata processing
5
- Home-page: https://github.com/lucasbaldezzari/sarapy
6
- Author: Lucas Baldezzari
7
- Author-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
8
- Maintainer-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
9
- License: MIT
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Operating System :: Microsoft :: Windows :: Windows 10
13
- Classifier: Operating System :: Microsoft :: Windows :: Windows 11
14
- Classifier: Operating System :: Unix
15
- Description-Content-Type: text/markdown
16
- Requires-Dist: numpy
17
- Requires-Dist: matplotlib
18
- Requires-Dist: pandas
19
- Requires-Dist: scipy
20
- Requires-Dist: scikit-learn
21
- Requires-Dist: geopy
22
-
23
- # SARAPY
24
-
25
- Library for processing SARAPICO project metadata of _AMG_.
26
-
27
- #### Version 0.4.0 (working)
28
-
29
- - Se implementa _OpsProcessor_.
30
- - Se implementa _PlanntinClassifier_.
31
- - Se corrige salida de _transform()_ y _fit_transform()_ de GeoProcessor.
32
- - Se mueve PlantinFMCreator a mlProcessors
33
- - Se cambia nombre de TLMSensorDataCreator a TLMSensorDataProcessor
34
-
35
- #### Version 0.3.10
36
-
37
- - Se corrige línea en DistancesImputer.
38
-
39
- #### Version 0.3.9
40
-
41
- - Se corrige nombre de argumento en el constructor de PlantinFMCreator
42
-
43
- #### Version 0.3.8
44
-
45
- - Se agregan condiciones para mejorar la imputación de distancias en _DistancesImputer_.
46
-
47
- #### Version 0.3.7
48
-
49
- - Se implementa la imputación de distancias con _DistancesImputer_ dentro de PlantinFMCreator.
50
- - Se agregan argumentos al constructor de _PlantinFMCreator_ necesarios para poder imputar con _DistancesImputer_.
51
- - Se agrega argumento dist*mismo_lugar en *DistancesImputer\* para usar dicho valor en las imputaciones que correspondan a operaciones en el mismo lugar.
52
-
53
- #### Version 0.3.6
54
-
55
- - Se agregan argumentos al constructor de _DistancesImputer_ para que Transform y fit_transform puedan entregar un array de shape (n,1) o bien de (n,6) eligiendo la columna a imputar.
56
-
57
- #### Version 0.3.5
58
-
59
- - Se implementa clase _DistancesImputer_.
60
-
61
- #### Version 0.3.4
62
-
63
- - Se actializa _dataPositions_ de PlantinFMCreator.
64
-
65
- #### Version 0.3.3
66
-
67
- - Se cambia el nombre de la clase FMCreator a PlantinFMCreator. Se modifica la matriz transformada quitando el dato de distorsión de Fertilizante.
68
-
69
- #### Version 0.3.2
70
-
71
- - Se agrega property en FMCreator para acceder a _dataPosition_. Se cambia la forma de los diccionarios de _dataPosition_ de FMCreator, TimeSeriesProcesor y TLMSensorDataExtractor. Además, ahora este atributo se crea en init().
72
- - Se corrige bug por división por cero en el cálculo de _ratio_dCdP_ de TimeSeriesProcessor.
73
-
74
- #### Version 0.3.1
75
-
76
- - Se corrige forma de acceder a los datos de X en FMCreator.fit().
77
-
78
- #### Version 0.3.0
79
-
80
- - Se implementa clase FMCreator.
81
- - Se quita método TLMSensorDataExtractor.getMetadataRevisionNumber().
82
- - Se agrega cálculo de ratio_dCdP en TimeSeriesProcessor
83
- - Se cambia nombre de clase _GeoAnalyzer_ por _GeoProcessor_
84
- - Se agrega atritubo dataPositions en _TLMSensorDataExtractor_ para poder saber qué representa cada columna dentro del array devuelto por tranform.
85
- - Se agrega dataPositions a TimeSeriesProcessor
File without changes
File without changes