knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

mapmaryland

Project Status: Active – The project has reached a stable, usable state and is being actively developed. License: MIT

The goal of mapmaryland is to ease access to spatial data for Maryland at both the local, regional, and statewide level.

Installation

You can install the development version of mapmaryland like so:

# pak::pkg_install("elipousson/mapmaryland")

Example

library(mapmaryland)

Currently, the package has a limited number of data access functions, prepackaged datasets, and reference data with an index of Maryland ArcGIS services.

dplyr::glimpse(md_arcgis_index)
location <-
  get_md_tigris(
    name = "Hyattsville",
    type = "census places"
  )

location
streams <-
  get_water_data(
    location = location,
    type = "streams"
  )

plot(streams, max.plot = 1)


elipousson/mapmaryland documentation built on Nov. 3, 2024, 5:11 a.m.