Two examples of using mbquartR

Introduction

The mbquartR package was created to help people easily identify, search, and locate parcels of land using the Manitoba legal descriptions. These legal land descriptions originate from the Dominion Land Survey system, introduced in the late 19th century to organize the European settlement and colonization of Western Canada.

There are two main ways in which the mbquartR can be used.

  1. Search for and locate parcels of land using legal land descriptions (e.g., SW-9-8-6E1)

or

  1. Search for legal land description using coordinates (latitude and longitude)

Note: The examples below are fictitious scenarios designed to highlight the functionality of the mbquartR package. The identified land parcels and coordinates are not intended for any official or practical use.

Example 2: Using coordinates to find parcels of land

As an agri-environmental scientist I take a lot of soil samples on farms as part of research projects and I always geo-locate sampling sites so I can revisit them at a later date. When reporting results back to producers/farmers it is often easiest to refer to locations by their legal land descriptions because these descriptions are familiar and are tied to how farmers manage their land. The example below presents a small data frame of surface soil sample P concentrations (ppm), all collected from the watershed, along with their corresponding coordinates.

soil_p <- data.frame(
  lat = c(49.333854, 49.338577, 49.356048, 49.372180),
  long = c(-98.376486, -98.376862, -98.304846, -98.254691),
  p_conc = c(8.75, 12.30, 17.45, 22.60),
  sample_id = factor(seq(1, 4, 1)))
soil_p
#>        lat      long p_conc sample_id
#> 1 49.33385 -98.37649   8.75         1
#> 2 49.33858 -98.37686  12.30         2
#> 3 49.35605 -98.30485  17.45         3
#> 4 49.37218 -98.25469  22.60         4

Search

Using search_coord() we provide coordinates, in decimal degrees, and it searches for the quarter section, or other land division type, based on the shortest euclidean distance to the centre of a parcel of land. Because the data being search is so big this function can take a little while to run. This function returns the legal land description, land division type, the center coordinates, user coordinates, and the distance between the user provided coordinates and the centre coordinates. In the example below I have collected soil samples from two different farm fields that happen to be within the same quarter section

location_2 <- search_coord(lat = soil_p$lat, long = soil_p$long)
location_2
#> # A tibble: 4 × 7
#>   legal       type     long   lat long_user lat_user dist
#>   <chr>       <chr>   <dbl> <dbl>     <dbl>    <dbl>  [m]
#> 1 NW-29-4-7W1 Quarter -98.4  49.3     -98.4     49.3 414.
#> 2 NW-29-4-7W1 Quarter -98.4  49.3     -98.4     49.3 370.
#> 3 SE-2-5-7W1  Quarter -98.3  49.4     -98.3     49.4 361.
#> 4 SE-7-5-6W1  Quarter -98.3  49.4     -98.3     49.4 168.

Map

For a quick reference I can quickly plot the centre coordinates and the approximate boundaries of these quarter sections using map_quarter().

map_quarter(location_2)
#> Polygons for quarter sections are approximate and are only meant as
#>     a visual aid.

I can also add my sampling locations to the map by first converting my original data frame to an sf object.

point <- sf::st_as_sf(soil_p, coords = c("long", "lat"),
                      crs = "+proj=longlat +datum=WGS84")

Then adding this sf object as an additional layer

map_quarter(location_2) + 
  mapview::mapview(point, col.regions = "black", 
                   color = "black", legend =FALSE)
#> Polygons for quarter sections are approximate and are only meant as
#>     a visual aid.