You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This is hard-coded to assume 4326 - when we draw an AOI, we will change this logic depending on what makes frontend sense
None
"""
boundary_gpd = gpd.GeoDataFrame.from_features(geojson_boundary)
# TODO(!feat): Generalize Sentinel2Client to accept any CRS
# Issue URL: https://github.com/SchmidtDSE/burn-severity-mapping-poc/issues/55
# This is hard-coded to assume 4326 - when we draw an AOI, we will change this logic depending on what makes frontend sense
if not boundary_gpd.crs:
geojson_boundary = boundary_gpd.set_crs("EPSG:4326")
The text was updated successfully, but these errors were encountered:
This is hard-coded to assume 4326 - when we draw an AOI, we will change this logic depending on what makes frontend sense
burn-severity-mapping-poc/src/burn_backend/lib/query_sentinel.py
Lines 103 to 105 in 9f4f901
None """ boundary_gpd = gpd.GeoDataFrame.from_features(geojson_boundary) # TODO(!feat): Generalize Sentinel2Client to accept any CRS # Issue URL: https://github.com/SchmidtDSE/burn-severity-mapping-poc/issues/55 # This is hard-coded to assume 4326 - when we draw an AOI, we will change this logic depending on what makes frontend sense if not boundary_gpd.crs: geojson_boundary = boundary_gpd.set_crs("EPSG:4326")
The text was updated successfully, but these errors were encountered: