Skip to content

Commit

Permalink
Fix prefix name (epsg:4326 -> epsg-4326) to be consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
dmannarino committed Nov 3, 2024
1 parent e7614ae commit 459d90d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/tasks/raster_tile_set_assets/raster_tile_set_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ async def raster_tile_set_asset(
new_src_uris = list()
for i,_ in enumerate(creation_options.source_uri):
new_src_uris.append(
f"s3://{DATA_LAKE_BUCKET}/{dataset}/{version}/raster/{target_crs}/reprojected/SRC_{i}"
f"s3://{DATA_LAKE_BUCKET}/{dataset}/{version}/raster/"
f"{target_crs.replace(':', '-')}/reprojected/SRC_{i}"
)
target_prefix = new_src_uris[0].rsplit("/", 1)[0]
unify_job = await create_unify_projection_job(
Expand Down

0 comments on commit 459d90d

Please sign in to comment.