tidal_stations_en Published by over a thousand stations
Canadian tidal and water level stations with archives spanning 1848 to present.
Canada hydrology coastal
Extent not published by this service Load live preview
Service facts Endpoint https://egisp.dfo-mpo.gc.ca/arcgis/rest/services/open_data_donnees_ouvertes/tidal_stations_en/MapServer Copy URL Type ESRI MapServer Layers 3 Formats PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP CRS EPSG:4326 CORS Enabled Response time 1417 ms at last check Last verified 2026-07-24 Discovered 1 time by Geo Hound users Layers Id Layer Geometry Features 0 Permanent Water Level Network Station17 fields Name Alias Type STATION_NUMBER STATION_NUMBER esriFieldTypeOID STATION_NAME STATION_NAME esriFieldTypeString SYMBOLOGY SYMBOLOGY esriFieldTypeString LATITUDE LATITUDE esriFieldTypeDouble LONGITUDE LONGITUDE esriFieldTypeDouble ARCHIVE_LINK_ENG ARCHIVE_LINK_ENG esriFieldTypeString ARCHIVE_LINK_FRA ARCHIVE_LINK_FRA esriFieldTypeString BENCHMARK_LINK_ENG BENCHMARK_LINK_ENG esriFieldTypeString BENCHMARK_LINK_FRA BENCHMARK_LINK_FRA esriFieldTypeString MEDS_STATUS MEDS_STATUS esriFieldTypeString STATUS STATUS esriFieldTypeString TIME_ZONE_TWL TIME_ZONE_TWL esriFieldTypeString REGION REGION esriFieldTypeString REGION_ENG REGION_ENG esriFieldTypeString REGION_FRA REGION_FRA esriFieldTypeString DATUM_CODE DATUM_CODE esriFieldTypeString GEOM GEOM esriFieldTypeGeometry
point 1 Tidal Bore Station17 fields Name Alias Type STATION_NUMBER STATION_NUMBER esriFieldTypeOID STATION_NAME STATION_NAME esriFieldTypeString SYMBOLOGY SYMBOLOGY esriFieldTypeString LATITUDE LATITUDE esriFieldTypeDouble LONGITUDE LONGITUDE esriFieldTypeDouble ARCHIVE_LINK_ENG ARCHIVE_LINK_ENG esriFieldTypeString ARCHIVE_LINK_FRA ARCHIVE_LINK_FRA esriFieldTypeString BENCHMARK_LINK_ENG BENCHMARK_LINK_ENG esriFieldTypeString BENCHMARK_LINK_FRA BENCHMARK_LINK_FRA esriFieldTypeString MEDS_STATUS MEDS_STATUS esriFieldTypeString STATUS STATUS esriFieldTypeString TIME_ZONE_TWL TIME_ZONE_TWL esriFieldTypeString REGION REGION esriFieldTypeString REGION_ENG REGION_ENG esriFieldTypeString REGION_FRA REGION_FRA esriFieldTypeString DATUM_CODE DATUM_CODE esriFieldTypeString GEOM GEOM esriFieldTypeGeometry
point 2 Tide and Water Level Station17 fields Name Alias Type STATION_NUMBER STATION_NUMBER esriFieldTypeOID STATION_NAME STATION_NAME esriFieldTypeString SYMBOLOGY SYMBOLOGY esriFieldTypeString LATITUDE LATITUDE esriFieldTypeDouble LONGITUDE LONGITUDE esriFieldTypeDouble ARCHIVE_LINK_ENG ARCHIVE_LINK_ENG esriFieldTypeString ARCHIVE_LINK_FRA ARCHIVE_LINK_FRA esriFieldTypeString BENCHMARK_LINK_ENG BENCHMARK_LINK_ENG esriFieldTypeString BENCHMARK_LINK_FRA BENCHMARK_LINK_FRA esriFieldTypeString MEDS_STATUS MEDS_STATUS esriFieldTypeString STATUS STATUS esriFieldTypeString TIME_ZONE_TWL TIME_ZONE_TWL esriFieldTypeString REGION REGION esriFieldTypeString REGION_ENG REGION_ENG esriFieldTypeString REGION_FRA REGION_FRA esriFieldTypeString DATUM_CODE DATUM_CODE esriFieldTypeString GEOM GEOM esriFieldTypeGeometry
point
Use this service QGIS Copy
Layer > Add Layer > Add ArcGIS REST Server Layer > New
Name: tidal_stations_en
URL: https://egisp.dfo-mpo.gc.ca/arcgis/rest/services/open_data_donnees_ouvertes/tidal_stations_en/MapServer ArcGIS Pro Copy
Insert > Connections > Server > New ArcGIS Server
Server URL: https://egisp.dfo-mpo.gc.ca/arcgis/rest/services/open_data_donnees_ouvertes/tidal_stations_en/MapServer Leaflet Copy
fetch('https://egisp.dfo-mpo.gc.ca/arcgis/rest/services/open_data_donnees_ouvertes/tidal_stations_en/MapServer/0/query?where=1%3D1&outFields=*&f=geojson')
.then((r) => r.json())
.then((geojson) => L.geoJSON(geojson).addTo(map)); Python Copy
import geopandas as gpd
gdf = gpd.read_file(
'https://egisp.dfo-mpo.gc.ca/arcgis/rest/services/open_data_donnees_ouvertes/tidal_stations_en/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)