MultiPolygon Error
See original GitHub issueI’m getting an Invalid GeoJSON
error when calling st.geomFromGeoJSON
on a MultiPolygon.
In a GeoJSON linter, I get the error that the GeoJSON doesn’t follow the right-hand rule, although using geojson-rewind
to fix this produces no change in result.
I’m stumped here and would appreciate any insight.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Invalid MultiPolygon value even though all the Polygons are ...
I am trying to convert coordinates to WKT format. Here I have a list of polygons which should be identified as a Multi...
Read more >Compatibility error (multipolygon - polygon) when merging two ...
When I try to merge two features - originally from two different source layers, now in the Merged layer - I get this...
Read more >12.17.7.4 Polygon and MultiPolygon Property Functions
If the geometry is valid but is not a Polygon or MultiPolygon object, an ER_UNEXPECTED_GEOMETRY_TYPE error occurs. If the geometry is a valid...
Read more >MultiPolygon throws error in react-map-gl-draw #457 - GitHub
Describe the bug. When supplying initial value in polygon Editor loads properly but when multipolygon is given editor throws error.
Read more >Cast geometry to another type: either simplify, or cast explicitly
S3 method for MULTIPOLYGON st_cast(x, to, . ... 36.58965 #> Geodetic CRS: NAD27 mpl <- nc$geometry[[4]] #st_cast(x) ## error 'argument "to" is missing, ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
the function
geomFromGeoJSON
receives only the geometry part as argument. So if you save the geojson before asmulti.json
, you can execute this:good!