From 36648b0dd94940cf257ee84ea8caf1bf93893155 Mon Sep 17 00:00:00 2001 From: "makena.dettmann@pnnl.gov" Date: Thu, 12 Jun 2025 11:51:39 -0700 Subject: [PATCH] updating refs to match updates in data repo --- docs/map/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/map/index.html b/docs/map/index.html index d94a98f..f736125 100644 --- a/docs/map/index.html +++ b/docs/map/index.html @@ -329,7 +329,7 @@ // Fetch the EMSL MONet JSON (not CSV) file and create a marker for each element of its top-level array. const monetResponse = await fetch( - `${baseUrlForData}/emsl/latlon_project_ids.json`, + `${baseUrlForData}/emsl/map/latlon_project_ids.json`, ); const monetObjs = await monetResponse.json(); const monetMarkers = []; @@ -352,7 +352,7 @@ // Fetch the EMSL JSON (not CSV) file and create a marker for each element of its top-level array. const response = await fetch( - `${baseUrlForData}/emsl/all_emsl_samples.json`, + `${baseUrlForData}/emsl/map/all_emsl_samples.json`, ); const emslObjs = await response.json(); const emslMarkers = [];