sarapy 2.1.0__py3-none-any.whl → 2.1.1__py3-none-any.whl

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.
@@ -10,7 +10,7 @@ class TransformToOutputData(BaseEstimator, TransformerMixin):
10
10
  - dataToTransform: array con los datos de las operaciones clasificadas.
11
11
  Actualmente el array de dataToTransform es de (n,5) con las columnas siguientes
12
12
 
13
- - 0: timestamps
13
+ - 0: timestamp
14
14
  - 1: tag_seedling
15
15
  - 2: tag_fertilizer
16
16
  Returns:
@@ -32,15 +32,15 @@ class TransformToOutputData(BaseEstimator, TransformerMixin):
32
32
  - X: array con los datos de las operaciones clasificadas.
33
33
  Actualmente el array de dataToTransform es de (n,5) con las columnas siguientes
34
34
 
35
- - 0: timestamps
35
+ - 0: timestamp
36
36
  - 1: tag_seedling
37
37
  - 2: tag_fertilizer
38
38
  """
39
39
  self.is_fitted = True
40
- keys = ["timestamps","tag_seedling", "tag_fertilizer"]
40
+ keys = ["timestamp","tag_seedling", "tag_fertilizer"]
41
41
  self.temp_df = pd.DataFrame(X, columns = keys)
42
42
 
43
- ##convierto las columnas "timestamps", "tag_seedling" a int
43
+ ##convierto las columnas "timestamp", "tag_seedling" a int
44
44
  for col in ["tag_seedling"]:
45
45
  self.temp_df[col] = self.temp_df[col].astype(float).astype(int)
46
46
  ##convierto la columna "tag_fertilizer" a float de y redondeo a 3 decimales
@@ -54,7 +54,7 @@ class TransformToOutputData(BaseEstimator, TransformerMixin):
54
54
  - X: array con los datos de las operaciones clasificadas.
55
55
  Actualmente el array de dataToTransform es de (n,5) con las columnas siguientes
56
56
 
57
- - 0: timestamps
57
+ - 0: timestamp
58
58
  - 1: tag_seedling
59
59
  - 2: tag_fertilizer
60
60
  Returns:
@@ -69,7 +69,7 @@ class TransformToOutputData(BaseEstimator, TransformerMixin):
69
69
  - X: array con los datos de las operaciones clasificadas.
70
70
  Actualmente el array de dataToTransform es de (n,5) con las columnas siguientes
71
71
 
72
- - 0: timestamps
72
+ - 0: timestamp
73
73
  - 1: tag_seedling
74
74
  - 2: tag_fertilizer
75
75
  Returns:
sarapy/version.py CHANGED
@@ -1,2 +1,2 @@
1
1
  ## Version of the package
2
- __version__ = "2.1.0"
2
+ __version__ = "2.1.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sarapy
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Home-page: https://github.com/lucasbaldezzari/sarapy
5
5
  Author: Lucas Baldezzari
6
6
  Author-email: Lucas Baldezzari <lmbaldezzari@gmail.com>
@@ -19,6 +19,10 @@ Requires-Dist: geopy
19
19
 
20
20
  Library for processing SARAPICO project metadata of _AMG SA_.
21
21
 
22
+ #### Version 2.1.1
23
+
24
+ - Se corrige error de tiepo en TransformToOutputData.
25
+
22
26
  #### Version 2.1.0
23
27
 
24
28
  - Se modifica TransformInputdata para poder obtener el timestamp en newSample de OpsProcessor. Se modifica transformOutputData para entregar los datos en base a la solicitud de #43. Se modifica OpsProcessor para poder obtener los datos de salida según solicitud en #43. Close #43.
@@ -1,5 +1,5 @@
1
1
  sarapy/__init__.py,sha256=aVoywqGSscYYDycLaYJnz08dlQabl9gH0h4Q5KtHM9o,74
2
- sarapy/version.py,sha256=Mggl7XGGseYHWRAVliZYoEOj2Nt43ALrs5sSYbS8DK4,51
2
+ sarapy/version.py,sha256=0bCxTC9u3IxGA7LNSJTuzNcRWMsiPIZSJhwyTIMhyHo,51
3
3
  sarapy/dataProcessing/GeoProcessor.py,sha256=ARjgKTXDVdf_cFCXyFmzlnmmmay3HG3q-yeJ9QrAcQU,5919
4
4
  sarapy/dataProcessing/OpsProcessor.py,sha256=zu6AJ2wQD84-u-fxxTIqGbdw4NrRRye9gHZO3A8Z724,17269
5
5
  sarapy/dataProcessing/TLMSensorDataProcessor.py,sha256=RuITlryuSaIWvYyJwE5wxp85HVZ6mr5kUVALikfwS4g,3603
@@ -13,7 +13,7 @@ sarapy/mlProcessors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
13
13
  sarapy/preprocessing/DistancesImputer.py,sha256=NvbVAh5m0yFxVgDbEFnEX7RSG13qLjO7i2gqjDAWsf4,9106
14
14
  sarapy/preprocessing/FertilizerImputer.py,sha256=zK6ONAilwPHvj-bC7yxnQYOkDBCCkWh6__57vYK9anM,1490
15
15
  sarapy/preprocessing/TransformInputData.py,sha256=ZQ8k_4JFp78G5VqZEuzYmF8VCDcOxEnHKbd_4w7PPjY,8536
16
- sarapy/preprocessing/TransformToOutputData.py,sha256=xXFRTwpv-R2duG4ixOVBLojHc0z3FD_l5gRzinF4DQc,3143
16
+ sarapy/preprocessing/TransformToOutputData.py,sha256=2hSeFkrSt1OO_jiX4SQJtL3Dhm_9xLy7zCgkj8jo9OE,3137
17
17
  sarapy/preprocessing/__init__.py,sha256=Wg_Csy8Xiz8BN8A4-T7iPwcL_ol5ApEx6YtybItKB8M,100
18
18
  sarapy/stats/__init__.py,sha256=ZrLMSistwynmmx4HUcI-ePRzqQ4bjp85JT4fTmbzC-c,27
19
19
  sarapy/stats/stats.py,sha256=raQBnn2RRtwYOuKN4Mgk6Rhk4hajx1TVcGlYnT2TMmA,11412
@@ -22,8 +22,8 @@ sarapy/utils/amg_decoder.py,sha256=JZ7cbu7DlCuatuq2F7aBfUr7S7U-K5poBgxw5nY6rNI,4
22
22
  sarapy/utils/amg_ppk.py,sha256=c0GusnxdntU-E0JOezzbIfC7SWoJmKAbad_zYDCJ3-c,1060
23
23
  sarapy/utils/getRawOperations.py,sha256=8aA1fIkNCnUYgiWfnFggRT_U35z432gZBrZ7seGO5w4,817
24
24
  sarapy/utils/plotting.py,sha256=kX-eYw618urMcUBkNPviQZdBziDc_TR3GInTsO90kU4,4065
25
- sarapy-2.1.0.dist-info/LICENCE,sha256=N00sU3vSQ6F5c2vML9_qP4IFTkCPFFj0YGDB2CZP-uQ,840
26
- sarapy-2.1.0.dist-info/METADATA,sha256=SUxMaAystOQGL48pzY351JHV6JgnZkiw5yhNJEqZ1RY,5695
27
- sarapy-2.1.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
28
- sarapy-2.1.0.dist-info/top_level.txt,sha256=4mUGZXfX2Fw47fpY6MQkaJeuOs_8tbjLkkNp34DJWiA,7
29
- sarapy-2.1.0.dist-info/RECORD,,
25
+ sarapy-2.1.1.dist-info/LICENCE,sha256=N00sU3vSQ6F5c2vML9_qP4IFTkCPFFj0YGDB2CZP-uQ,840
26
+ sarapy-2.1.1.dist-info/METADATA,sha256=UcFPPUm74NIuKz8H9mgVCl1tP-H2uxto_84GQiPsfnk,5774
27
+ sarapy-2.1.1.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
28
+ sarapy-2.1.1.dist-info/top_level.txt,sha256=4mUGZXfX2Fw47fpY6MQkaJeuOs_8tbjLkkNp34DJWiA,7
29
+ sarapy-2.1.1.dist-info/RECORD,,
File without changes