Skip to content

Commit e82a935

Browse files
committed
remove hard-coded test URL
1 parent 147b406 commit e82a935

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

clipping-service/app/app.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,7 @@ def clip():
286286
# align the bounding box
287287
source_file_path = f'/vsicurl/{parameters["file_url"]}'
288288
if source_file_type == VECTOR:
289-
# Temporarily hard-code path to NOAA shorelines flatgeobuf
290-
source_file_path = "/vsicurl/https://storage.googleapis.com/jupyter-app-temp-storage/noaa_us_shorelines.fgb"
291-
# source_file_path = source_file_path.replace('.mvt', '.shp')
289+
source_file_path = source_file_path.replace('.mvt', '.fgb')
292290

293291
source_file_info = cached_file_info(source_file_path, source_file_type)
294292

src/ckanext-mappreview/ckanext/mappreview/assets/js/mappreview.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,7 @@ ckan.module("mappreview", function ($, _) {
764764
<i class="fa-solid fa-xmark"></i>
765765
</button>
766766
</div>`
767+
767768
var layers = [];
768769
for (const layer of config.layers) {
769770
layers.push(layer);

0 commit comments

Comments
 (0)