I was looking around for country borders in czml and couldn’t find what I needed. I ended up getting the Natural Earth Admin 0 dataset converted to czml for 10m, 50m, and 110m.
Just wanted to post them here in case anyone else in the future goes down the rabbit hole I did and needs something similar.
EDIT(2): Access the files and guide to re-create the CZML on your own here: GitHub Link
Loaded like so:
const bordersPromise = Cesium.CzmlDataSource.load('assets/imagery/borders/countryborders.czml');
bordersPromise.then(function(dataSource) {
viewer.dataSources.add(dataSource);
}).catch((err) => {
console.error('Failed to load country borders CZML:', err);
});
Hi @drussell024,
Thanks for your post and welcome to the Cesium community.
Those data files sound quite useful to the community. To get around the upload limitation, you could make them available on a public data portal or a GitHub gist, and then post the link here.
Thanks for going above and beyond to produce some useful materials and share them with the Cesium community!