Go to file
Ashley Rogers 4513fb4ab1 Format 2025-01-07 15:45:54 -05:00
.concierge
.github/workflows Use later version of Ubuntu 2025-01-07 15:29:00 -05:00
.vscode
Cesium3DTiles Better doc for enums where possible. 2024-12-18 16:04:28 +11:00
Cesium3DTilesContent Merge remote-tracking branch 'origin/main' into i3dm-rotation-fix 2024-12-24 14:25:28 +11:00
Cesium3DTilesReader Merge from main 2024-12-17 11:36:54 -05:00
Cesium3DTilesSelection Format 2025-01-07 15:45:54 -05:00
Cesium3DTilesWriter Merge from main 2024-12-17 11:36:54 -05:00
CesiumAsync Format 2025-01-07 15:45:54 -05:00
CesiumGeometry Merge from main 2024-12-17 11:36:54 -05:00
CesiumGeospatial Merge from main 2024-12-17 11:36:54 -05:00
CesiumGltf Fix doc errors 2025-01-07 15:22:10 -05:00
CesiumGltfContent Merge from main 2024-12-17 11:36:54 -05:00
CesiumGltfReader Merge from main 2024-12-17 11:36:54 -05:00
CesiumGltfWriter Fix writing schema property 2025-01-06 11:38:17 -05:00
CesiumIonClient Merge from main 2024-12-17 11:36:54 -05:00
CesiumJsonReader Merge from main 2024-12-17 11:36:54 -05:00
CesiumJsonWriter Merge from main 2024-12-17 11:36:54 -05:00
CesiumNativeTests Include both catch2 headers 2024-11-22 11:30:45 -05:00
CesiumQuantizedMeshTerrain Merge from main 2024-12-17 11:36:54 -05:00
CesiumRasterOverlays Format 2025-01-07 15:45:54 -05:00
CesiumUtility Remove unused types, and fix doc/code mismatch. 2024-12-18 19:46:18 +11:00
cmake Fix triplet auto detected error on macos apple silicon 2024-12-14 17:12:39 +08:00
data Minor cleanup. 2024-08-22 20:40:31 +10:00
doc Add XML output option 2025-01-07 15:11:16 -05:00
extern Minimal changes to make cesium-native friendly to building in vcpkg manifest mode as part of another build 2024-08-23 11:31:11 -05:00
tools Fix writing schema property 2025-01-06 11:38:17 -05:00
.clang-format
.clang-tidy Disable redundant member init check and generator change 2024-11-25 15:56:51 -05:00
.editorconfig
.gitattributes
.gitignore
.gitmodules Migrate dependencies to vcpkg 2024-02-24 00:37:37 +00:00
CHANGES.md Fix writing schema property 2025-01-06 11:38:17 -05:00
CMakeGraphVizOptions.cmake Dependency graph generation 2024-12-04 14:39:16 -05:00
CMakeLists.txt Add XML output option 2025-01-07 15:11:16 -05:00
CONTRIBUTING.md Fix warnings from merge with main 2024-12-17 13:43:45 -05:00
LICENSE
README.md Update based on review 2024-12-13 15:40:11 -05:00
ThirdParty.json Remove use of GSL. 2024-11-06 15:16:03 +11:00
package-lock.json Dependency graph generation 2024-12-04 14:39:16 -05:00
package.json Bump to v0.43.0, update CHANGES.md. 2025-01-02 08:32:33 +11:00

README.md

Cesium Native

License Build Status Release

📚Documentation - 📒Change Log - 💬Community Forums

📖About

Cesium Native is a set of C++ libraries for 3D geospatial, including:

  • 3D Tiles runtime streaming
  • lightweight glTF serialization and deserialization
  • high-precision 3D geospatial math types and functions, including support for global-scale WGS84 ellipsoids.
  • support for draping raster overlays from WMS, TMS, WMTS, and other sources over 3D tilesets

Cesium Native powers Cesium's runtime integrations for Cesium for Unreal, Cesium for Unity, Cesium for Omniverse, and Cesium for O3DE. Cesium Native is the foundational layer for any 3D geospatial software, especially those that want to stream 3D Tiles. See Projects Using Cesium Native for a list of projects currently integrating with Cesium Native.

Cesium Platform and Ecosystem

A high-level Cesium platform architecture with the runtime integrations powered by Cesium Native and streaming content from Cesium ion.

📷Screenshots

Googleplex

The Googleplex in Mountain View, California, USA, visualized with Google Photorealistic 3D Tiles in Cesium for Unity.

New York

Cesium OSM Buildings in Cesium for Unreal with shading from metadata on building height and age.

Copernicus Crater

The Copernicus Crater, visualized with Cesium Moon Terrain in Cesium for Unreal.
 

San Francisco

Cesium for Omniverse scene set in San Francisco, California, USA. Data courtesy Aerometrex.

🗃️Libraries Overview

Library Description
Cesium3DTiles Lightweight 3D Tiles classes.
Cesium3DTilesContent Classes that support loading and converting 3D Tiles tile content.
Cesium3DTilesReader 3D Tiles deserialization, including 3D Tiles extension support.
Cesium3DTilesWriter 3D Tiles serialization, including 3D Tiles extension support.
Cesium3DTilesSelection Runtime streaming, level of detail selection, culling, cache management, and decoding of 3D Tiles.
CesiumAsync Classes for multi-threaded asynchronous tasks.
CesiumGeometry Common 3D geometry classes; and bounds testing, intersection testing, and spatial indexing algorithms.
CesiumGeospatial 3D geospatial math types and functions for ellipsoids, transforms, projections.
CesiumGltf Lightweight glTF processing and optimization functions.
CesiumGltfContent Classes that support manipulating the content of a glTF.
CesiumGltfReader glTF deserialization / decoding, including glTF extension support (KHR_draco_mesh_compression etc).
CesiumGltfWriter glTF serialization / encoding, including glTF extension support.
CesiumIonClient Functions to access Cesium ion accounts and 3D tilesets using ion's REST API.
CesiumJsonReader Reads JSON from a buffer into statically-typed classes.
CesiumJsonWriter Writes JSON from statically-typed classes into a buffer.
CesiumQuantizedMeshTerrain Classes for accessing terrain in the quantized-mesh-1.0 format.
CesiumRasterOverlays Classes for raster overlays, which allow draping massive 2D textures over a model.
CesiumUtility Utility functions for JSON parsing, URI processing, credits, etc.

📗License

Apache 2.0. Cesium Native is free for both commercial and non-commercial use.

🔧Projects Using Cesium Native

The following official Cesium integrations are built on top of Cesium Native:

In addition, Cesium Native has been used by the community to build projects including:

  • vsgCs integrates Cesium Native with VulkanSceneGraph.
  • osgEarth uses Cesium Native to load 3D Tiles in OpenSceneGraph.

If you have a project that integrates with Cesium Native that isn't on this list yet, please let us know!

💻Developing with Cesium Native

See the Developer Setup Guide to learn how to set up a development environment with Cesium Native and begin developing with it.

Contributing

Are you interested in contributing to Cesium Native's development? Contributions can come in many forms, from answering questions to creating issues and pull requests. See our Contribution Guide to find out how to get started!