Find the centre coordinates of quarter sections using the legal land description
Details
A legal land description consists of four values separated by a -
Quarter Section (SW)
Section (9)
Township (8)
Range (6E1)
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.
search_legal()
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.
Examples
search_legal(x = c("NE-11-33-29W", "SW-20-2-1W"))
#> # A tibble: 2 × 3
#> legal long lat
#> <chr> <dbl> <dbl>
#> 1 NE-11-33-29W1 -101. 51.8
#> 2 SW-20-2-1W1 -97.6 49.1