-
Notifications
You must be signed in to change notification settings - Fork 7
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
geojson_sf with NA numeric values changes to character #79
Comments
Thanks. This is odd given the underlying res <- jsonify::from_json( gj )
str( res$features$properties )
# 'data.frame': 2 obs. of 1 variable:
# $ a: num 1 NA There must be a mis-match between my implementations (I wrote |
On branch library(sf)
#> Linking to GEOS 3.8.1, GDAL 2.4.4, PROJ 7.0.0
# remotes::install_github("SymbolixAU/geojsonsf", ref = "issue79")
library(geojsonsf)
gj <- '{"type":"FeatureCollection","features":[
{"type":"Feature","properties":{"a":1.0,"b":true,"c":"hello"},"geometry":{"type":"Point","coordinates":[0.0,0.0]}},
{"type":"Feature","properties":{"a":null,"b":null,"c":null},"geometry":{"type":"Point","coordinates":[1.0,1.0]}}
]}'
sf <- geojson_sf(gj)
str( sf )
# Classes ‘sf’ and 'data.frame': 2 obs. of 4 variables:
# $ a : num 1 NA
# $ c : chr "hello" NA
# $ b : logi TRUE NA
# $ geometry:sfc_POINT of length 2; first list element: 'XY' num 0 0
# - attr(*, "sf_column")= chr "geometry" |
Brilliant! All tests pass in rmapshaper now (at least locally) with that fix (nb. I did have to install dev |
yeah I just saw that too, so have updated the sfheaders requirement in the DESCRIPTION. |
It seems that this issue isn't resolved whenever the first value in a numeric field is a For example:
|
thanks - should now be fixed on |
Fantastic, thank you! |
It seems that when a numeric field in a geojson contains
null
values,geojson_sf
converts that field tocharacter
:Created on 2020-04-08 by the reprex package (v0.3.0)
The text was updated successfully, but these errors were encountered: