sarapy 1.1.3__tar.gz → 1.1.5__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 (30) hide show
  1. {sarapy-1.1.3/sarapy.egg-info → sarapy-1.1.5}/PKG-INFO +10 -2
  2. {sarapy-1.1.3 → sarapy-1.1.5}/README.md +9 -1
  3. {sarapy-1.1.3 → sarapy-1.1.5}/pyproject.toml +1 -1
  4. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/dataProcessing/OpsProcessor.py +26 -7
  5. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/mlProcessors/PlantinFMCreator.py +5 -2
  6. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/version.py +1 -1
  7. {sarapy-1.1.3 → sarapy-1.1.5/sarapy.egg-info}/PKG-INFO +10 -2
  8. {sarapy-1.1.3 → sarapy-1.1.5}/LICENCE +0 -0
  9. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/__init__.py +0 -0
  10. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/dataProcessing/GeoProcessor.py +0 -0
  11. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/dataProcessing/TLMSensorDataProcessor.py +0 -0
  12. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/dataProcessing/TimeSeriesProcessor.py +0 -0
  13. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/dataProcessing/__init__.py +0 -0
  14. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/mlProcessors/PlantinClassifier.py +0 -0
  15. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/mlProcessors/__init__.py +0 -0
  16. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/preprocessing/DistancesImputer.py +0 -0
  17. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/preprocessing/FertilizerImputer.py +0 -0
  18. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/preprocessing/TransformInputData.py +0 -0
  19. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/preprocessing/TransformToOutputData.py +0 -0
  20. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/preprocessing/__init__.py +0 -0
  21. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/utils/__init__.py +0 -0
  22. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/utils/amg_decoder.py +0 -0
  23. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/utils/amg_ppk.py +0 -0
  24. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy/utils/getRawOperations.py +0 -0
  25. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy.egg-info/SOURCES.txt +0 -0
  26. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy.egg-info/dependency_links.txt +0 -0
  27. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy.egg-info/requires.txt +0 -0
  28. {sarapy-1.1.3 → sarapy-1.1.5}/sarapy.egg-info/top_level.txt +0 -0
  29. {sarapy-1.1.3 → sarapy-1.1.5}/setup.cfg +0 -0
  30. {sarapy-1.1.3 → sarapy-1.1.5}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sarapy
3
- Version: 1.1.3
3
+ Version: 1.1.5
4
4
  Home-page: https://github.com/lucasbaldezzari/sarapy
5
5
  Author: Lucas Baldezzari
6
6
  Author-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
@@ -17,7 +17,15 @@ Requires-Dist: geopy
17
17
 
18
18
  # SARAPY
19
19
 
20
- Library for processing SARAPICO project metadata of _AMG_.
20
+ Library for processing SARAPICO project metadata of _AMG SA_.
21
+
22
+ #### Version 1.1.5
23
+
24
+ - Se quita print de función update.
25
+
26
+ #### Version 1.1.4
27
+
28
+ - Se implementa actualización de operaciones con bandera MODE en 1. Se hacen operaciones de plantin iguales a 0 para todas las operaciones con MODE = 1.
21
29
 
22
30
  #### Version 1.1.3
23
31
 
@@ -1,6 +1,14 @@
1
1
  # SARAPY
2
2
 
3
- Library for processing SARAPICO project metadata of _AMG_.
3
+ Library for processing SARAPICO project metadata of _AMG SA_.
4
+
5
+ #### Version 1.1.5
6
+
7
+ - Se quita print de función update.
8
+
9
+ #### Version 1.1.4
10
+
11
+ - Se implementa actualización de operaciones con bandera MODE en 1. Se hacen operaciones de plantin iguales a 0 para todas las operaciones con MODE = 1.
4
12
 
5
13
  #### Version 1.1.3
6
14
 
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "sarapy"
3
3
 
4
- version = "1.1.3"
4
+ version = "1.1.5"
5
5
  authors = [
6
6
  {name = "Lucas Baldezzari", email = "lmbaldezzari@gmail.com"},]
7
7
  maintainers = [
@@ -1,7 +1,4 @@
1
1
  ###Documentación en https://github.com/lucasbaldezzari/sarapy/blob/main/docs/Docs.md
2
- import warnings
3
- import datetime
4
- from dateutil.tz import tzutc
5
2
  import numpy as np
6
3
  import pandas as pd
7
4
  from sarapy.mlProcessors import PlantinFMCreator
@@ -193,6 +190,9 @@ class OpsProcessor():
193
190
  ##chequeo si first_day_op_classified es True, si es así, no se considera la primera fila de las classified_ops
194
191
  if self.operationsDict[ID_NPDP]["first_day_op_classified"]:
195
192
  classified_ops = classified_ops[1:]
193
+
194
+ ##actualizo las operaciones que hayan sido hardcodeadas luego de despertar y/o reiniciar la electrónica
195
+ classified_ops = self.updateBedoreAwake(classified_ops)
196
196
 
197
197
  # plantinClassifications = np.vstack((plantinClassifications, classified_ops)) if plantinClassifications is not None else classified_ops
198
198
  plantinClassifications = np.concatenate((plantinClassifications, classified_ops)) if plantinClassifications is not None else classified_ops
@@ -282,12 +282,30 @@ class OpsProcessor():
282
282
 
283
283
  for ID_NPDP in self.operationsDict.keys():
284
284
  self._operationsDict[ID_NPDP]["sample_ops"] = None
285
+
286
+ def updateBedoreAwake(self, classified_ops):
287
+ """
288
+ Función para actualizar las operaciones que hayan sido hardcodeadas luego de despertar y/o reiniciar la electrónica.
289
+
290
+ Se chequea la bandera MODE de los datos de telemetría entregados por la electrónica.
291
+
292
+ Args:
293
+ - classified_ops: np.array con las operaciones clasificadas.
294
+
295
+ Returns:
296
+ - classified_ops: np.array con las operaciones clasificadas.
297
+ """
298
+
299
+ ##me quedo con los índices donde MODEFlag es igual a 1
300
+ mask = self.plantinFMCreator.tlmExtracted[:,self.plantinFMCreator.tlmdeDP["MODEFlag"]]==1
301
+ classified_ops[mask] = 0 ##hardcodeo las operaciones que hayan sido clasificadas como 1
302
+ return classified_ops
285
303
 
286
304
  @property
287
305
  def operationsDict(self):
288
306
  return self._operationsDict
289
307
 
290
-
308
+
291
309
  if __name__ == "__main__":
292
310
  #cargo archivo examples\volcado_17112023_NODE_processed.csv
293
311
  import pandas as pd
@@ -296,8 +314,8 @@ if __name__ == "__main__":
296
314
  import sarapy.utils.getRawOperations as getRawOperations
297
315
  from sarapy.dataProcessing import OpsProcessor
298
316
 
299
- data_path = os.path.join(os.getcwd(), "examples\\2024-09-04\\UPM012N\\data.json")
300
- historical_data_path = os.path.join(os.getcwd(), "examples\\2024-09-04\\UPM012N\\historical-data.json")
317
+ data_path = os.path.join(os.getcwd(), "examples\\2024-09-16\\UPM001N\\data.json")
318
+ historical_data_path = os.path.join(os.getcwd(), "examples\\2024-09-16\\UPM001N\\historical-data.json")
301
319
 
302
320
  raw_data = pd.read_json(data_path, orient="records").to_dict(orient="records")
303
321
  raw_data2 = pd.read_json(historical_data_path, orient="records").to_dict(orient="records")
@@ -315,4 +333,5 @@ if __name__ == "__main__":
315
333
  ##
316
334
  df = pd.DataFrame(classifications)
317
335
  tag_seedling = df["tag_seedling"].values
318
- print(tag_seedling.mean())
336
+ print(tag_seedling.mean())
337
+ print(df["tag_seedling"].shape)
@@ -1,6 +1,4 @@
1
1
  ###Documentación en https://github.com/lucasbaldezzari/sarapy/blob/main/docs/Docs.md
2
-
3
- import warnings
4
2
  import numpy as np
5
3
  from sklearn.base import BaseEstimator, TransformerMixin
6
4
  from sarapy.dataProcessing import TLMSensorDataProcessor, TimeSeriesProcessor, GeoProcessor
@@ -138,6 +136,11 @@ class PlantinFMCreator(BaseEstimator, TransformerMixin):
138
136
  """Devuelve los datos de telemetría extraídos."""
139
137
  return self._tlmExtracted
140
138
 
139
+ @property
140
+ def tlmdeDP(self):
141
+ """Devuelve el diccionario con la posición de los datos dentro del array devuelto por transform()."""
142
+ return self._tlmdeDP
143
+
141
144
  @property
142
145
  def timeDeltas(self):
143
146
  """Devuelve los datos de tiempo extraídos."""
@@ -1,2 +1,2 @@
1
1
  ## Version of the package
2
- __version__ = "1.1.3"
2
+ __version__ = "1.1.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sarapy
3
- Version: 1.1.3
3
+ Version: 1.1.5
4
4
  Home-page: https://github.com/lucasbaldezzari/sarapy
5
5
  Author: Lucas Baldezzari
6
6
  Author-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
@@ -17,7 +17,15 @@ Requires-Dist: geopy
17
17
 
18
18
  # SARAPY
19
19
 
20
- Library for processing SARAPICO project metadata of _AMG_.
20
+ Library for processing SARAPICO project metadata of _AMG SA_.
21
+
22
+ #### Version 1.1.5
23
+
24
+ - Se quita print de función update.
25
+
26
+ #### Version 1.1.4
27
+
28
+ - Se implementa actualización de operaciones con bandera MODE en 1. Se hacen operaciones de plantin iguales a 0 para todas las operaciones con MODE = 1.
21
29
 
22
30
  #### Version 1.1.3
23
31
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes