gitextract_6rlxw4rt/ ├── .gitattributes ├── css/ │ └── DrawWorker.css ├── index.html ├── js/ │ ├── DrawWorker/ │ │ ├── DrawWorker.js │ │ ├── algorithm.js │ │ ├── draw.js │ │ └── plotUtil.js │ └── cesium/ │ ├── Assets/ │ │ ├── IAU2006_XYS/ │ │ │ ├── IAU2006_XYS_0.json │ │ │ ├── IAU2006_XYS_1.json │ │ │ ├── IAU2006_XYS_10.json │ │ │ ├── IAU2006_XYS_11.json │ │ │ ├── IAU2006_XYS_12.json │ │ │ ├── IAU2006_XYS_13.json │ │ │ ├── IAU2006_XYS_14.json │ │ │ ├── IAU2006_XYS_15.json │ │ │ ├── IAU2006_XYS_16.json │ │ │ ├── IAU2006_XYS_17.json │ │ │ ├── IAU2006_XYS_18.json │ │ │ ├── IAU2006_XYS_19.json │ │ │ ├── IAU2006_XYS_2.json │ │ │ ├── IAU2006_XYS_20.json │ │ │ ├── IAU2006_XYS_21.json │ │ │ ├── IAU2006_XYS_22.json │ │ │ ├── IAU2006_XYS_23.json │ │ │ ├── IAU2006_XYS_24.json │ │ │ ├── IAU2006_XYS_25.json │ │ │ ├── IAU2006_XYS_26.json │ │ │ ├── IAU2006_XYS_27.json │ │ │ ├── IAU2006_XYS_3.json │ │ │ ├── IAU2006_XYS_4.json │ │ │ ├── IAU2006_XYS_5.json │ │ │ ├── IAU2006_XYS_6.json │ │ │ ├── IAU2006_XYS_7.json │ │ │ ├── IAU2006_XYS_8.json │ │ │ └── IAU2006_XYS_9.json │ │ ├── Textures/ │ │ │ └── NaturalEarthII/ │ │ │ └── tilemapresource.xml │ │ └── approximateTerrainHeights.json │ ├── Cesium.js │ ├── ThirdParty/ │ │ └── Workers/ │ │ ├── deflate.js │ │ └── inflate.js │ ├── Widgets/ │ │ ├── Animation/ │ │ │ ├── Animation.css │ │ │ └── lighter.css │ │ ├── BaseLayerPicker/ │ │ │ ├── BaseLayerPicker.css │ │ │ └── lighter.css │ │ ├── Cesium3DTilesInspector/ │ │ │ └── Cesium3DTilesInspector.css │ │ ├── CesiumInspector/ │ │ │ └── CesiumInspector.css │ │ ├── CesiumWidget/ │ │ │ ├── CesiumWidget.css │ │ │ └── lighter.css │ │ ├── FullscreenButton/ │ │ │ └── FullscreenButton.css │ │ ├── Geocoder/ │ │ │ ├── Geocoder.css │ │ │ └── lighter.css │ │ ├── InfoBox/ │ │ │ ├── InfoBox.css │ │ │ └── InfoBoxDescription.css │ │ ├── NavigationHelpButton/ │ │ │ ├── NavigationHelpButton.css │ │ │ └── lighter.css │ │ ├── PerformanceWatchdog/ │ │ │ └── PerformanceWatchdog.css │ │ ├── ProjectionPicker/ │ │ │ └── ProjectionPicker.css │ │ ├── SceneModePicker/ │ │ │ └── SceneModePicker.css │ │ ├── SelectionIndicator/ │ │ │ └── SelectionIndicator.css │ │ ├── Timeline/ │ │ │ ├── Timeline.css │ │ │ └── lighter.css │ │ ├── VRButton/ │ │ │ └── VRButton.css │ │ ├── Viewer/ │ │ │ └── Viewer.css │ │ ├── lighter.css │ │ ├── lighterShared.css │ │ ├── shared.css │ │ └── widgets.css │ └── Workers/ │ ├── cesiumWorkerBootstrapper.js │ ├── combineGeometry.js │ ├── createBoxGeometry.js │ ├── createBoxOutlineGeometry.js │ ├── createCircleGeometry.js │ ├── createCircleOutlineGeometry.js │ ├── createCorridorGeometry.js │ ├── createCorridorOutlineGeometry.js │ ├── createCylinderGeometry.js │ ├── createCylinderOutlineGeometry.js │ ├── createEllipseGeometry.js │ ├── createEllipseOutlineGeometry.js │ ├── createEllipsoidGeometry.js │ ├── createEllipsoidOutlineGeometry.js │ ├── createFrustumGeometry.js │ ├── createFrustumOutlineGeometry.js │ ├── createGeometry.js │ ├── createPolygonGeometry.js │ ├── createPolygonOutlineGeometry.js │ ├── createPolylineGeometry.js │ ├── createPolylineVolumeGeometry.js │ ├── createPolylineVolumeOutlineGeometry.js │ ├── createRectangleGeometry.js │ ├── createRectangleOutlineGeometry.js │ ├── createSimplePolylineGeometry.js │ ├── createSphereGeometry.js │ ├── createSphereOutlineGeometry.js │ ├── createVerticesFromGoogleEarthEnterpriseBuffer.js │ ├── createVerticesFromHeightmap.js │ ├── createVerticesFromQuantizedTerrainMesh.js │ ├── createWallGeometry.js │ ├── createWallOutlineGeometry.js │ ├── decodeGoogleEarthEnterprisePacket.js │ ├── transcodeCRNToDXT.js │ ├── transferTypedArrayTest.js │ └── upsampleQuantizedTerrainMesh.js └── readme.txt