R/FeatureCollection.R

#' FeatureCollection
#'
#' A GeoJSON object with the type "FeatureCollection" is a feature collection
#' object. An object of type "FeatureCollection" must have a member with the
#' name "features". The value corresponding to "features" is an array. Each
#' element in the array is a feature object as defined above.
#'
#' @name FeatureCollection
#' @family geo types
#' @examples
#' '{
#'   "type": "FeatureCollection",
#'   "features": [
#'     {
#'       "type": "Feature",
#'       "properties": {
#'         "population": 200
#'       },
#'       "geometry": {
#'         "type": "Point",
#'         "coordinates": [-112.0372, 46.608058]
#'       }
#'     }
#'   ]
#' }'
NULL

Try the geoops package in your browser

Any scripts or data that you put into this service are public.

geoops documentation built on July 1, 2020, 10:39 p.m.