The goal of mbquartR
is to provide an easy way to
download the Manitoba Original Survey Legal Descriptions data from DataMB and then to locate
quarter sections, and other types of land division types, in the
province of Manitoba. You can search by legal land description (e.g.,
NE-11-33-29W1) or by lat/long coordinates (e.g., -101.4656, 51.81913).
There is also a convenient map function that plots the centres and an
outline of the quarter sections on a map.
The Manitoba Original Survey Legal Descriptions data set covers the
entire province of Manitoba and there are over 900,000 parcels of land
that have a legal land description. mbquartR
was created
for those who work with geospatial data in Manitoba, particularly those
who are working with rural or farm parcels of land where the legal land
description is commonly used as the method of identifying the location.
mbquartR
also allows users to quickly go back and forth
between geographic coordinates and the legal land description. Most
mapping applications (e.g., Google Maps) can not find or route to a
legal land description, but you can with coordinates!
You can install the development version of mbquartR
like
so:
A quarter section in Manitoba is a land unit measuring 160 acres (~64.8 ha), representing a quarter of a square mile. It originates from the Dominion Land Survey system, introduced in the late 19th century to organize the European settlement and colonization of Western Canada. The grid system covers most of the province of Manitoba and organizes land into a hierarchy of quarter sections, sections, townships, and ranges.
A legal land description for a quarter section consists of four values separated by a -
For example: A legal land description of SW-9-8-6E1 can be interpreted as the Southwest Quarter of Section 9, Township 8, Range 6 East of the 1st Meridian.
Quarter sections are the most common type of land division in Manitoba but there are other types. The size, shape, and naming convention of these other types of land divisions can be different.
These include:
These other types of land division can also be search for using
search_legal()
To use the search functions you must first download a dataset that has both the legal land descriptions and the coordinates of the center for each quarter section in Manitoba.
These are basic examples which shows you the two common ways to search for quarter sections:
This function takes your coordinates (decimal degrees) and locates the nearest centre of a quarter section based on the euclidean distance between two points. Given that most quarter sections are a half mile square (804.7m by 804.7m) the furthest distance from the center to corner is ~570m. You will get a warning if any distances are greater than 600m and an error is the distance is greater than 1000m. The tibble that is returned provides the legal land descriptions, centre coordinates, user provided coordinates, and the distance from the coordinates provided to the closest quarter section centre.
This function takes legal land descriptions and locates the centre coordinates of the quarter sections. You can include leading zeroes (e.g., NE-01-012-12E1) or not (e.g., NE-1-12-12E1). The data set used in this package includes three meridians (W1, E1, and E2); however, most commonly searched for quarter sections use the East 1 (E1) or West 1 (W1) meridians. If the meridian number is not included it will default to 1. For example, a search for NW-36-89-11E will by default search for NW-36-89-11E1 despite NW-36-89-11E2 existing in the data set.
You can also quickly plot the center coordinates and an outline (polygon) of located quarter sections on an interactive map. Outlines are only provided for quarter sections as the the dimensions and orientation of the other land division types vary.