From 8dfbaaf28a8aed107c0f122217d6cbeb35191b20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20D=2EKov=C3=A1cs?= Date: Sat, 28 Dec 2024 19:17:09 +0100 Subject: [PATCH] release --- pyeogpr/gee_processing.py | 5 ++--- setup.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pyeogpr/gee_processing.py b/pyeogpr/gee_processing.py index dfccd75a..b08d6d16 100644 --- a/pyeogpr/gee_processing.py +++ b/pyeogpr/gee_processing.py @@ -4,7 +4,6 @@ import os import importlib import sys -# from io import StringIO class EarthEngine: """ @@ -293,7 +292,7 @@ def calculate_GREEN(self, fecha_inicio, fecha_fin, variable): or self.biovar =="Cab" or self.biovar == "FVC" or self.biovar == "laiCab"): - print(image) + image = image.addBands(mean_pred) return image.select(self.biovar) @@ -395,7 +394,7 @@ def maploop(self): maxPixels=17210617060, description=self.getInputDates(i)["fecha_str"] + "_" + self.biovar, scale=self.spatial_resolution, - region = self.bbox, # .bounds().getInfo()['coordinates'] + region = self.bbox, ) exportar.start() exportar.status() diff --git a/setup.py b/setup.py index 26ee3cbc..88449e41 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ readme_path = os.path.join(os.path.dirname(__file__), 'README.md') setup(name="pyeogpr", - version ="2.3.0", + version ="2.3.1", description="Python based library to use Earth Observation data to retrieve biophysical maps using Gaussian Process Regression", long_description=open(readme_path, 'r').read(), long_description_content_type='text/markdown',