Interactive map to view sediment site locations with meta information
NoteNote on Distance Accuracy
Calculated distances represent the shortest Euclidean path to the nearest coastline geometry (GSHHG dataset).
While the data is projected (EPSG:3035) to minimize distortion at high latitudes, please interpret these values as estimates. In areas with complex topography—such as narrow fjords or dense archipelagos—the resolution of the coastline vector data may result in minor deviations from real-world measurements.
NoteNote on Location Name Accuracy
Location names from geographic coordinates are algorithmic estimates based on geometric proximity. They may differ from historical logbooks or specific political definitions of maritime borders.
Interactive Map
The map below displays the spatial distribution of sediment cores. The markers are color-coded based on their distance from the nearest European coastline.
How to use this map:
Zoom and Pan to explore specific coastal areas or offshore regions.
Click the Expand icon to reset the view.
Filter the data by toggling distance categories in the top-right menu (e.g., uncheck boxes to hide specific ranges).
Use the Legend in the bottom right to interpret the color coding.
Hover over a point to quickly identify the Project and Site IDs.
Click on a marker to view exact coordinates, distance to shore (in km), and location names.
db = {const StratumSQLite =awaitwindow._stratumSQLite;return StratumSQLite.open(window._dbPath, {sqlJsPath:window._sqljsBase,cacheKey:"pilot-ices-dome@v0.1.5", });}
L =require("https://unpkg.com/leaflet@1.9.4/dist/leaflet.js")// --- Default view ---home_lat =55home_lng =5home_zoom =4// --- Distance category order and colours (turbo-like palette) ---dist_order = ["0 to 10km","10 to 30km","30 to 100km","≥100km"]dist_colors = ({"0 to 10km":"#30123b","10 to 30km":"#28bbec","30 to 100km":"#a2fc3c","≥100km":"#fb8022"})
// --- Query site points ---points_web = db.query(` SELECT distinct p1.project_id, p1.project, s2.site_id, s2.station, s2.latitude, s2.longitude, s2.dist_to_coast, CASE WHEN s2.dist_to_coast <= 10 THEN '0 to 10km' WHEN s2.dist_to_coast <= 30 THEN '10 to 30km' WHEN s2.dist_to_coast <= 100 THEN '30 to 100km' ELSE '≥100km' END AS Distance, p1.country, s2.est_country, s2.country_code, s2.municipality, s2.sea_name FROM sample s1 JOIN project p1 ON p1.project_id = s1.project_id JOIN site s2 ON s2.site_id = s1.site_id`)