GeoJSON renders incorrectly with default Rhumb arc type
See original GitHub issueI’m using Cesium 1.60.0 and trying to load GeoJSON describing borders of Russia. I extracted this GeoJSON from shape files found on NaturalEarth (1:50m resolution, cultural). Unfortunately, Cesium does something wrong while rendering the GeoJSON. Seems like it draws polygon lines between points that should not be connected with each other.
I report this issue because this GeoJSON is displayed as expected with another software such as QGIS.
var viewer = new Cesium.Viewer('cesiumContainer');
viewer.dataSources.add(Cesium.GeoJsonDataSource.load('https://gist.githubusercontent.com/ezze/98a77f60cab8d24613f440599bece3a5/raw/9ac4498a1f0d3f3c80792a73a52672f1c847f43d/russia.json'));
Cesium doesn’t display GeoJSON properly
QGIS displays GeoJSON as expected
geojson.io displays GeoJSON as expected
mapshaper.org displays GeoJSON as expected
Browser: Chromium Version 75.0.3770.142 (Official Build) Built on Ubuntu , running on Ubuntu 18.04 (64-bit)
Operating System: Kubuntu 18.04
Issue Analytics
- State:
- Created 4 years ago
- Comments:12 (10 by maintainers)
Top Results From Across the Web
geojsonio - Geojson fails to render correctly - Stack Overflow
I created this geojson file by hand and it loads correctly in QGIS but doesn't work on geojson.io. Could anyone spot what I...
Read more >FactoryTalk View Site Edition User's Guide
ARC FLASH HAZARD: Labels may be on or inside the equipment, for example, a motor control center ... Showing undefined text strings in...
Read more >Troubleshooting migration tasks in AWS Database Migration ...
Troubleshoot issues when migrating data using AWS Database Migration Service (AWS DMS).
Read more >Learning the Basics - Gradle User Manual
Check out the full reference on all types of repositories for more information. ... By default the dependency report renders dependencies for all ......
Read more >Jmol/JSmol Interactive Script Documentation
There are two basic Jmol command types -- "RasMol-like" commands (shown in bold ... case default echo for if message reset set switch...
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
For anyone who wants to do some close reading, here’s the relevant section of the spec linked at the PR referenced above: https://tools.ietf.org/html/rfc7946#section-3.1.1
This may due to the same issue as https://github.com/AnalyticalGraphicsInc/cesium/issues/7864. Try this Sandcastle which sets the arc type back to what it used to be. Let me know if this looks correct.