Skip to content

Commit

Permalink
FIX: epsg int datatype as string for nbar_cubo (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
davemlz committed Jul 9, 2023
1 parent 3191564 commit e1d31fe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sen2nbar/nbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def nbar_cubo(da: xr.DataArray, quiet: bool = False) -> xr.DataArray:
stac = da.attrs["stac"]
collection = da.attrs["collection"]
epsg = da.attrs["epsg"]
epsg = f"epsg:{epsg}"

# Compute NBAR
da = nbar_stac(da, stac, collection, epsg, quiet)
Expand Down

0 comments on commit e1d31fe

Please sign in to comment.