Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddkovacs committed Dec 28, 2024
1 parent 81c8c65 commit 8dfbaaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions pyeogpr/gee_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import os
import importlib
import sys
# from io import StringIO

class EarthEngine:
"""
Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 8dfbaaf

Please sign in to comment.