-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
geojsonsf #81
Milestone
Comments
Working in To Do:
|
Closed
Would you like me to add a |
Sorry @dcooley I was wrong - library(sf)
#> Linking to GEOS 3.8.1, GDAL 2.4.4, PROJ 7.0.0
library(geojsonsf)
xs <- st_polygon(list(cbind(approx(c(0, 0, 1, 1, 0))$y,
approx(c(0, 1, 1, 0, 0))$y)))
xsf <- st_sf(geometry = st_sfc(xs, xs + 2, xs + 3), a = 1:3)
class(geojsonsf::sf_geojson(xsf))
#> [1] "geojson" "json" Created on 2020-04-17 by the reprex package (v0.3.0) |
Checklist updated - rmapshaper can just have methods for |
This will be closed by #118 |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the readme you identify the conversion to/from GeoJSON is slow
Other than the date fix (thanks again!), is there anything you would like added to geojsonsf so you can use it in
rmapshaper
to do the GeoJSON <--> sf conversion?The text was updated successfully, but these errors were encountered: