Skip to content

small data science project looking at Rideau Canal skating data

License

Notifications You must be signed in to change notification settings

PatLittle/skateway_data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPI - Version Open In Colab Static Badge


image

The ice conditions data shown on the map can be accessed from the ESRI feature layer

Esri Dump. This allows you to quickly dump a ESRI REST endpoint to GeoJSON. .

import json
from esridump.dumper import EsriDumper

d = EsriDumper('http://example.com/arcgis/rest/services/Layer/MapServer/1')

# Iterate over each feature
for feature in d:
    print(json.dumps(feature))

d = EsriDumper('http://example.com/arcgis/rest/services/Layer/MapServer/2')

# Or get all features in one list
all_features = list(d)

Here is an example of the python, and feel free to use this as the starting point for your own experiment transforming geo data to tabular.

Open In Colab

View the Data Data --> Static Badge

This technique using Esri Dump should be reusable with a huge number of Geospatial datasets from the Open Maps collection on Open.Canada.ca.


2024 Article

image


2025 Article

A_vibrant_and_dynamic_illustration_inspired_by_Avr

About

small data science project looking at Rideau Canal skating data

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages