Unlimited learning, half price | 50% off

Last chance! 50% off unlimited learning

Sale ends in


geoops (version 0.3.0)

geoops-package: geoops

Description

Tools for doing calculations and manipulations on GeoJSON, a 'geospatial' data interchange format (https://tools.ietf.org/html/rfc7946). GeoJSON is also valid JSON.

Arguments

Examples

Run this code
# NOT RUN {
library("geoops")

# Calculate distance between two GeoJSON points
pt1 <- '{
  "type": "Feature",
  "properties": {
    "marker-color": "#f00"
   },
   "geometry": {
      "type": "Point",
      "coordinates": [-75.343, 39.984]
   }
}'

pt2 <- '{
  "type": "Feature",
  "properties": {
     "marker-color": "#0f0"
   },
   "geometry": {
      "type": "Point",
      "coordinates": [-75.534, 39.123]
    }
}'
geo_distance(pt1, pt2)

# }

Run the code above in your browser using DataLab