Skip to content

Community generated geography for rural municipalities in Saskatchewan, Canada.

License

Notifications You must be signed in to change notification settings

andrewjdyck/Saskatchewan-Rural-Municipality-Map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Saskatchewan-Rural-Municipality-Map

A community generated map of rural municipalities in Saskatchewan, Canada. This repository includes two universal file formats of the same mapping layer for use in any GIS software (eg. QGIS) or data science focused programming language (eg. Python, R, etc.).

  • data/Saskatchewan RMs.gpkg
  • data/Saskatchewan-RMs.geojson

township.jpg

Why this map exists:

Statistics Canada CSD data quality

Stats Canada CSD files are OK, but they follow roads, instead of the actual Dominion Land Survey grid. The centre lines can cut corners and be a bit off in places. The image below shows a typical mis-representation of the CSD where the official version boundaries are in grey and this version is highlighted in black.

roadline.png

The same is also true for water features. The image below highlights the Outlook, SK Census Subdivision boundary along a waterway. Again, the official version is shown in grey and this version is in black.

waterway.jpg

Sources

The map was created and updated based on the following sources:

These data sources were combined in QGIS, referencing the Sask government's read-only web layer, as well as CSDs from Statistics Canada and some historic maps (in order to figure out the "imaginary" boundaries that pass through reserves and towns).

Using the data

Python

import geopandas as gpd

sask_rms = gpd.read_file('./data/Saskatchewan-RMs.geojson')

sask_rms.info()
sask_rms.head()

R

library(sf)

sask_rms <- sf::st_read('./data/Saskatchewan-RMs.geojson')

str(sask_rms)
head(sask_rms)

QGIS

See QGIS documentation

Credits

Alex McPhee - Web / Twitter

About

Community generated geography for rural municipalities in Saskatchewan, Canada.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published