ESDS-Leipzig / cubo

On-Demand Earth System Data Cubes (ESDCs) in Python
https://cubo.readthedocs.io/en/latest/
MIT License
164 stars 9 forks source link

AssertionError: `out_epsg` not found. out_epsg='EPSG:32618' #5

Closed isConic closed 1 year ago

isConic commented 1 year ago

Running the example on the README.md produces the following error

AssertionError: `out_epsg` not found. out_epsg='EPSG:32618'

The code that produces this error:

import cubo
import xarray as xr  

da = cubo.create(
    lat=4.31, # Central latitude of the cube
    lon=-76.2, # Central longitude of the cube
    collection="sentinel-2-l2a", # Name of the STAC collection
    bands=["B02","B03","B04"], # Bands to retrieve
    start_date="2021-06-01", # Start date of the cube
    end_date="2021-06-10", # End date of the cube
    edge_size=64, # Edge size of the cube (px)
    resolution=10, # Pixel size of the cube (m)
)
davemlz commented 1 year ago

Hi @isConic!

I'm closing this issue as it was already reported (cf. #4).

Please refer to that one ;)

Best,

David