This commit is contained in:
Flatlogic Bot 2025-10-14 02:37:44 +00:00
parent 8a0cc66562
commit 055d24df95
7430 changed files with 3107904 additions and 7 deletions

View File

@ -9,11 +9,16 @@ $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, 'worldsphere.ai bot'); // Some APIs require a user agent
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$curl_error = curl_error($ch);
curl_close($ch);
if ($response === false) {
echo json_encode(['error' => 'Could not fetch wildfire data.']);
if ($curl_error || $http_code !== 200) {
http_response_code(500);
echo json_encode(['error' => 'Could not fetch wildfire data from the source API.']);
exit;
}

View File

@ -0,0 +1,23 @@
Apps/HelloWorld.html
Apps/Sandcastle/ThirdParty/**
Build/**
Documentation/**
Source/**
Specs/jasmine/**
ThirdParty/**
Tools/**
Apps/Sandcastle/jsHintOptions.js
Apps/Sandcastle/gallery/gallery-index.js
index.html
index.release.html
# packages/engine
packages/engine/Build/**
packages/engine/Source/Scene/GltfPipeline/**
packages/engine/Source/Shaders/**
packages/engine/Source/ThirdParty/**
# packages/widgets
packages/widgets/Build/**
packages/widgets/Source/ThirdParty/**

View File

@ -0,0 +1,5 @@
{
"extends": [
"cesium/node"
]
}

View File

@ -0,0 +1,41 @@
# Ignore everything
*
# Unignore directories (to all depths) and unignore code and style files in these directories
!.concierge/**/
!.github/**/
!.vscode/**/
!Apps/**/
!Documentation/**/
!packages/**/
!Specs/**/
!Tools/**/
!**/*.js
!**/*.cjs
!**/*.css
!**/*.html
!**/*.md
!**/*.ts
# Re-ignore a few things caught above
**/*.min.js
packages/engine/Build/**
packages/engine/index.js
packages/engine/Source/Scene/GltfPipeline/**
packages/engine/Source/Shaders/**/*.js
packages/engine/Source/ThirdParty/**
packages/widgets/Build/**
packages/widgets/index.js
packages/widgets/Source/ThirdParty/**
Specs/jasmine/**
Apps/Sandcastle/ThirdParty
Tools/jsdoc/cesium_template/static/javascript/prism.js
Tools/jsdoc/cesium_template/static/styles/prism.css

View File

@ -0,0 +1,3 @@
{
"extends": "../packages/.eslintrc.json"
}

View File

@ -0,0 +1,41 @@
@import url(../../Source/Widgets/widgets.css);
@import url(../../Source/Widgets/lighter.css);
html {
height: 100%;
}
body {
height: 100%;
width: 100%;
margin: 0;
overflow: hidden;
padding: 0;
background: #000;
}
.fullWindow {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
margin: 0;
overflow: hidden;
padding: 0;
font-family: sans-serif;
}
.loadingIndicator {
display: block;
position: absolute;
top: 50%;
left: 50%;
margin-top: -33px;
margin-left: -33px;
width: 66px;
height: 66px;
background-position: center;
background-repeat: no-repeat;
background-image: url(Images/ajax-loader.gif);
}

View File

@ -0,0 +1,245 @@
// eslint-disable-next-line no-undef
window.CESIUM_BASE_URL = window.CESIUM_BASE_URL
? window.CESIUM_BASE_URL
: "../../Build/CesiumUnminified/";
import {
Cartesian3,
defined,
formatError,
Math as CesiumMath,
objectToQuery,
queryToObject,
CzmlDataSource,
GeoJsonDataSource,
ImageryLayer,
KmlDataSource,
GpxDataSource,
Terrain,
TileMapServiceImageryProvider,
Viewer,
viewerCesiumInspectorMixin,
viewerDragDropMixin,
} from "../../Build/CesiumUnminified/index.js";
async function main() {
/*
Options parsed from query string:
source=url The URL of a CZML/GeoJSON/KML data source to load at startup.
Automatic data type detection uses file extension.
sourceType=czml/geojson/kml
Override data type detection for source.
flyTo=false Don't automatically fly to the loaded source.
tmsImageryUrl=url Automatically use a TMS imagery provider.
lookAt=id The ID of the entity to track at startup.
stats=true Enable the FPS performance display.
inspector=true Enable the inspector widget.
debug=true Full WebGL error reporting at substantial performance cost.
theme=lighter Use the dark-text-on-light-background theme.
scene3DOnly=true Enable 3D only mode.
view=longitude,latitude,[height,heading,pitch,roll]
Automatically set a camera view. Values in degrees and meters.
[height,heading,pitch,roll] default is looking straight down, [300,0,-90,0]
saveCamera=false Don't automatically update the camera view in the URL when it changes.
*/
const endUserOptions = queryToObject(window.location.search.substring(1));
let baseLayer;
if (defined(endUserOptions.tmsImageryUrl)) {
baseLayer = ImageryLayer.fromProviderAsync(
TileMapServiceImageryProvider.fromUrl(endUserOptions.tmsImageryUrl)
);
}
const loadingIndicator = document.getElementById("loadingIndicator");
const hasBaseLayerPicker = !defined(baseLayer);
const terrain = Terrain.fromWorldTerrain({
requestWaterMask: true,
requestVertexNormals: true,
});
let viewer;
try {
viewer = new Viewer("cesiumContainer", {
baseLayer: baseLayer,
baseLayerPicker: hasBaseLayerPicker,
scene3DOnly: endUserOptions.scene3DOnly,
requestRenderMode: true,
terrain: terrain,
});
if (hasBaseLayerPicker) {
const viewModel = viewer.baseLayerPicker.viewModel;
viewModel.selectedTerrain = viewModel.terrainProviderViewModels[1];
}
} catch (exception) {
loadingIndicator.style.display = "none";
const message = formatError(exception);
console.error(message);
if (!document.querySelector(".cesium-widget-errorPanel")) {
//eslint-disable-next-line no-alert
window.alert(message);
}
return;
}
viewer.extend(viewerDragDropMixin);
if (endUserOptions.inspector) {
viewer.extend(viewerCesiumInspectorMixin);
}
const showLoadError = function (name, error) {
const title = `An error occurred while loading the file: ${name}`;
const message =
"An error occurred while loading the file, which may indicate that it is invalid. A detailed error report is below:";
viewer.cesiumWidget.showErrorPanel(title, message, error);
};
viewer.dropError.addEventListener(function (viewerArg, name, error) {
showLoadError(name, error);
});
const scene = viewer.scene;
const context = scene.context;
if (endUserOptions.debug) {
context.validateShaderProgram = true;
context.validateFramebuffer = true;
context.logShaderCompilation = true;
context.throwOnWebGLError = true;
}
const view = endUserOptions.view;
const source = endUserOptions.source;
if (defined(source)) {
let sourceType = endUserOptions.sourceType;
if (!defined(sourceType)) {
// autodetect using file extension if not specified
if (/\.czml$/i.test(source)) {
sourceType = "czml";
} else if (
/\.geojson$/i.test(source) ||
/\.json$/i.test(source) ||
/\.topojson$/i.test(source)
) {
sourceType = "geojson";
} else if (/\.kml$/i.test(source) || /\.kmz$/i.test(source)) {
sourceType = "kml";
} else if (/\.gpx$/i.test(source) || /\.gpx$/i.test(source)) {
sourceType = "gpx";
}
}
let loadPromise;
if (sourceType === "czml") {
loadPromise = CzmlDataSource.load(source);
} else if (sourceType === "geojson") {
loadPromise = GeoJsonDataSource.load(source);
} else if (sourceType === "kml") {
loadPromise = KmlDataSource.load(source, {
camera: scene.camera,
canvas: scene.canvas,
screenOverlayContainer: viewer.container,
});
} else if (sourceType === "gpx") {
loadPromise = GpxDataSource.load(source);
} else {
showLoadError(source, "Unknown format.");
}
if (defined(loadPromise)) {
try {
const dataSource = await viewer.dataSources.add(loadPromise);
const lookAt = endUserOptions.lookAt;
if (defined(lookAt)) {
const entity = dataSource.entities.getById(lookAt);
if (defined(entity)) {
viewer.trackedEntity = entity;
} else {
const error = `No entity with id "${lookAt}" exists in the provided data source.`;
showLoadError(source, error);
}
} else if (!defined(view) && endUserOptions.flyTo !== "false") {
viewer.flyTo(dataSource);
}
} catch (error) {
showLoadError(source, error);
}
}
}
if (endUserOptions.stats) {
scene.debugShowFramesPerSecond = true;
}
const theme = endUserOptions.theme;
if (defined(theme)) {
if (endUserOptions.theme === "lighter") {
document.body.classList.add("cesium-lighter");
viewer.animation.applyThemeChanges();
} else {
const error = `Unknown theme: ${theme}`;
viewer.cesiumWidget.showErrorPanel(error, "");
}
}
if (defined(view)) {
const splitQuery = view.split(/[ ,]+/);
if (splitQuery.length > 1) {
const longitude = !isNaN(+splitQuery[0]) ? +splitQuery[0] : 0.0;
const latitude = !isNaN(+splitQuery[1]) ? +splitQuery[1] : 0.0;
const height =
splitQuery.length > 2 && !isNaN(+splitQuery[2])
? +splitQuery[2]
: 300.0;
const heading =
splitQuery.length > 3 && !isNaN(+splitQuery[3])
? CesiumMath.toRadians(+splitQuery[3])
: undefined;
const pitch =
splitQuery.length > 4 && !isNaN(+splitQuery[4])
? CesiumMath.toRadians(+splitQuery[4])
: undefined;
const roll =
splitQuery.length > 5 && !isNaN(+splitQuery[5])
? CesiumMath.toRadians(+splitQuery[5])
: undefined;
viewer.camera.setView({
destination: Cartesian3.fromDegrees(longitude, latitude, height),
orientation: {
heading: heading,
pitch: pitch,
roll: roll,
},
});
}
}
const camera = viewer.camera;
function saveCamera() {
const position = camera.positionCartographic;
let hpr = "";
if (defined(camera.heading)) {
hpr = `,${CesiumMath.toDegrees(camera.heading)},${CesiumMath.toDegrees(
camera.pitch
)},${CesiumMath.toDegrees(camera.roll)}`;
}
endUserOptions.view = `${CesiumMath.toDegrees(
position.longitude
)},${CesiumMath.toDegrees(position.latitude)},${position.height}${hpr}`;
history.replaceState(undefined, "", `?${objectToQuery(endUserOptions)}`);
}
let timeout;
if (endUserOptions.saveCamera !== "false") {
camera.changed.addEventListener(function () {
window.clearTimeout(timeout);
timeout = window.setTimeout(saveCamera, 1000);
});
}
loadingIndicator.style.display = "none";
}
main();

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Use correct character set. -->
<meta charset="utf-8" />
<!-- Tell IE to use the latest, best version. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"
/>
<title>Cesium Viewer</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="CesiumViewer.css" media="screen" />
</head>
<body style="background: #000">
<div id="cesiumContainer" class="fullWindow"></div>
<div id="loadingIndicator" class="loadingIndicator"></div>
<script src="CesiumViewer.js" type="module"></script>
</body>
</html>

View File

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Use correct character set. -->
<meta charset="utf-8" />
<!-- Tell IE to use the latest, best version. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"
/>
<title>Hello World!</title>
<script src="../Build/CesiumUnminified/Cesium.js"></script>
<style>
@import url(../Build/CesiumUnminified/Widgets/widgets.css);
html,
body,
#cesiumContainer {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<body>
<div id="cesiumContainer"></div>
<script>
const viewer = new Cesium.Viewer("cesiumContainer");
</script>
</body>
</html>

View File

@ -0,0 +1,41 @@
{
"asset": {
"version": "1.0"
},
"properties": {
"id": {
"minimum": 0,
"maximum": 9
},
"Longitude": {
"minimum": -1.3196959060375169,
"maximum": -1.3196607462778132
},
"Latitude": {
"minimum": 0.6988590050687061,
"maximum": 0.6988864387845588
},
"Height": {
"minimum": 6.1022464875131845,
"maximum": 13.410263679921627
}
},
"geometricError": 70,
"root": {
"refine": "ADD",
"boundingVolume": {
"region": [
-1.3197004795898053,
0.6988582109,
-1.3196595204101946,
0.6988897891,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "batchedColors.b3dm"
}
}
}

View File

@ -0,0 +1,41 @@
{
"asset": {
"version": "1.0"
},
"properties": {
"id": {
"minimum": 0,
"maximum": 9
},
"Longitude": {
"minimum": -1.3196959060375169,
"maximum": -1.3196607462778132
},
"Latitude": {
"minimum": 0.6988590050687061,
"maximum": 0.6988864387845588
},
"Height": {
"minimum": 6.1022464875131845,
"maximum": 13.410263679921627
}
},
"geometricError": 70,
"root": {
"refine": "ADD",
"boundingVolume": {
"region": [
-1.3197004795898053,
0.6988582109,
-1.3196595204101946,
0.6988897891,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "batchedTranslucent.b3dm"
}
}
}

View File

@ -0,0 +1,41 @@
{
"asset": {
"version": "1.0"
},
"properties": {
"id": {
"minimum": 0,
"maximum": 9
},
"Longitude": {
"minimum": -1.3196959060375169,
"maximum": -1.3196607462778132
},
"Latitude": {
"minimum": 0.6988590050687061,
"maximum": 0.6988864387845588
},
"Height": {
"minimum": 6.1022464875131845,
"maximum": 13.410263679921627
}
},
"geometricError": 70,
"root": {
"refine": "ADD",
"boundingVolume": {
"region": [
-1.3197004795898053,
0.6988582109,
-1.3196595204101946,
0.6988897891,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "batchedTranslucentOpaqueMix.b3dm"
}
}
}

View File

@ -0,0 +1,41 @@
{
"asset": {
"version": "1.0"
},
"properties": {
"id": {
"minimum": 0,
"maximum": 9
},
"Longitude": {
"minimum": -1.3196959060375169,
"maximum": -1.3196607462778132
},
"Latitude": {
"minimum": 0.6988590050687061,
"maximum": 0.6988864387845588
},
"Height": {
"minimum": 6.1022464875131845,
"maximum": 13.410263679921627
}
},
"geometricError": 70,
"root": {
"refine": "ADD",
"boundingVolume": {
"region": [
-1.3197004795898053,
0.6988582109,
-1.3196595204101946,
0.6988897891,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "batchedWithBatchTable.b3dm"
}
}
}

View File

@ -0,0 +1,31 @@
{
"asset": {
"version": "1.0",
"tilesetVersion": "1.0"
},
"properties": {
"Longitude": {
"minimum": -1.3194245623155147,
"maximum": -1.3194092552469474
},
"Latitude": {
"minimum": 0.6988049305192636,
"maximum": 0.6988185175658763
},
"Height": {
"minimum": 73.0000006258161,
"maximum": 102.999890661765747
}
},
"geometricError": 1000.0,
"root": {
"boundingVolume": {
"region": [-1.3194315762936881, 0.6987998244450816, -1.3194015908860113, 0.6988235397748883, 73.0000006258161, 102.999890661765747]
},
"geometricError": 0,
"refine": "ADD",
"content": {
"uri": "content.b3dm"
}
}
}

View File

@ -0,0 +1,41 @@
{
"asset": {
"version": "1.0"
},
"geometricError": 1000,
"root": {
"boundingVolume": {
"region": [
0.05106109590840974,
0.8096200283483475,
0.05108367303398731,
0.809642605473925,
313.24,
513.24
]
},
"transform": [
-0.05105018459701556,
0.9986960892346634,
0,
0,
-0.7230889943688711,
-0.036962021820761914,
0.6897652609152887,
0,
0.6888658685660259,
0.03521264389833409,
0.7240330688818458,
0,
4401696.395347578,
225000.79448064446,
4595435.890447363,
1
],
"geometricError": 0,
"refine": "REPLACE",
"content": {
"uri": "content.geom"
}
}
}

View File

@ -0,0 +1,41 @@
{
"asset": {
"version": "1.0"
},
"properties": {
"id": {
"minimum": 0,
"maximum": 9
},
"Longitude": {
"minimum": -1.3196959060375169,
"maximum": -1.3196607462778132
},
"Latitude": {
"minimum": 0.6988590050687061,
"maximum": 0.6988864387845588
},
"Height": {
"minimum": 6.1022464875131845,
"maximum": 20
}
},
"geometricError": 70,
"root": {
"refine": "ADD",
"boundingVolume": {
"region": [
-1.3197004795898053,
0.6988582109,
-1.3196595204101946,
0.6988897891,
0,
30
]
},
"geometricError": 0,
"content": {
"uri": "composite.cmpt"
}
}
}

View File

@ -0,0 +1,53 @@
{
"asset": {
"version": "1.0"
},
"geometricError": 70,
"root": {
"transform": [
0.9686356343768792,
0.24848542777253735,
0,
0,
-0.15986460744966327,
0.623177611820219,
0.765567091384559,
0,
0.19023226619126932,
-0.7415555652213445,
0.6433560667227647,
0,
1215011.9317263428,
-4736309.3434217675,
4081602.0044800863,
1
],
"refine": "ADD",
"boundingVolume": {
"box": [
0,
0,
10,
50,
0,
0,
0,
50,
0,
0,
0,
10
]
},
"geometricError": 0,
"content": {
"uri": "tile.b3dm"
}
},
"extensionsUsed": [
"3DTILES_batch_table_hierarchy"
],
"extensionsRequired": [
"3DTILES_batch_table_hierarchy"
]
}

View File

@ -0,0 +1,29 @@
{
"asset": {
"version": "1.0"
},
"properties": {
"Height": {
"minimum": 20,
"maximum": 20
}
},
"geometricError": 70,
"root": {
"refine": "ADD",
"boundingVolume": {
"region": [
-1.3197004795898053,
0.6988582109,
-1.3196595204101946,
0.6988897891,
0,
30
]
},
"geometricError": 0,
"content": {
"uri": "instancedOrientation.i3dm"
}
}
}

View File

@ -0,0 +1,29 @@
{
"asset": {
"version": "1.0"
},
"properties": {
"Height": {
"minimum": 20,
"maximum": 20
}
},
"geometricError": 70,
"root": {
"refine": "ADD",
"boundingVolume": {
"region": [
-1.3197004795898053,
0.6988582109,
-1.3196595204101946,
0.6988897891,
0,
30
]
},
"geometricError": 0,
"content": {
"uri": "instancedWithBatchTable.i3dm"
}
}
}

View File

@ -0,0 +1,21 @@
{
"asset": {
"version": "1.0"
},
"geometricError": 17.32,
"root": {
"refine": "ADD",
"boundingVolume": {
"sphere": [
1215012.8828876738,
-4736313.051199594,
4081605.22126042,
5
]
},
"geometricError": 0,
"content": {
"uri": "pointCloudBatched.pnts"
}
}
}

View File

@ -0,0 +1,21 @@
{
"asset": {
"version": "1.0"
},
"geometricError": 17.32,
"root": {
"refine": "ADD",
"boundingVolume": {
"sphere": [
1215012.8828876738,
-4736313.051199594,
4081605.22126042,
5
]
},
"geometricError": 0,
"content": {
"uri": "pointCloudConstantColor.pnts"
}
}
}

View File

@ -0,0 +1,27 @@
{
"asset": {
"version": "1.0"
},
"extensionsUsed": [
"3DTILES_draco_point_compression"
],
"extensionsRequired": [
"3DTILES_draco_point_compression"
],
"geometricError": 17.32,
"root": {
"refine": "ADD",
"boundingVolume": {
"sphere": [
1215012.8828876738,
-4736313.051199594,
4081605.22126042,
5
]
},
"geometricError": 0,
"content": {
"uri": "pointCloudDraco.pnts"
}
}
}

View File

@ -0,0 +1,21 @@
{
"asset": {
"version": "1.0"
},
"geometricError": 17.32,
"root": {
"refine": "ADD",
"boundingVolume": {
"sphere": [
1215012.8828876738,
-4736313.051199594,
4081605.22126042,
5
]
},
"geometricError": 0,
"content": {
"uri": "pointCloudNormals.pnts"
}
}
}

View File

@ -0,0 +1,21 @@
{
"asset": {
"version": "1.0"
},
"geometricError": 17.32,
"root": {
"refine": "ADD",
"boundingVolume": {
"sphere": [
1215012.8828876738,
-4736313.051199594,
4081605.22126042,
5
]
},
"geometricError": 0,
"content": {
"uri": "pointCloudRGB.pnts"
}
}
}

View File

@ -0,0 +1,39 @@
{
"asset": {
"version": "1.0"
},
"geometricError": 17.32,
"root": {
"transform": [
0.968635634376879,
0.24848542777253735,
0,
0,
-0.15986460794399626,
0.6231776137472074,
0.7655670897127491,
0,
0.190232265775849,
-0.7415555636019701,
0.6433560687121489,
0,
1215012.8828876738,
-4736313.051199594,
4081605.22126042,
1
],
"refine": "ADD",
"boundingVolume": {
"sphere": [
0,
0,
0,
5
]
},
"geometricError": 0,
"content": {
"uri": "pointCloudWithPerPointProperties.pnts"
}
}
}

View File

@ -0,0 +1,124 @@
{
"asset": {
"version": "1.0",
"tilesetVersion": "1.2.3"
},
"extras": {
"name": "Sample Tileset"
},
"properties": {
"id": {
"minimum": 0,
"maximum": 9
},
"Longitude": {
"minimum": -1.3197192952275933,
"maximum": -1.319644104024109
},
"Latitude": {
"minimum": 0.698848878034009,
"maximum": 0.6989046192460953
},
"Height": {
"minimum": 6.161747192963958,
"maximum": 85.41026367992163
}
},
"geometricError": 240,
"root": {
"boundingVolume": {
"region": [
-1.3197209591796106,
0.6988424218,
-1.3196390408203893,
0.6989055782,
0,
88
]
},
"geometricError": 70,
"refine": "ADD",
"content": {
"uri": "parent.b3dm",
"boundingVolume": {
"region": [
-1.3197004795898053,
0.6988582109,
-1.3196595204101946,
0.6988897891,
0,
88
]
}
},
"children": [
{
"boundingVolume": {
"region": [
-1.3197209591796106,
0.6988424218,
-1.31968,
0.698874,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "ll.b3dm"
}
},
{
"boundingVolume": {
"region": [
-1.31968,
0.6988424218,
-1.3196390408203893,
0.698874,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "lr.b3dm"
},
"extras": {
"id": "Special Tile"
}
},
{
"boundingVolume": {
"region": [
-1.31968,
0.698874,
-1.3196390408203893,
0.6989055782,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "ur.b3dm"
}
},
{
"boundingVolume": {
"region": [
-1.3197209591796106,
0.698874,
-1.31968,
0.6989055782,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "ul.b3dm"
}
}
]
}
}

View File

@ -0,0 +1,126 @@
{
"asset": {
"version": "1.0"
},
"geometricError": 240,
"root": {
"boundingVolume": {
"region": [
-1.3197209591796106,
0.6988424218,
-1.3196390408203893,
0.6989055782,
0,
20
]
},
"geometricError": 70,
"refine": "ADD",
"children": [
{
"boundingVolume": {
"region": [
-1.3197209591796106,
0.6988424218,
-1.31968,
0.698874,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "ll.b3dm"
}
},
{
"boundingVolume": {
"region": [
-1.31968,
0.6988424218,
-1.3196390408203893,
0.698874,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "lr.b3dm"
}
},
{
"boundingVolume": {
"region": [
-1.31968,
0.698874,
-1.3196390408203893,
0.6989055782,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "ur.b3dm"
}
},
{
"boundingVolume": {
"region": [
-1.3197209591796106,
0.698874,
-1.31968,
0.6989055782,
0,
20
]
},
"geometricError": 0,
"content": {
"uri": "ul.b3dm"
}
},
{
"transform": [
0.9686356343768793,
0.24848542777253738,
0,
0,
-0.1598646089326599,
0.6231776176011753,
0.7655670863691378,
0,
0.19023226494501025,
-0.7415555603632288,
0.643356072690908,
0,
1215014.7852103356,
-4736320.466755246,
4081611.654821087,
1
],
"viewerRequestVolume": {
"sphere": [
0,
0,
0,
1000
]
},
"boundingVolume": {
"sphere": [
0,
0,
0,
10
]
},
"geometricError": 0,
"content": {
"uri": "points.pnts"
}
}
]
}
}

View File

@ -0,0 +1,14 @@
{
"tileAvailability": {
"availableCount": 1,
"constant": 1
},
"contentAvailability": {
"availableCount": 1,
"constant": 1
},
"childSubtreeAvailability": {
"availableCount": 0,
"constant": 0
}
}

View File

@ -0,0 +1,27 @@
{
"buffers": [
{
"uri": "a.bin",
"byteLength": 32
}
],
"bufferViews": [
{
"buffer": 0,
"byteOffset": 0,
"byteLength": 32
}
],
"propertyTables": [
{
"class": "voxel",
"count": 8,
"properties": {
"a": {
"values": 0
}
}
}
],
"voxelTable": 0
}

View File

@ -0,0 +1,79 @@
{
"asset": {
"version": "1.1"
},
"schema": {
"id": "voxel",
"classes": {
"voxel": {
"properties": {
"a": {
"type": "SCALAR",
"componentType": "FLOAT32"
}
}
}
}
},
"statistics": {
"classes": {
"voxel": {
"count": 8,
"properties": {
"a": {
"min": 0.0,
"max": 1.0
}
}
}
}
},
"geometricError": 0.0,
"root": {
"boundingVolume": {
"box": [
0.0,
0.0,
0.0,
1.0,
0.0,
0.0,
0.0,
1.0,
0.0,
0.0,
0.0,
1.0
]
},
"geometricError": 0.0,
"refine": "REPLACE",
"content": {
"uri": "tiles/{level}/{x}/{y}/{z}.json",
"extensions": {
"3DTILES_content_voxels": {
"dimensions": [
2,
2,
2
],
"class": "voxel"
}
}
},
"implicitTiling": {
"subdivisionScheme": "OCTREE",
"subtreeLevels": 3,
"availableLevels": 1,
"subtrees": {
"uri": "subtrees/{level}/{x}/{y}/{z}.json"
}
}
},
"extensionsUsed": [
"3DTILES_content_voxels"
],
"extensionsRequired": [
"3DTILES_content_voxels"
]
}

View File

@ -0,0 +1,14 @@
{
"tileAvailability": {
"availableCount": 1,
"constant": 1
},
"contentAvailability": {
"availableCount": 1,
"constant": 1
},
"childSubtreeAvailability": {
"availableCount": 0,
"constant": 0
}
}

View File

@ -0,0 +1,27 @@
{
"buffers": [
{
"uri": "a.bin",
"byteLength": 32
}
],
"bufferViews": [
{
"buffer": 0,
"byteOffset": 0,
"byteLength": 32
}
],
"propertyTables": [
{
"class": "voxel",
"count": 8,
"properties": {
"a": {
"values": 0
}
}
}
],
"voxelTable": 0
}

View File

@ -0,0 +1,85 @@
{
"asset": {
"version": "1.1"
},
"schema": {
"id": "voxel",
"classes": {
"voxel": {
"properties": {
"a": {
"type": "SCALAR",
"componentType": "FLOAT32"
}
}
}
}
},
"statistics": {
"classes": {
"voxel": {
"count": 8,
"properties": {
"a": {
"min": 0.0,
"max": 1.0
}
}
}
}
},
"geometricError": 0.0,
"root": {
"boundingVolume": {
"extensions": {
"3DTILES_bounding_volume_cylinder": {
"cylinder": [
0.0,
0.0,
0.0,
1.0,
0.0,
0.0,
0.0,
1.0,
0.0,
0.0,
0.0,
1.0
]
}
}
},
"geometricError": 0.0,
"refine": "REPLACE",
"content": {
"uri": "tiles/{level}/{x}/{y}/{z}.json",
"extensions": {
"3DTILES_content_voxels": {
"dimensions": [
2,
2,
2
],
"class": "voxel"
}
}
},
"implicitTiling": {
"subdivisionScheme": "OCTREE",
"subtreeLevels": 3,
"availableLevels": 1,
"subtrees": {
"uri": "subtrees/{level}/{x}/{y}/{z}.json"
}
}
},
"extensionsUsed": [
"3DTILES_content_voxels",
"3DTILES_bounding_volume_cylinder"
],
"extensionsRequired": [
"3DTILES_content_voxels",
"3DTILES_bounding_volume_cylinder"
]
}

View File

@ -0,0 +1,14 @@
{
"tileAvailability": {
"availableCount": 1,
"constant": 1
},
"contentAvailability": {
"availableCount": 1,
"constant": 1
},
"childSubtreeAvailability": {
"availableCount": 0,
"constant": 0
}
}

View File

@ -0,0 +1,27 @@
{
"buffers": [
{
"uri": "a.bin",
"byteLength": 32
}
],
"bufferViews": [
{
"buffer": 0,
"byteOffset": 0,
"byteLength": 32
}
],
"propertyTables": [
{
"class": "voxel",
"count": 8,
"properties": {
"a": {
"values": 0
}
}
}
],
"voxelTable": 0
}

View File

@ -0,0 +1,73 @@
{
"asset": {
"version": "1.1"
},
"schema": {
"id": "voxel",
"classes": {
"voxel": {
"properties": {
"a": {
"type": "SCALAR",
"componentType": "FLOAT32"
}
}
}
}
},
"statistics": {
"classes": {
"voxel": {
"count": 8,
"properties": {
"a": {
"min": 0.0,
"max": 1.0
}
}
}
}
},
"geometricError": 0.0,
"root": {
"boundingVolume": {
"region": [
0.0,
0.0,
1.0,
1.0,
-1.0,
0.0
]
},
"geometricError": 0.0,
"refine": "REPLACE",
"content": {
"uri": "tiles/{level}/{x}/{y}/{z}.json",
"extensions": {
"3DTILES_content_voxels": {
"dimensions": [
2,
2,
2
],
"class": "voxel"
}
}
},
"implicitTiling": {
"subdivisionScheme": "OCTREE",
"subtreeLevels": 3,
"availableLevels": 1,
"subtrees": {
"uri": "subtrees/{level}/{x}/{y}/{z}.json"
}
}
},
"extensionsUsed": [
"3DTILES_content_voxels"
],
"extensionsRequired": [
"3DTILES_content_voxels"
]
}

View File

@ -0,0 +1,80 @@
[
{
"id": "document",
"version": "1.0",
"clock": {
"interval": "2018-07-19T15:18:00Z/2018-07-19T15:18:30Z",
"currentTime": "2018-07-19T15:18:00Z",
"multiplier": 2,
"range": "LOOP_STOP",
"step": "SYSTEM_CLOCK_MULTIPLIER"
}
},
{
"id": "CesiumMilkTruck",
"model": {
"gltf": "models/CesiumMilkTruck/CesiumMilkTruck.glb"
},
"position": {
"interpolationAlgorithm": "LINEAR",
"forwardExtrapolationType": "HOLD",
"cartesian": [
"2018-07-19T15:18:00Z",
1216327.3893347275,
-4736164.778028102,
4081507.5209477833,
"2018-07-19T15:18:10Z",
1216369.543258349,
-4736201.237448179,
4081447.3732212726,
"2018-07-19T15:18:20Z",
1216434.7507773656,
-4736241.372142024,
4081386.1802605274,
"2018-07-19T15:18:30Z",
1216525.7792628652,
-4736271.927759278,
4081319.744558958
]
},
"orientation": {
"unitQuaternion": [
0.3084011337938999,
0.3210181022701266,
-0.45850421987074924,
0.7686388857813198
]
}
},
{
"id": "Polyline",
"polyline": {
"positions": {
"cartesian": [
1216327.3893347275,
-4736164.778028102,
4081507.5209477833,
1216369.543258349,
-4736201.237448179,
4081447.3732212726,
1216434.7507773656,
-4736241.372142024,
4081386.1802605274,
1216525.7792628652,
-4736271.927759278,
4081319.744558958
]
},
"material": {
"polylineOutline": {
"color": {
"rgba": [100, 149, 237, 140]
},
"outlineWidth": 0
}
},
"width": 12,
"clampToGround": true
}
}
]

View File

@ -0,0 +1,244 @@
[
{
"id":"document",
"version":"1.0"
},
{
"id":"Vehicle",
"availability":"2012-08-04T16:00:00Z/2012-08-04T17:04:54.9962195740191Z",
"label":{
"fillColor":[
{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"rgba":[
255,255,0,255
]
}
],
"font":"bold 10pt Segoe UI Semibold",
"horizontalOrigin":"CENTER",
"outlineColor":{
"rgba":[
0,0,0,255
]
},
"pixelOffset":{
"cartesian2":[
0.0,20.0
]
},
"scale":1.0,
"show":[
{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"boolean":true
}
],
"style":"FILL",
"text":"Test Vehicle",
"verticalOrigin":"CENTER"
},
"model":{
"gltf":"models/CesiumMilkTruck/CesiumMilkTruck.glb",
"minimumPixelSize":100,
"maximumScale":50
},
"orientation" : {
"velocityReference": "#position"
},
"viewFrom": {
"cartesian": [ -2080, -1715, 779 ]
},
"properties" : {
"fuel_remaining" : {
"epoch":"2012-08-04T16:00:00Z",
"number": [
0, 22.5,
1500, 21.2
]
}
},
"path":{
"material":{
"solidColor":{
"color":{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"rgba":[
255,255,0,255
]
}
}
},
"width":[
{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"number":5.0
}
],
"show":[
{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"boolean":true
}
]
},
"position":{
"interpolationAlgorithm":"LAGRANGE",
"interpolationDegree":1,
"epoch":"2012-08-04T16:00:00Z",
"cartesian":[
0.0,-2379754.6637012,-4665332.88013588,3628133.68924173,
10.0,-2379510.08905552,-4665419.64840452,3628182.20006795,
20.0,-2379568.4769522,-4665555.3441867,3627970.83323261,
30.0,-2379638.93786855,-4665691.63561896,3627750.82085873,
40.0,-2379709.29834665,-4665827.9679646,3627530.80187124,
50.0,-2379837.28064915,-4665847.7494347,3627422.12874017,
60.0,-2379624.98289073,-4665907.50853722,3627484.1191848,
70.0,-2379386.12743523,-4666029.54174431,3627483.83297459,
80.0,-2379147.26777171,-4666151.56669944,3627483.5403492,
90.0,-2378908.40390057,-4666273.58340244,3627483.24130864,
1e2,-2378663.69301645,-4666379.62408751,3627507.14485116,
110.0,-2378416.29648478,-4666444.93145547,3627584.82610021,
120.0,-2378184.75115833,-4666458.05260387,3627718.84628509,
130.0,-2377958.22637221,-4666461.11592729,3627862.42864636,
140.0,-2377733.79758374,-4666460.508441,3628009.31669747,
150.0,-2377509.36460154,-4666459.89268533,3628156.19830638,
160.0,-2377284.92742603,-4666459.26866028,3628303.07347284,
170.0,-2377060.48605759,-4666458.63636585,3628449.9421966,
180.0,-2376835.38472681,-4666459.12413084,3628595.78980713,
190.0,-2376609.71084875,-4666460.58154837,3628740.75156098,
2e2,-2376384.03277903,-4666462.03069678,3628885.70687201,
210.0,-2376158.35051806,-4666463.47157605,3629030.65573998,
220.0,-2375928.48736859,-4666473.69575712,3629167.08552075,
230.0,-2375685.23921682,-4666516.66377513,3629270.3788586,
240.0,-2375437.34307768,-4666580.50029931,3629350.0215939,
250.0,-2375189.01133306,-4666646.99320452,3629426.53515423,
260.0,-2374940.52675783,-4666719.29042452,3629495.71527129,
270.0,-2374695.15633549,-4666818.94185605,3629527.91579302,
280.0,-2374469.42323533,-4666959.02687352,3629495.69349509,
290.0,-2374249.06659405,-4667105.51477438,3629451.77975513,
3e2,-2374028.70574724,-4667251.99442379,3629407.85959417,
310.0,-2373808.3406953,-4667398.46582147,3629363.9330123,
320.0,-2373585.10773309,-4667542.05948567,3629325.52597676,
330.0,-2373360.83645524,-4667684.60869937,3629289.10800226,
340.0,-2373136.5609746,-4667827.1496603,3629252.68360778,
350.0,-2372912.28129155,-4667969.68236819,3629216.25279339,
360.0,-2372687.9974065,-4668112.20682281,3629179.81555915,
370.0,-2372463.70931983,-4668254.72302389,3629143.37190511,
380.0,-2372239.41703195,-4668397.2309712,3629106.92183136,
390.0,-2372018.7615611,-4668543.12509124,3629063.76398058,
4e2,-2371803.72586004,-4668694.25404103,3629010.24868951,
410.0,-2371587.17705087,-4668844.01756398,3628959.44085712,
420.0,-2371365.33472237,-4668989.01539779,3628918.13984128,
430.0,-2371134.7547923,-4669122.83460485,3628896.77687771,
440.0,-2370898.14635373,-4669248.94021679,3628889.16522147,
450.0,-2370660.31892949,-4669372.89697404,3628885.07134974,
460.0,-2370422.47459187,-4669496.82305927,3628881.00796265,
470.0,-2370184.62606153,-4669620.7408867,3628876.93815788,
480.0,-2369946.77333888,-4669744.65045611,3628872.86193545,
490.0,-2369708.91642433,-4669868.55176729,3628868.77929537,
5e2,-2369471.05531832,-4669992.44482001,3628864.69023764,
510.0,-2369233.19002126,-4670116.32961405,3628860.59476226,
520.0,-2368989.65950726,-4670225.94237244,3628878.39787596,
530.0,-2368742.64810033,-4670324.93393451,3628912.01606989,
540.0,-2368494.95906007,-4670419.65546435,3628951.51257903,
550.0,-2368248.2848424,-4670519.53079746,3628983.74302284,
560.0,-2368001.37437725,-4670618.8319301,3629016.84097985,
570.0,-2367753.95809484,-4670715.82368808,3629053.19940679,
580.0,-2367506.53762994,-4670812.80718267,3629089.55141416,
590.0,-2367259.11298298,-4670909.78241366,3629125.89700192,
6e2,-2367011.6841544,-4671006.74938092,3629162.23617,
610.0,-2366764.25114462,-4671103.70808425,3629198.56891833,
620.0,-2366516.81395411,-4671200.6585235,3629234.89524684,
630.0,-2366269.37258329,-4671297.60069848,3629271.21515549,
640.0,-2366021.9270326,-4671394.53460904,3629307.52864419,
650.0,-2365774.47730247,-4671491.460255,3629343.8357129,
660.0,-2365527.02339333,-4671588.37763618,3629380.13636155,
670.0,-2365279.56530564,-4671685.28675242,3629416.43059006,
680.0,-2365032.10303983,-4671782.18760355,3629452.71839837,
690.0,-2364784.63659633,-4671879.0801894,3629488.99978644,
7e2,-2364537.16597558,-4671975.96450979,3629525.27475418,
710.0,-2364289.69117801,-4672072.84056456,3629561.54330154,
720.0,-2364042.21220407,-4672169.70835353,3629597.80542845,
730.0,-2363794.72905419,-4672266.56787654,3629634.06113485,
740.0,-2363547.2417288,-4672363.41913342,3629670.31042068,
750.0,-2363299.75022835,-4672460.26212398,3629706.55328587,
760.0,-2363052.25455328,-4672557.09684808,3629742.78973036,
770.0,-2362805.96213832,-4672658.44235501,3629772.46055,
780.0,-2362566.28756432,-4672777.84646024,3629774.74120741,
790.0,-2362330.01543718,-4672904.47715606,3629765.56158533,
8e2,-2362093.73913086,-4673031.09958839,3629756.37554393,
810.0,-2361857.4586458,-4673157.71375702,3629747.18308323,
820.0,-2361621.17398239,-4673284.31966172,3629737.98420324,
830.0,-2361379.13396171,-4673398.62592987,3629748.21496888,
840.0,-2361130.58722369,-4673488.59963461,3629793.74986512,
850.0,-2360881.58098042,-4673573.14384665,3629846.50583809,
860.0,-2360632.51954154,-4673657.07225834,3629900.06533886,
870.0,-2360383.45393477,-4673740.99239963,3629953.61841672,
880.0,-2360134.38416057,-4673824.90427038,3630007.16507155,
890.0,-2359885.31021938,-4673908.80787044,3630060.70530326,
9e2,-2359636.23211162,-4673992.70319966,3630114.23911177,
910.0,-2359387.14983775,-4674076.5902579,3630167.76649697,
920.0,-2359138.06339821,-4674160.469045,3630221.28745878,
930.0,-2358889.14548278,-4674246.80164025,3630271.54165003,
940.0,-2358640.17887385,-4674332.39488805,3630322.75317441,
950.0,-2358391.03374684,-4674415.32432296,3630377.46713032,
960.0,-2358141.88445605,-4674498.24548602,3630432.17466229,
970.0,-2357892.7310019,-4674581.15837706,3630486.87577026,
980.0,-2357643.59031994,-4674664.39449658,3630541.13554932,
990.0,-2357394.48770584,-4674748.44899573,3630594.30439711,
1e3,-2357145.38092955,-4674832.4952226,3630647.46682079,
1010.0,-2356896.26999152,-4674916.53317705,3630700.62282028,
1020.0,-2356647.15489217,-4675000.56285892,3630753.77239547,
1030.0,-2356398.03563196,-4675084.58426807,3630806.91554629,
1040.0,-2356148.91221132,-4675168.59740435,3630860.05227262,
1050.0,-2355899.78463069,-4675252.60226762,3630913.18257437,
1060.0,-2355650.65289051,-4675336.59885772,3630966.30645147,
1070.0,-2355401.51699122,-4675420.58717452,3631019.42390381,
1080.0,-2355152.37693328,-4675504.56721785,3631072.5349313,
1090.0,-2354903.2327171,-4675588.53898758,3631125.63953384,
1.1e3,-2354654.08434313,-4675672.50248355,3631178.73771134,
1110.0,-2354404.86337217,-4675754.50046618,3631234.37690825,
1120.0,-2354155.84214723,-4675830.29554952,3631297.80148619,
1130.0,-2353909.99308372,-4675880.61174319,3631391.75187422,
1140.0,-2353667.55938687,-4675917.7532863,3631500.33400567,
1150.0,-2353425.14548842,-4675954.80919402,3631608.99321685,
1160.0,-2353182.7274392,-4675991.85682064,3631717.64599126,
1170.0,-2352940.30523964,-4676028.89616608,3631826.29232871,
1180.0,-2352697.87889015,-4676065.92723028,3631934.93222899,
1190.0,-2352455.44839119,-4676102.95001317,3632043.56569193,
1.2e3,-2352213.01374317,-4676139.9645147,3632152.19271733,
1210.0,-2351970.57494653,-4676176.97073479,3632260.81330501,
1220.0,-2351728.13200169,-4676213.96867339,3632369.42745476,
1230.0,-2351485.68490907,-4676250.95833043,3632478.03516641,
1240.0,-2351243.23366913,-4676287.93970586,3632586.63643975,
1250.0,-2351000.77828228,-4676324.91279958,3632695.2312746,
1260.0,-2350758.31874895,-4676361.87761156,3632803.81967077,
1270.0,-2350515.85506957,-4676398.83414172,3632912.40162807,
1280.0,-2350273.38724458,-4676435.78239001,3633020.9771463,
1290.0,-2350029.47875804,-4676477.3914753,3633124.49944636,
1.3e3,-2349785.42349382,-4676519.45587927,3633227.51421022,
1310.0,-2349541.36408501,-4676561.51200187,3633330.52253589,
1320.0,-2349297.30053206,-4676603.55984302,3633433.52442318,
1330.0,-2349053.2328354,-4676645.59940266,3633536.51987191,
1340.0,-2348809.16099546,-4676687.63068071,3633639.50888189,
1350.0,-2348565.08501267,-4676729.65367709,3633742.49145297,
1360.0,-2348321.00488746,-4676771.66839174,3633845.46758493,
1370.0,-2348076.92062027,-4676813.67482458,3633948.43727762,
1380.0,-2347832.83221153,-4676855.67297554,3634051.40053084,
1390.0,-2347588.73966167,-4676897.66284454,3634154.35734442,
1.4e3,-2347344.64297113,-4676939.64443151,3634257.30771818,
1410.0,-2347101.04731466,-4676979.96034855,3634362.04616856,
1420.0,-2346858.26575513,-4677017.5834931,3634469.6847769,
1430.0,-2346614.99348312,-4677056.89461847,3634575.46081166,
1440.0,-2346369.55744615,-4677103.7262244,3634672.99207759,
1450.0,-2346124.8248997,-4677147.9423086,3634773.39569376,
1460.0,-2345880.74403986,-4677189.73374292,3634876.46090671,
1470.0,-2345636.65904236,-4677231.51689469,3634979.51967852,
1480.0,-2345392.56990766,-4677273.29176384,3635082.57200902,
1490.0,-2345148.47663614,-4677315.05835029,3635185.61789803,
1.5e3,-2344904.37922829,-4677356.81665397,3635288.65734536
]
}
}
]

View File

@ -0,0 +1,174 @@
[
{
"id":"document",
"version":"1.0"
},
{
"id":"Vehicle",
"properties" : {
"fuel_remaining" : {
"epoch":"2012-08-04T16:00:00Z",
"number": [
3000, 19.9
]
}
},
"position":{
"interpolationAlgorithm":"LAGRANGE",
"interpolationDegree":1,
"epoch":"2012-08-04T16:00:00Z",
"cartesian":[
1510.0,-2344660.2776845,-4677398.56667482,3635391.69035084,
1520.0,-2344416.17200522,-4677440.30841274,3635494.71691428,
1530.0,-2344172.06219089,-4677482.04186768,3635597.7370355,
1540.0,-2343927.94824192,-4677523.76703957,3635700.75071434,
1550.0,-2343683.83015876,-4677565.48392832,3635803.75795058,
1560.0,-2343439.70794184,-4677607.19253388,3635906.75874406,
1570.0,-2343195.58159159,-4677648.89285615,3636009.75309461,
1580.0,-2342951.45110844,-4677690.58489508,3636112.74100204,
1590.0,-2342707.31649283,-4677732.2686506,3636215.72246616,
1.6e3,-2342463.17774519,-4677773.94412263,3636318.6974868,
1610.0,-2342219.03486595,-4677815.61131108,3636421.66606378,
1620.0,-2341974.88785554,-4677857.2702159,3636524.6281969,
1630.0,-2341730.7367144,-4677898.92083702,3636627.583886,
1640.0,-2341486.58144295,-4677940.56317435,3636730.5331309,
1650.0,-2341242.42204163,-4677982.19722784,3636833.4759314,
1660.0,-2340998.25851088,-4678023.8229974,3636936.41228734,
1670.0,-2340754.09085112,-4678065.44048297,3637039.34219853,
1680.0,-2340509.91906279,-4678107.04968447,3637142.26566479,
1690.0,-2340265.74314632,-4678148.65060182,3637245.18268593,
1.7e3,-2340021.56310214,-4678190.24323497,3637348.09326179,
1710.0,-2339777.37893069,-4678231.82758383,3637450.99739218,
1720.0,-2339533.1906324,-4678273.40364834,3637553.8950769,
1730.0,-2339288.99820769,-4678314.97142841,3637656.7863158,
1740.0,-2339044.80165702,-4678356.530924,3637759.67110868,
1750.0,-2338800.60098079,-4678398.082135,3637862.54945536,
1760.0,-2338554.70615885,-4678446.63979812,3637957.53985359,
1770.0,-2338307.34044549,-4678501.27725608,3638045.68346556,
1780.0,-2338059.970607,-4678555.90643107,3638133.82063425,
1790.0,-2337812.5966438,-4678610.527323,3638221.9513595,
1.8e3,-2337565.21855632,-4678665.13993177,3638310.07564116,
1810.0,-2337317.836345,-4678719.74425728,3638398.19347906,
1820.0,-2337070.45001029,-4678774.34029945,3638486.30487305,
1830.0,-2336823.05955262,-4678828.92805817,3638574.40982299,
1840.0,-2336575.66497242,-4678883.50753334,3638662.50832871,
1850.0,-2336327.1545835,-4678945.50581105,3638741.82308353,
1860.0,-2336079.08419082,-4679004.31007705,3638824.91716907,
1870.0,-2335832.84388937,-4679053.5438294,3638919.0484984,
1880.0,-2335586.22540763,-4679104.36395041,3639011.37515412,
1890.0,-2335339.10405755,-4679157.40812923,3639101.16216049,
1.9e3,-2335091.77487812,-4679211.48259624,3639189.74611699,
1910.0,-2334844.32516034,-4679266.14231747,3639277.63977539,
1920.0,-2334596.87132354,-4679320.79375442,3639365.52698836,
1930.0,-2334349.41336814,-4679375.436907,3639453.40775576,
1940.0,-2334101.95129458,-4679430.07177509,3639541.28207743,
1950.0,-2333854.48510331,-4679484.69835863,3639629.14995324,
1960.0,-2333607.01479475,-4679539.31665749,3639717.011383,
1970.0,-2333359.54036938,-4679593.9266716,3639804.86636658,
1980.0,-2333112.06182757,-4679648.52840084,3639892.71490381,
1990.0,-2332864.57916982,-4679703.12184515,3639980.55699455,
2e3,-2332617.09239653,-4679757.70700441,3640068.39263865,
2010.0,-2332369.60150815,-4679812.28387853,3640156.22183593,
2020.0,-2332122.10650513,-4679866.85246742,3640244.04458626,
2030.0,-2331874.6073879,-4679921.41277097,3640331.86088948,
2040.0,-2331627.10415689,-4679975.96478911,3640419.67074542,
2050.0,-2331379.59681254,-4680030.50852172,3640507.47415395,
2060.0,-2331132.08535529,-4680085.04396871,3640595.27111491,
2070.0,-2330884.56978558,-4680139.57113,3640683.06162813,
2080.0,-2330637.7285141,-4680190.9395453,3640774.43710409,
2090.0,-2330396.40663506,-4680225.151778,3640884.18994119,
2.1e3,-2330163.10529565,-4680238.35673454,3641015.64723137,
2110.0,-2329932.54342047,-4680245.95830447,3641152.4979079,
2120.0,-2329701.97743661,-4680253.55158212,3641289.34212236,
2130.0,-2329471.40734447,-4680261.13656747,3641426.1798745,
2140.0,-2329240.83314447,-4680268.71326052,3641563.01116407,
2150.0,-2329010.25483703,-4680276.28166125,3641699.83599085,
2160.0,-2328779.67242253,-4680283.84176964,3641836.65435457,
2170.0,-2328549.08590139,-4680291.3935857,3641973.46625501,
2180.0,-2328318.49527404,-4680298.9371094,3642110.27169193,
2190.0,-2328087.90054086,-4680306.47234074,3642247.07066509,
2.2e3,-2327857.30170227,-4680313.99927971,3642383.86317423,
2210.0,-2327626.69875869,-4680321.51792628,3642520.64921913,
2220.0,-2327396.09171053,-4680329.02828045,3642657.42879954,
2230.0,-2327165.48055818,-4680336.53034222,3642794.20191522,
2240.0,-2326934.86530206,-4680344.02411158,3642930.96856595,
2250.0,-2326704.24594258,-4680351.50958849,3643067.72875145,
2260.0,-2326473.62248015,-4680358.98677296,3643204.48247151,
2270.0,-2326242.99491518,-4680366.45566498,3643341.22972587,
2280.0,-2326012.36324808,-4680373.91626453,3643477.97051431,
2290.0,-2325781.72747925,-4680381.36857161,3643614.70483658,
2.3e3,-2325551.08760911,-4680388.8125862,3643751.43269243,
2310.0,-2325320.44363806,-4680396.24830829,3643888.15408163,
2320.0,-2325089.79556653,-4680403.67573787,3644024.86900394,
2330.0,-2324859.14339491,-4680411.09487493,3644161.57745912,
2340.0,-2324628.48712361,-4680418.50571946,3644298.27944692,
2350.0,-2324397.82675305,-4680425.90827145,3644434.97496711,
2360.0,-2324167.16228363,-4680433.30253088,3644571.66401943,
2370.0,-2323936.49371575,-4680440.68849774,3644708.34660367,
2380.0,-2323705.82104985,-4680448.06617203,3644845.02271957,
2390.0,-2323469.56457492,-4680467.5014928,3644969.83533712,
2.4e3,-2323221.0622471,-4680536.92026793,3645038.62868541,
2410.0,-2322977.80807152,-4680647.84474283,3645051.13992706,
2420.0,-2322736.38267079,-4680764.64879631,3645054.97445125,
2430.0,-2322494.9531628,-4680881.44457147,3645058.80252916,
2440.0,-2322246.73779559,-4680970.18567741,3645102.6916578,
2450.0,-2322002.53536924,-4681011.67497706,3645204.29544116,
2460.0,-2321760.17882828,-4681045.91276755,3645313.96140727,
2470.0,-2321513.45780318,-4681097.83227119,3645403.81543108,
2480.0,-2321264.12028187,-4681176.5278287,3645461.15182806,
2490.0,-2321016.67956395,-4681275.07588805,3645491.94679701,
2.5e3,-2320769.58665668,-4681375.58594799,3645519.99961511,
2510.0,-2320522.489649,-4681476.08772649,3645548.04598517,
2520.0,-2320275.38854134,-4681576.5812234,3645576.08590716,
2530.0,-2320027.79132447,-4681674.92626117,3645607.16040563,
2540.0,-2319780.10642819,-4681772.89945148,3645638.74505341,
2550.0,-2319532.41743371,-4681870.86435933,3645670.32325269,
2560.0,-2319284.72434146,-4681968.82098454,3645701.89500342,
2570.0,-2319037.02715189,-4682066.76932694,3645733.46030553,
2580.0,-2318789.32586542,-4682164.70938637,3645765.01915898,
2590.0,-2318542.12778997,-4682264.83612099,3645793.45100625,
2.6e3,-2318295.04606153,-4682365.47569326,3645821.1355313,
2610.0,-2318047.960237,-4682466.10698239,3645848.81360781,
2620.0,-2317814.2136072,-4682593.27748455,3645834.19098143,
2630.0,-2317595.23970305,-4682740.17783799,3645785.0493345,
2640.0,-2317367.51895524,-4682877.20966947,3645754.00173306,
2650.0,-2317125.45200646,-4682991.24847734,3645761.32874791,
2660.0,-2316877.25477931,-4683085.09280115,3645798.27256564,
2670.0,-2316627.76750724,-4683171.42599527,3645845.59470414,
2680.0,-2316378.41358519,-4683244.04371304,3645910.31301292,
2690.0,-2316132.23045195,-4683290.83587254,3646005.96208532,
2.7e3,-2315886.04323336,-4683337.61973972,3646101.60469867,
2710.0,-2315639.85192986,-4683384.3953145,3646197.24085278,
2720.0,-2315393.65654188,-4683431.1625968,3646292.8705475,
2730.0,-2315147.45706986,-4683477.92158654,3646388.49378265,
2740.0,-2314901.25351424,-4683524.67228364,3646484.11055807,
2750.0,-2314655.04587545,-4683571.41468801,3646579.72087358,
2760.0,-2314408.83415392,-4683618.14879957,3646675.32472902,
2770.0,-2314160.70351457,-4683675.04338742,3646759.15642247,
2780.0,-2313911.58484161,-4683762.87653752,3646804.12173857,
2790.0,-2313665.46479966,-4683867.13714076,3646826.2202591,
2.8e3,-2313419.44574948,-4683971.81359651,3646847.70500867,
2810.0,-2313173.422611,-4684076.48176683,3646869.18330826,
2820.0,-2312927.39538468,-4684181.14165156,3646890.65515782,
2830.0,-2312681.36407094,-4684285.79325049,3646912.12055732,
2840.0,-2312435.3286702,-4684390.43656345,3646933.57950672,
2850.0,-2312188.68106177,-4684492.14732495,3646959.14603188,
2860.0,-2311939.2573735,-4684576.69232926,3647008.34294359,
2870.0,-2311690.53184969,-4684637.85664359,3647086.91208669,
2880.0,-2311447.74208361,-4684672.93987918,3647195.00103929,
2890.0,-2311210.79617263,-4684692.62730813,3647319.03447912,
2.9e3,-2310974.46339778,-4684710.81501905,3647444.57574765,
2910.0,-2310738.12654788,-4684728.99443131,3647570.11054652,
2920.0,-2310501.78562334,-4684747.16554491,3647695.63887553,
2930.0,-2310265.44062458,-4684765.3283598,3647821.16073445,
2940.0,-2310029.09155203,-4684783.48287596,3647946.67612307,
2950.0,-2309792.7384061,-4684801.62909336,3648072.18504115,
2960.0,-2309556.38118721,-4684819.76701196,3648197.6874885,
2970.0,-2309320.01989578,-4684837.89663174,3648323.18346488,
2980.0,-2309083.65453223,-4684856.01795267,3648448.67297006,
2990.0,-2308847.28509697,-4684874.13097471,3648574.15600382,
3e3,-2308612.03960687,-4684889.78192809,3648702.05314508
]
}
}
]

View File

@ -0,0 +1,114 @@
[
{
"id":"document",
"version":"1.0"
},
{
"id":"Vehicle",
"properties" : {
"fuel_remaining" : {
"epoch":"2012-08-04T16:00:00Z",
"number": [
4500, 18.6
]
}
},
"position":{
"interpolationAlgorithm":"LAGRANGE",
"interpolationDegree":1,
"epoch":"2012-08-04T16:00:00Z",
"cartesian":[
3010.0,-2308376.92124893,-4684905.13917681,3648830.22535859,
3020.0,-2308141.79882057,-4684920.48812622,3648958.39109918,
3030.0,-2307906.6723222,-4684935.82877629,3649086.55036665,
3040.0,-2307671.54175424,-4684951.161127,3649214.70316074,
3050.0,-2307436.40711711,-4684966.48517831,3649342.84948124,
3060.0,-2307201.26841123,-4684981.80093021,3649470.98932793,
3070.0,-2306966.87575715,-4684995.59988061,3649600.57521538,
3080.0,-2306740.26452813,-4684994.89962227,3649743.74372413,
3090.0,-2306534.08725296,-4684964.25689728,3649912.24261594,
3.1e3,-2306334.50436505,-4684925.31923873,3650087.15846994,
3110.0,-2306134.91740775,-4684886.37327513,3650262.06783161,
3120.0,-2305935.32638143,-4684847.41900655,3650436.97070063,
3130.0,-2305735.73128644,-4684808.45643306,3650611.86707671,
3140.0,-2305536.13212312,-4684769.48555472,3650786.75695952,
3150.0,-2305336.52889186,-4684730.50637162,3650961.64034877,
3160.0,-2305136.92159298,-4684691.51888382,3651136.51724414,
3170.0,-2304937.31022685,-4684652.5230914,3651311.38764532,
3180.0,-2304737.69479383,-4684613.51899443,3651486.25155201,
3190.0,-2304538.07529427,-4684574.50659297,3651661.1089639,
3.2e3,-2304338.45172854,-4684535.48588711,3651835.95988067,
3210.0,-2304138.82409697,-4684496.45687691,3652010.80430203,
3220.0,-2303939.19239993,-4684457.41956245,3652185.64222766,
3230.0,-2303739.55663778,-4684418.37394379,3652360.47365726,
3240.0,-2303539.91681086,-4684379.32002102,3652535.29859051,
3250.0,-2303340.27291955,-4684340.25779419,3652710.11702711,
3260.0,-2303140.62496419,-4684301.18726339,3652884.92896676,
3270.0,-2302940.97294513,-4684262.10842868,3653059.73440913,
3280.0,-2302741.31686273,-4684223.02129014,3653234.53335393,
3290.0,-2302541.65671735,-4684183.92584784,3653409.32580085,
3.3e3,-2302341.99250935,-4684144.82210185,3653584.11174957,
3310.0,-2302142.32423908,-4684105.71005224,3653758.8911998,
3320.0,-2301942.65190688,-4684066.5896991,3653933.66415121,
3330.0,-2301742.97551314,-4684027.46104248,3654108.43060351,
3340.0,-2301543.29505819,-4683988.32408245,3654283.19055638,
3350.0,-2301343.61054239,-4683949.1788191,3654457.94400952,
3360.0,-2301143.6827542,-4683910.31378064,3654632.47326169,
3370.0,-2300935.59009252,-4683881.78114292,3654798.93579703,
3380.0,-2300718.00641879,-4683866.2483759,3654954.7652541,
3390.0,-2300494.16379595,-4683860.19477673,3655102.42228967,
3.4e3,-2300270.31711639,-4683854.13287765,3655250.07283467,
3410.0,-2300043.34951879,-4683853.58162531,3655392.64057225,
3420.0,-2299798.57046824,-4683898.20991075,3655488.81767963,
3430.0,-2299550.24237985,-4683986.73183877,3655531.32743747,
3440.0,-2299302.19677383,-4684083.86163291,3655562.68543478,
3450.0,-2299054.1471058,-4684180.98314055,3655594.03696606,
3460.0,-2298806.09337623,-4684278.0963615,3655625.38203125,
3470.0,-2298558.03558554,-4684375.2012956,3655656.7206303,
3480.0,-2298309.97373417,-4684472.29794267,3655688.05276314,
3490.0,-2298061.90782256,-4684569.38630254,3655719.37842974,
3.5e3,-2297812.62950649,-4684659.16576897,3655760.74476938,
3510.0,-2297564.67551281,-4684714.88851845,3655844.61445788,
3520.0,-2297325.87128825,-4684739.27586645,3655962.6382433,
3530.0,-2297109.10378606,-4684723.02803401,3656118.60908182,
3540.0,-2296920.05504158,-4684672.53835408,3656300.84320686,
3550.0,-2296752.93245501,-4684599.85791996,3656497.61758286,
3560.0,-2296586.9421969,-4684526.13410832,3656694.99365465,
3570.0,-2296420.94788222,-4684452.40199052,3656892.36321221,
3580.0,-2296254.94951125,-4684378.66156669,3657089.72625519,
3590.0,-2296088.9470843,-4684304.91283696,3657287.08278322,
3.6e3,-2295922.94060166,-4684231.15580147,3657484.43279599,
3610.0,-2295756.93006363,-4684157.39046036,3657681.77629313,
3620.0,-2295590.91547051,-4684083.61681375,3657879.11327429,
3630.0,-2295424.89682259,-4684009.83486178,3658076.44373913,
3640.0,-2295258.87412016,-4683936.04460459,3658273.7676873,
3650.0,-2295092.84736354,-4683862.24604231,3658471.08511845,
3660.0,-2294926.816553,-4683788.43917507,3658668.39603222,
3670.0,-2294760.78168886,-4683714.62400301,3658865.70042829,
3680.0,-2294594.74277139,-4683640.80052626,3659062.99830628,
3690.0,-2294428.69980091,-4683566.96874495,3659260.28966586,
3.7e3,-2294262.65277771,-4683493.12865923,3659457.57450667,
3710.0,-2294096.43623008,-4683419.42772878,3659654.7684149,
3720.0,-2293929.99691308,-4683345.91340302,3659851.84422781,
3730.0,-2293763.5535443,-4683272.39077326,3660048.91352102,
3740.0,-2293597.10612405,-4683198.85983962,3660245.97629416,
3750.0,-2293430.65465261,-4683125.32060225,3660443.03254689,
3760.0,-2293260.27703319,-4683055.37159052,3660637.95010862,
3770.0,-2293061.03795256,-4683015.37278429,3660812.74893793,
3780.0,-2292840.33611906,-4683005.33804065,3660962.80786551,
3790.0,-2292608.06534954,-4683013.68106842,3661096.69339637,
3.8e3,-2292375.79053761,-4683022.01579957,3661230.57243073,
3810.0,-2292143.51168366,-4683030.3422341,3661364.44496835,
3820.0,-2291911.22878812,-4683038.66037197,3661498.311009,
3830.0,-2291675.19260926,-4683056.38281492,3661622.54366342,
3840.0,-2291444.11976688,-4683176.79169794,3661613.21949622,
3850.0,-2291484.73184242,-4683029.11180042,3661775.58481802,
3860.0,-2291570.38402198,-4682848.00432402,3661952.40110212,
3870.0,-2291504.75912943,-4682707.90868127,3662171.13586741,
3880.0,-2291437.4576409,-4682568.41526623,3662390.12822003,
3890.0,-2291370.1520906,-4682428.91355119,3662609.11403735,
3894.996219574019,-2291336.52323822,-4682359.21232197,3662718.52171165
]
}
}
]

View File

@ -0,0 +1,487 @@
[
{
"id":"document",
"version":"1.0"
},
{
"id":"Vehicle",
"availability":"2012-08-04T16:00:00Z/2012-08-04T17:04:54.9962195740191Z",
"billboard":{
"eyeOffset":{
"cartesian":[
0.0,0.0,0.0
]
},
"horizontalOrigin":"CENTER",
"image":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEISURBVEhLvVXBDYQwDOuojHKj8LhBbpTbpBCEkZsmIVTXq1RVQGrHiWlLmTTqPiZBlyLgy/KSZQ5JSHDQ/mCYCsC8106kDU0AdwRnvYZArWRcAl0dcYJq1hWCb3hBrumbDAVMwAC82WoRvgMnVMDBnB0nYZFTbE6BBvdUGqVqCbjBIk3PyFFR/NU7EKzru+qZsau3ryPwwCRLKYOzutZuCL6fUmWeJGzNzL/RxAMrUmASSCkkAayk2IxPlwhAAYGpsiHQjbLccfdOY5gKkCXAMi7SscAwbQpAnKyctWyUZ6z8ja3OGMepwD8asz+9FnSvbhU8uVOHFIwQsI3/p0CfhuqCSQuxLqsN6mu8SS+N42MAAAAASUVORK5CYII=",
"pixelOffset":{
"cartesian2":[
0.0,0.0
]
},
"scale":0.8333333333333334,
"show":[
{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"boolean":true
}
],
"verticalOrigin":"BOTTOM"
},
"label":{
"fillColor":[
{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"rgba":[
255,255,0,255
]
}
],
"font":"bold 10pt Segoe UI Semibold",
"horizontalOrigin":"LEFT",
"outlineColor":{
"rgba":[
0,0,0,255
]
},
"pixelOffset":{
"cartesian2":[
10.0,0.0
]
},
"scale":1.0,
"show":[
{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"boolean":true
}
],
"style":"FILL",
"text":"Vehicle",
"verticalOrigin":"CENTER"
},
"path":{
"material":{
"solidColor":{
"color":{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"rgba":[
255,255,0,255
]
}
}
},
"width":[
{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"number":5.0
}
],
"show":[
{
"interval":"2012-08-04T16:00:00Z/2012-08-04T18:00:00Z",
"boolean":true
}
]
},
"position":{
"interpolationAlgorithm":"LAGRANGE",
"interpolationDegree":1,
"epoch":"2012-08-04T16:00:00Z",
"cartesian":[
0.0,-2379754.6637012,-4665332.88013588,3628133.68924173,
10.0,-2379510.08905552,-4665419.64840452,3628182.20006795,
20.0,-2379568.4769522,-4665555.3441867,3627970.83323261,
30.0,-2379638.93786855,-4665691.63561896,3627750.82085873,
40.0,-2379709.29834665,-4665827.9679646,3627530.80187124,
50.0,-2379837.28064915,-4665847.7494347,3627422.12874017,
60.0,-2379624.98289073,-4665907.50853722,3627484.1191848,
70.0,-2379386.12743523,-4666029.54174431,3627483.83297459,
80.0,-2379147.26777171,-4666151.56669944,3627483.5403492,
90.0,-2378908.40390057,-4666273.58340244,3627483.24130864,
1e2,-2378663.69301645,-4666379.62408751,3627507.14485116,
110.0,-2378416.29648478,-4666444.93145547,3627584.82610021,
120.0,-2378184.75115833,-4666458.05260387,3627718.84628509,
130.0,-2377958.22637221,-4666461.11592729,3627862.42864636,
140.0,-2377733.79758374,-4666460.508441,3628009.31669747,
150.0,-2377509.36460154,-4666459.89268533,3628156.19830638,
160.0,-2377284.92742603,-4666459.26866028,3628303.07347284,
170.0,-2377060.48605759,-4666458.63636585,3628449.9421966,
180.0,-2376835.38472681,-4666459.12413084,3628595.78980713,
190.0,-2376609.71084875,-4666460.58154837,3628740.75156098,
2e2,-2376384.03277903,-4666462.03069678,3628885.70687201,
210.0,-2376158.35051806,-4666463.47157605,3629030.65573998,
220.0,-2375928.48736859,-4666473.69575712,3629167.08552075,
230.0,-2375685.23921682,-4666516.66377513,3629270.3788586,
240.0,-2375437.34307768,-4666580.50029931,3629350.0215939,
250.0,-2375189.01133306,-4666646.99320452,3629426.53515423,
260.0,-2374940.52675783,-4666719.29042452,3629495.71527129,
270.0,-2374695.15633549,-4666818.94185605,3629527.91579302,
280.0,-2374469.42323533,-4666959.02687352,3629495.69349509,
290.0,-2374249.06659405,-4667105.51477438,3629451.77975513,
3e2,-2374028.70574724,-4667251.99442379,3629407.85959417,
310.0,-2373808.3406953,-4667398.46582147,3629363.9330123,
320.0,-2373585.10773309,-4667542.05948567,3629325.52597676,
330.0,-2373360.83645524,-4667684.60869937,3629289.10800226,
340.0,-2373136.5609746,-4667827.1496603,3629252.68360778,
350.0,-2372912.28129155,-4667969.68236819,3629216.25279339,
360.0,-2372687.9974065,-4668112.20682281,3629179.81555915,
370.0,-2372463.70931983,-4668254.72302389,3629143.37190511,
380.0,-2372239.41703195,-4668397.2309712,3629106.92183136,
390.0,-2372018.7615611,-4668543.12509124,3629063.76398058,
4e2,-2371803.72586004,-4668694.25404103,3629010.24868951,
410.0,-2371587.17705087,-4668844.01756398,3628959.44085712,
420.0,-2371365.33472237,-4668989.01539779,3628918.13984128,
430.0,-2371134.7547923,-4669122.83460485,3628896.77687771,
440.0,-2370898.14635373,-4669248.94021679,3628889.16522147,
450.0,-2370660.31892949,-4669372.89697404,3628885.07134974,
460.0,-2370422.47459187,-4669496.82305927,3628881.00796265,
470.0,-2370184.62606153,-4669620.7408867,3628876.93815788,
480.0,-2369946.77333888,-4669744.65045611,3628872.86193545,
490.0,-2369708.91642433,-4669868.55176729,3628868.77929537,
5e2,-2369471.05531832,-4669992.44482001,3628864.69023764,
510.0,-2369233.19002126,-4670116.32961405,3628860.59476226,
520.0,-2368989.65950726,-4670225.94237244,3628878.39787596,
530.0,-2368742.64810033,-4670324.93393451,3628912.01606989,
540.0,-2368494.95906007,-4670419.65546435,3628951.51257903,
550.0,-2368248.2848424,-4670519.53079746,3628983.74302284,
560.0,-2368001.37437725,-4670618.8319301,3629016.84097985,
570.0,-2367753.95809484,-4670715.82368808,3629053.19940679,
580.0,-2367506.53762994,-4670812.80718267,3629089.55141416,
590.0,-2367259.11298298,-4670909.78241366,3629125.89700192,
6e2,-2367011.6841544,-4671006.74938092,3629162.23617,
610.0,-2366764.25114462,-4671103.70808425,3629198.56891833,
620.0,-2366516.81395411,-4671200.6585235,3629234.89524684,
630.0,-2366269.37258329,-4671297.60069848,3629271.21515549,
640.0,-2366021.9270326,-4671394.53460904,3629307.52864419,
650.0,-2365774.47730247,-4671491.460255,3629343.8357129,
660.0,-2365527.02339333,-4671588.37763618,3629380.13636155,
670.0,-2365279.56530564,-4671685.28675242,3629416.43059006,
680.0,-2365032.10303983,-4671782.18760355,3629452.71839837,
690.0,-2364784.63659633,-4671879.0801894,3629488.99978644,
7e2,-2364537.16597558,-4671975.96450979,3629525.27475418,
710.0,-2364289.69117801,-4672072.84056456,3629561.54330154,
720.0,-2364042.21220407,-4672169.70835353,3629597.80542845,
730.0,-2363794.72905419,-4672266.56787654,3629634.06113485,
740.0,-2363547.2417288,-4672363.41913342,3629670.31042068,
750.0,-2363299.75022835,-4672460.26212398,3629706.55328587,
760.0,-2363052.25455328,-4672557.09684808,3629742.78973036,
770.0,-2362805.96213832,-4672658.44235501,3629772.46055,
780.0,-2362566.28756432,-4672777.84646024,3629774.74120741,
790.0,-2362330.01543718,-4672904.47715606,3629765.56158533,
8e2,-2362093.73913086,-4673031.09958839,3629756.37554393,
810.0,-2361857.4586458,-4673157.71375702,3629747.18308323,
820.0,-2361621.17398239,-4673284.31966172,3629737.98420324,
830.0,-2361379.13396171,-4673398.62592987,3629748.21496888,
840.0,-2361130.58722369,-4673488.59963461,3629793.74986512,
850.0,-2360881.58098042,-4673573.14384665,3629846.50583809,
860.0,-2360632.51954154,-4673657.07225834,3629900.06533886,
870.0,-2360383.45393477,-4673740.99239963,3629953.61841672,
880.0,-2360134.38416057,-4673824.90427038,3630007.16507155,
890.0,-2359885.31021938,-4673908.80787044,3630060.70530326,
9e2,-2359636.23211162,-4673992.70319966,3630114.23911177,
910.0,-2359387.14983775,-4674076.5902579,3630167.76649697,
920.0,-2359138.06339821,-4674160.469045,3630221.28745878,
930.0,-2358889.14548278,-4674246.80164025,3630271.54165003,
940.0,-2358640.17887385,-4674332.39488805,3630322.75317441,
950.0,-2358391.03374684,-4674415.32432296,3630377.46713032,
960.0,-2358141.88445605,-4674498.24548602,3630432.17466229,
970.0,-2357892.7310019,-4674581.15837706,3630486.87577026,
980.0,-2357643.59031994,-4674664.39449658,3630541.13554932,
990.0,-2357394.48770584,-4674748.44899573,3630594.30439711,
1e3,-2357145.38092955,-4674832.4952226,3630647.46682079,
1010.0,-2356896.26999152,-4674916.53317705,3630700.62282028,
1020.0,-2356647.15489217,-4675000.56285892,3630753.77239547,
1030.0,-2356398.03563196,-4675084.58426807,3630806.91554629,
1040.0,-2356148.91221132,-4675168.59740435,3630860.05227262,
1050.0,-2355899.78463069,-4675252.60226762,3630913.18257437,
1060.0,-2355650.65289051,-4675336.59885772,3630966.30645147,
1070.0,-2355401.51699122,-4675420.58717452,3631019.42390381,
1080.0,-2355152.37693328,-4675504.56721785,3631072.5349313,
1090.0,-2354903.2327171,-4675588.53898758,3631125.63953384,
1.1e3,-2354654.08434313,-4675672.50248355,3631178.73771134,
1110.0,-2354404.86337217,-4675754.50046618,3631234.37690825,
1120.0,-2354155.84214723,-4675830.29554952,3631297.80148619,
1130.0,-2353909.99308372,-4675880.61174319,3631391.75187422,
1140.0,-2353667.55938687,-4675917.7532863,3631500.33400567,
1150.0,-2353425.14548842,-4675954.80919402,3631608.99321685,
1160.0,-2353182.7274392,-4675991.85682064,3631717.64599126,
1170.0,-2352940.30523964,-4676028.89616608,3631826.29232871,
1180.0,-2352697.87889015,-4676065.92723028,3631934.93222899,
1190.0,-2352455.44839119,-4676102.95001317,3632043.56569193,
1.2e3,-2352213.01374317,-4676139.9645147,3632152.19271733,
1210.0,-2351970.57494653,-4676176.97073479,3632260.81330501,
1220.0,-2351728.13200169,-4676213.96867339,3632369.42745476,
1230.0,-2351485.68490907,-4676250.95833043,3632478.03516641,
1240.0,-2351243.23366913,-4676287.93970586,3632586.63643975,
1250.0,-2351000.77828228,-4676324.91279958,3632695.2312746,
1260.0,-2350758.31874895,-4676361.87761156,3632803.81967077,
1270.0,-2350515.85506957,-4676398.83414172,3632912.40162807,
1280.0,-2350273.38724458,-4676435.78239001,3633020.9771463,
1290.0,-2350029.47875804,-4676477.3914753,3633124.49944636,
1.3e3,-2349785.42349382,-4676519.45587927,3633227.51421022,
1310.0,-2349541.36408501,-4676561.51200187,3633330.52253589,
1320.0,-2349297.30053206,-4676603.55984302,3633433.52442318,
1330.0,-2349053.2328354,-4676645.59940266,3633536.51987191,
1340.0,-2348809.16099546,-4676687.63068071,3633639.50888189,
1350.0,-2348565.08501267,-4676729.65367709,3633742.49145297,
1360.0,-2348321.00488746,-4676771.66839174,3633845.46758493,
1370.0,-2348076.92062027,-4676813.67482458,3633948.43727762,
1380.0,-2347832.83221153,-4676855.67297554,3634051.40053084,
1390.0,-2347588.73966167,-4676897.66284454,3634154.35734442,
1.4e3,-2347344.64297113,-4676939.64443151,3634257.30771818,
1410.0,-2347101.04731466,-4676979.96034855,3634362.04616856,
1420.0,-2346858.26575513,-4677017.5834931,3634469.6847769,
1430.0,-2346614.99348312,-4677056.89461847,3634575.46081166,
1440.0,-2346369.55744615,-4677103.7262244,3634672.99207759,
1450.0,-2346124.8248997,-4677147.9423086,3634773.39569376,
1460.0,-2345880.74403986,-4677189.73374292,3634876.46090671,
1470.0,-2345636.65904236,-4677231.51689469,3634979.51967852,
1480.0,-2345392.56990766,-4677273.29176384,3635082.57200902,
1490.0,-2345148.47663614,-4677315.05835029,3635185.61789803,
1.5e3,-2344904.37922829,-4677356.81665397,3635288.65734536,
1510.0,-2344660.2776845,-4677398.56667482,3635391.69035084,
1520.0,-2344416.17200522,-4677440.30841274,3635494.71691428,
1530.0,-2344172.06219089,-4677482.04186768,3635597.7370355,
1540.0,-2343927.94824192,-4677523.76703957,3635700.75071434,
1550.0,-2343683.83015876,-4677565.48392832,3635803.75795058,
1560.0,-2343439.70794184,-4677607.19253388,3635906.75874406,
1570.0,-2343195.58159159,-4677648.89285615,3636009.75309461,
1580.0,-2342951.45110844,-4677690.58489508,3636112.74100204,
1590.0,-2342707.31649283,-4677732.2686506,3636215.72246616,
1.6e3,-2342463.17774519,-4677773.94412263,3636318.6974868,
1610.0,-2342219.03486595,-4677815.61131108,3636421.66606378,
1620.0,-2341974.88785554,-4677857.2702159,3636524.6281969,
1630.0,-2341730.7367144,-4677898.92083702,3636627.583886,
1640.0,-2341486.58144295,-4677940.56317435,3636730.5331309,
1650.0,-2341242.42204163,-4677982.19722784,3636833.4759314,
1660.0,-2340998.25851088,-4678023.8229974,3636936.41228734,
1670.0,-2340754.09085112,-4678065.44048297,3637039.34219853,
1680.0,-2340509.91906279,-4678107.04968447,3637142.26566479,
1690.0,-2340265.74314632,-4678148.65060182,3637245.18268593,
1.7e3,-2340021.56310214,-4678190.24323497,3637348.09326179,
1710.0,-2339777.37893069,-4678231.82758383,3637450.99739218,
1720.0,-2339533.1906324,-4678273.40364834,3637553.8950769,
1730.0,-2339288.99820769,-4678314.97142841,3637656.7863158,
1740.0,-2339044.80165702,-4678356.530924,3637759.67110868,
1750.0,-2338800.60098079,-4678398.082135,3637862.54945536,
1760.0,-2338554.70615885,-4678446.63979812,3637957.53985359,
1770.0,-2338307.34044549,-4678501.27725608,3638045.68346556,
1780.0,-2338059.970607,-4678555.90643107,3638133.82063425,
1790.0,-2337812.5966438,-4678610.527323,3638221.9513595,
1.8e3,-2337565.21855632,-4678665.13993177,3638310.07564116,
1810.0,-2337317.836345,-4678719.74425728,3638398.19347906,
1820.0,-2337070.45001029,-4678774.34029945,3638486.30487305,
1830.0,-2336823.05955262,-4678828.92805817,3638574.40982299,
1840.0,-2336575.66497242,-4678883.50753334,3638662.50832871,
1850.0,-2336327.1545835,-4678945.50581105,3638741.82308353,
1860.0,-2336079.08419082,-4679004.31007705,3638824.91716907,
1870.0,-2335832.84388937,-4679053.5438294,3638919.0484984,
1880.0,-2335586.22540763,-4679104.36395041,3639011.37515412,
1890.0,-2335339.10405755,-4679157.40812923,3639101.16216049,
1.9e3,-2335091.77487812,-4679211.48259624,3639189.74611699,
1910.0,-2334844.32516034,-4679266.14231747,3639277.63977539,
1920.0,-2334596.87132354,-4679320.79375442,3639365.52698836,
1930.0,-2334349.41336814,-4679375.436907,3639453.40775576,
1940.0,-2334101.95129458,-4679430.07177509,3639541.28207743,
1950.0,-2333854.48510331,-4679484.69835863,3639629.14995324,
1960.0,-2333607.01479475,-4679539.31665749,3639717.011383,
1970.0,-2333359.54036938,-4679593.9266716,3639804.86636658,
1980.0,-2333112.06182757,-4679648.52840084,3639892.71490381,
1990.0,-2332864.57916982,-4679703.12184515,3639980.55699455,
2e3,-2332617.09239653,-4679757.70700441,3640068.39263865,
2010.0,-2332369.60150815,-4679812.28387853,3640156.22183593,
2020.0,-2332122.10650513,-4679866.85246742,3640244.04458626,
2030.0,-2331874.6073879,-4679921.41277097,3640331.86088948,
2040.0,-2331627.10415689,-4679975.96478911,3640419.67074542,
2050.0,-2331379.59681254,-4680030.50852172,3640507.47415395,
2060.0,-2331132.08535529,-4680085.04396871,3640595.27111491,
2070.0,-2330884.56978558,-4680139.57113,3640683.06162813,
2080.0,-2330637.7285141,-4680190.9395453,3640774.43710409,
2090.0,-2330396.40663506,-4680225.151778,3640884.18994119,
2.1e3,-2330163.10529565,-4680238.35673454,3641015.64723137,
2110.0,-2329932.54342047,-4680245.95830447,3641152.4979079,
2120.0,-2329701.97743661,-4680253.55158212,3641289.34212236,
2130.0,-2329471.40734447,-4680261.13656747,3641426.1798745,
2140.0,-2329240.83314447,-4680268.71326052,3641563.01116407,
2150.0,-2329010.25483703,-4680276.28166125,3641699.83599085,
2160.0,-2328779.67242253,-4680283.84176964,3641836.65435457,
2170.0,-2328549.08590139,-4680291.3935857,3641973.46625501,
2180.0,-2328318.49527404,-4680298.9371094,3642110.27169193,
2190.0,-2328087.90054086,-4680306.47234074,3642247.07066509,
2.2e3,-2327857.30170227,-4680313.99927971,3642383.86317423,
2210.0,-2327626.69875869,-4680321.51792628,3642520.64921913,
2220.0,-2327396.09171053,-4680329.02828045,3642657.42879954,
2230.0,-2327165.48055818,-4680336.53034222,3642794.20191522,
2240.0,-2326934.86530206,-4680344.02411158,3642930.96856595,
2250.0,-2326704.24594258,-4680351.50958849,3643067.72875145,
2260.0,-2326473.62248015,-4680358.98677296,3643204.48247151,
2270.0,-2326242.99491518,-4680366.45566498,3643341.22972587,
2280.0,-2326012.36324808,-4680373.91626453,3643477.97051431,
2290.0,-2325781.72747925,-4680381.36857161,3643614.70483658,
2.3e3,-2325551.08760911,-4680388.8125862,3643751.43269243,
2310.0,-2325320.44363806,-4680396.24830829,3643888.15408163,
2320.0,-2325089.79556653,-4680403.67573787,3644024.86900394,
2330.0,-2324859.14339491,-4680411.09487493,3644161.57745912,
2340.0,-2324628.48712361,-4680418.50571946,3644298.27944692,
2350.0,-2324397.82675305,-4680425.90827145,3644434.97496711,
2360.0,-2324167.16228363,-4680433.30253088,3644571.66401943,
2370.0,-2323936.49371575,-4680440.68849774,3644708.34660367,
2380.0,-2323705.82104985,-4680448.06617203,3644845.02271957,
2390.0,-2323469.56457492,-4680467.5014928,3644969.83533712,
2.4e3,-2323221.0622471,-4680536.92026793,3645038.62868541,
2410.0,-2322977.80807152,-4680647.84474283,3645051.13992706,
2420.0,-2322736.38267079,-4680764.64879631,3645054.97445125,
2430.0,-2322494.9531628,-4680881.44457147,3645058.80252916,
2440.0,-2322246.73779559,-4680970.18567741,3645102.6916578,
2450.0,-2322002.53536924,-4681011.67497706,3645204.29544116,
2460.0,-2321760.17882828,-4681045.91276755,3645313.96140727,
2470.0,-2321513.45780318,-4681097.83227119,3645403.81543108,
2480.0,-2321264.12028187,-4681176.5278287,3645461.15182806,
2490.0,-2321016.67956395,-4681275.07588805,3645491.94679701,
2.5e3,-2320769.58665668,-4681375.58594799,3645519.99961511,
2510.0,-2320522.489649,-4681476.08772649,3645548.04598517,
2520.0,-2320275.38854134,-4681576.5812234,3645576.08590716,
2530.0,-2320027.79132447,-4681674.92626117,3645607.16040563,
2540.0,-2319780.10642819,-4681772.89945148,3645638.74505341,
2550.0,-2319532.41743371,-4681870.86435933,3645670.32325269,
2560.0,-2319284.72434146,-4681968.82098454,3645701.89500342,
2570.0,-2319037.02715189,-4682066.76932694,3645733.46030553,
2580.0,-2318789.32586542,-4682164.70938637,3645765.01915898,
2590.0,-2318542.12778997,-4682264.83612099,3645793.45100625,
2.6e3,-2318295.04606153,-4682365.47569326,3645821.1355313,
2610.0,-2318047.960237,-4682466.10698239,3645848.81360781,
2620.0,-2317814.2136072,-4682593.27748455,3645834.19098143,
2630.0,-2317595.23970305,-4682740.17783799,3645785.0493345,
2640.0,-2317367.51895524,-4682877.20966947,3645754.00173306,
2650.0,-2317125.45200646,-4682991.24847734,3645761.32874791,
2660.0,-2316877.25477931,-4683085.09280115,3645798.27256564,
2670.0,-2316627.76750724,-4683171.42599527,3645845.59470414,
2680.0,-2316378.41358519,-4683244.04371304,3645910.31301292,
2690.0,-2316132.23045195,-4683290.83587254,3646005.96208532,
2.7e3,-2315886.04323336,-4683337.61973972,3646101.60469867,
2710.0,-2315639.85192986,-4683384.3953145,3646197.24085278,
2720.0,-2315393.65654188,-4683431.1625968,3646292.8705475,
2730.0,-2315147.45706986,-4683477.92158654,3646388.49378265,
2740.0,-2314901.25351424,-4683524.67228364,3646484.11055807,
2750.0,-2314655.04587545,-4683571.41468801,3646579.72087358,
2760.0,-2314408.83415392,-4683618.14879957,3646675.32472902,
2770.0,-2314160.70351457,-4683675.04338742,3646759.15642247,
2780.0,-2313911.58484161,-4683762.87653752,3646804.12173857,
2790.0,-2313665.46479966,-4683867.13714076,3646826.2202591,
2.8e3,-2313419.44574948,-4683971.81359651,3646847.70500867,
2810.0,-2313173.422611,-4684076.48176683,3646869.18330826,
2820.0,-2312927.39538468,-4684181.14165156,3646890.65515782,
2830.0,-2312681.36407094,-4684285.79325049,3646912.12055732,
2840.0,-2312435.3286702,-4684390.43656345,3646933.57950672,
2850.0,-2312188.68106177,-4684492.14732495,3646959.14603188,
2860.0,-2311939.2573735,-4684576.69232926,3647008.34294359,
2870.0,-2311690.53184969,-4684637.85664359,3647086.91208669,
2880.0,-2311447.74208361,-4684672.93987918,3647195.00103929,
2890.0,-2311210.79617263,-4684692.62730813,3647319.03447912,
2.9e3,-2310974.46339778,-4684710.81501905,3647444.57574765,
2910.0,-2310738.12654788,-4684728.99443131,3647570.11054652,
2920.0,-2310501.78562334,-4684747.16554491,3647695.63887553,
2930.0,-2310265.44062458,-4684765.3283598,3647821.16073445,
2940.0,-2310029.09155203,-4684783.48287596,3647946.67612307,
2950.0,-2309792.7384061,-4684801.62909336,3648072.18504115,
2960.0,-2309556.38118721,-4684819.76701196,3648197.6874885,
2970.0,-2309320.01989578,-4684837.89663174,3648323.18346488,
2980.0,-2309083.65453223,-4684856.01795267,3648448.67297006,
2990.0,-2308847.28509697,-4684874.13097471,3648574.15600382,
3e3,-2308612.03960687,-4684889.78192809,3648702.05314508,
3010.0,-2308376.92124893,-4684905.13917681,3648830.22535859,
3020.0,-2308141.79882057,-4684920.48812622,3648958.39109918,
3030.0,-2307906.6723222,-4684935.82877629,3649086.55036665,
3040.0,-2307671.54175424,-4684951.161127,3649214.70316074,
3050.0,-2307436.40711711,-4684966.48517831,3649342.84948124,
3060.0,-2307201.26841123,-4684981.80093021,3649470.98932793,
3070.0,-2306966.87575715,-4684995.59988061,3649600.57521538,
3080.0,-2306740.26452813,-4684994.89962227,3649743.74372413,
3090.0,-2306534.08725296,-4684964.25689728,3649912.24261594,
3.1e3,-2306334.50436505,-4684925.31923873,3650087.15846994,
3110.0,-2306134.91740775,-4684886.37327513,3650262.06783161,
3120.0,-2305935.32638143,-4684847.41900655,3650436.97070063,
3130.0,-2305735.73128644,-4684808.45643306,3650611.86707671,
3140.0,-2305536.13212312,-4684769.48555472,3650786.75695952,
3150.0,-2305336.52889186,-4684730.50637162,3650961.64034877,
3160.0,-2305136.92159298,-4684691.51888382,3651136.51724414,
3170.0,-2304937.31022685,-4684652.5230914,3651311.38764532,
3180.0,-2304737.69479383,-4684613.51899443,3651486.25155201,
3190.0,-2304538.07529427,-4684574.50659297,3651661.1089639,
3.2e3,-2304338.45172854,-4684535.48588711,3651835.95988067,
3210.0,-2304138.82409697,-4684496.45687691,3652010.80430203,
3220.0,-2303939.19239993,-4684457.41956245,3652185.64222766,
3230.0,-2303739.55663778,-4684418.37394379,3652360.47365726,
3240.0,-2303539.91681086,-4684379.32002102,3652535.29859051,
3250.0,-2303340.27291955,-4684340.25779419,3652710.11702711,
3260.0,-2303140.62496419,-4684301.18726339,3652884.92896676,
3270.0,-2302940.97294513,-4684262.10842868,3653059.73440913,
3280.0,-2302741.31686273,-4684223.02129014,3653234.53335393,
3290.0,-2302541.65671735,-4684183.92584784,3653409.32580085,
3.3e3,-2302341.99250935,-4684144.82210185,3653584.11174957,
3310.0,-2302142.32423908,-4684105.71005224,3653758.8911998,
3320.0,-2301942.65190688,-4684066.5896991,3653933.66415121,
3330.0,-2301742.97551314,-4684027.46104248,3654108.43060351,
3340.0,-2301543.29505819,-4683988.32408245,3654283.19055638,
3350.0,-2301343.61054239,-4683949.1788191,3654457.94400952,
3360.0,-2301143.6827542,-4683910.31378064,3654632.47326169,
3370.0,-2300935.59009252,-4683881.78114292,3654798.93579703,
3380.0,-2300718.00641879,-4683866.2483759,3654954.7652541,
3390.0,-2300494.16379595,-4683860.19477673,3655102.42228967,
3.4e3,-2300270.31711639,-4683854.13287765,3655250.07283467,
3410.0,-2300043.34951879,-4683853.58162531,3655392.64057225,
3420.0,-2299798.57046824,-4683898.20991075,3655488.81767963,
3430.0,-2299550.24237985,-4683986.73183877,3655531.32743747,
3440.0,-2299302.19677383,-4684083.86163291,3655562.68543478,
3450.0,-2299054.1471058,-4684180.98314055,3655594.03696606,
3460.0,-2298806.09337623,-4684278.0963615,3655625.38203125,
3470.0,-2298558.03558554,-4684375.2012956,3655656.7206303,
3480.0,-2298309.97373417,-4684472.29794267,3655688.05276314,
3490.0,-2298061.90782256,-4684569.38630254,3655719.37842974,
3.5e3,-2297812.62950649,-4684659.16576897,3655760.74476938,
3510.0,-2297564.67551281,-4684714.88851845,3655844.61445788,
3520.0,-2297325.87128825,-4684739.27586645,3655962.6382433,
3530.0,-2297109.10378606,-4684723.02803401,3656118.60908182,
3540.0,-2296920.05504158,-4684672.53835408,3656300.84320686,
3550.0,-2296752.93245501,-4684599.85791996,3656497.61758286,
3560.0,-2296586.9421969,-4684526.13410832,3656694.99365465,
3570.0,-2296420.94788222,-4684452.40199052,3656892.36321221,
3580.0,-2296254.94951125,-4684378.66156669,3657089.72625519,
3590.0,-2296088.9470843,-4684304.91283696,3657287.08278322,
3.6e3,-2295922.94060166,-4684231.15580147,3657484.43279599,
3610.0,-2295756.93006363,-4684157.39046036,3657681.77629313,
3620.0,-2295590.91547051,-4684083.61681375,3657879.11327429,
3630.0,-2295424.89682259,-4684009.83486178,3658076.44373913,
3640.0,-2295258.87412016,-4683936.04460459,3658273.7676873,
3650.0,-2295092.84736354,-4683862.24604231,3658471.08511845,
3660.0,-2294926.816553,-4683788.43917507,3658668.39603222,
3670.0,-2294760.78168886,-4683714.62400301,3658865.70042829,
3680.0,-2294594.74277139,-4683640.80052626,3659062.99830628,
3690.0,-2294428.69980091,-4683566.96874495,3659260.28966586,
3.7e3,-2294262.65277771,-4683493.12865923,3659457.57450667,
3710.0,-2294096.43623008,-4683419.42772878,3659654.7684149,
3720.0,-2293929.99691308,-4683345.91340302,3659851.84422781,
3730.0,-2293763.5535443,-4683272.39077326,3660048.91352102,
3740.0,-2293597.10612405,-4683198.85983962,3660245.97629416,
3750.0,-2293430.65465261,-4683125.32060225,3660443.03254689,
3760.0,-2293260.27703319,-4683055.37159052,3660637.95010862,
3770.0,-2293061.03795256,-4683015.37278429,3660812.74893793,
3780.0,-2292840.33611906,-4683005.33804065,3660962.80786551,
3790.0,-2292608.06534954,-4683013.68106842,3661096.69339637,
3.8e3,-2292375.79053761,-4683022.01579957,3661230.57243073,
3810.0,-2292143.51168366,-4683030.3422341,3661364.44496835,
3820.0,-2291911.22878812,-4683038.66037197,3661498.311009,
3830.0,-2291675.19260926,-4683056.38281492,3661622.54366342,
3840.0,-2291444.11976688,-4683176.79169794,3661613.21949622,
3850.0,-2291484.73184242,-4683029.11180042,3661775.58481802,
3860.0,-2291570.38402198,-4682848.00432402,3661952.40110212,
3870.0,-2291504.75912943,-4682707.90868127,3662171.13586741,
3880.0,-2291437.4576409,-4682568.41526623,3662390.12822003,
3890.0,-2291370.1520906,-4682428.91355119,3662609.11403735,
3894.996219574019,-2291336.52323822,-4682359.21232197,3662718.52171165
]
}
}
]

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 975 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View File

@ -0,0 +1,219 @@
<gpx creator="GPS Visualizer http://www.gpsvisualizer.com/" version="1.0">
<wpt lat="45.44283" lon="-121.72904"><ele>1374</ele><name>Vista Ridge Trailhead</name><sym>Trail Head</sym></wpt>
<wpt lat="45.41000" lon="-121.71349"><ele>1777</ele><name>Wy'East Basin</name></wpt>
<wpt lat="45.41124" lon="-121.70404"><ele>1823</ele><name>Dollar Lake</name></wpt>
<wpt lat="45.39260" lon="-121.69937"><ele>2394</ele><name>Barrett Spur</name><sym>Summit</sym></wpt>
<trk>
<name>Barrett Spur 1</name>
<trkseg>
<trkpt lat="45.4431641" lon="-121.7295456"></trkpt>
<trkpt lat="45.4428615" lon="-121.7290800"></trkpt>
<trkpt lat="45.4425697" lon="-121.7279085"></trkpt>
<trkpt lat="45.4424274" lon="-121.7267360"></trkpt>
<trkpt lat="45.4422017" lon="-121.7260429"></trkpt>
<trkpt lat="45.4416576" lon="-121.7252347"></trkpt>
<trkpt lat="45.4406144" lon="-121.7241181"></trkpt>
<trkpt lat="45.4398193" lon="-121.7224890"></trkpt>
<trkpt lat="45.4387649" lon="-121.7226112"></trkpt>
<trkpt lat="45.4383933" lon="-121.7224328"></trkpt>
<trkpt lat="45.4377850" lon="-121.7224159"></trkpt>
<trkpt lat="45.4372204" lon="-121.7226603"></trkpt>
<trkpt lat="45.4347837" lon="-121.7226007"></trkpt>
<trkpt lat="45.4332000" lon="-121.7216480"></trkpt>
<trkpt lat="45.4334576" lon="-121.7223143"></trkpt>
<trkpt lat="45.4321730" lon="-121.7222102"></trkpt>
<trkpt lat="45.4316609" lon="-121.7219974"></trkpt>
<trkpt lat="45.4303068" lon="-121.7220616"></trkpt>
<trkpt lat="45.4270753" lon="-121.7209685"></trkpt>
<trkpt lat="45.4267610" lon="-121.7211872"></trkpt>
<trkpt lat="45.4260133" lon="-121.7212623"></trkpt>
<trkpt lat="45.4257683" lon="-121.7214738"></trkpt>
<trkpt lat="45.4257400" lon="-121.7217762"></trkpt>
<trkpt lat="45.4259485" lon="-121.7226009"></trkpt>
<trkpt lat="45.4249972" lon="-121.7223672"></trkpt>
<trkpt lat="45.4246035" lon="-121.7219816"></trkpt>
<trkpt lat="45.4238682" lon="-121.7219830"></trkpt>
<trkpt lat="45.4226721" lon="-121.7216494"></trkpt>
<trkpt lat="45.4224120" lon="-121.7217998"></trkpt>
<trkpt lat="45.4211497" lon="-121.7218767"></trkpt>
<trkpt lat="45.4193319" lon="-121.7208650"></trkpt>
<trkpt lat="45.4186435" lon="-121.7202956"></trkpt>
<trkpt lat="45.4185934" lon="-121.7200745"></trkpt>
<trkpt lat="45.4178963" lon="-121.7196035"></trkpt>
<trkpt lat="45.4171101" lon="-121.7198115"></trkpt>
<trkpt lat="45.4166827" lon="-121.7193250"></trkpt>
<trkpt lat="45.4161855" lon="-121.7190778"></trkpt>
<trkpt lat="45.4159291" lon="-121.7193146"></trkpt>
<trkpt lat="45.4153644" lon="-121.7193939"></trkpt>
<trkpt lat="45.4151268" lon="-121.7191578"></trkpt>
<trkpt lat="45.4148071" lon="-121.7191043"></trkpt>
<trkpt lat="45.4146310" lon="-121.7187962"></trkpt>
<trkpt lat="45.4142524" lon="-121.7187236"></trkpt>
<trkpt lat="45.4142844" lon="-121.7185595"></trkpt>
<trkpt lat="45.4133520" lon="-121.7180429"></trkpt>
<trkpt lat="45.4131406" lon="-121.7181383"></trkpt>
<trkpt lat="45.4130356" lon="-121.7179036"></trkpt>
<trkpt lat="45.4118436" lon="-121.7168789"></trkpt>
<trkpt lat="45.4109205" lon="-121.7156569"></trkpt>
<trkpt lat="45.4104523" lon="-121.7145250"></trkpt>
<trkpt lat="45.4104930" lon="-121.7143814"></trkpt>
<trkpt lat="45.4102075" lon="-121.7140608"></trkpt>
<trkpt lat="45.4099806" lon="-121.7134527"></trkpt>
</trkseg>
<trkseg>
<trkpt lat="45.4099792" lon="-121.7134610"></trkpt>
<trkpt lat="45.4091489" lon="-121.7134937"></trkpt>
<trkpt lat="45.4086133" lon="-121.7132504"></trkpt>
<trkpt lat="45.4080616" lon="-121.7127670"></trkpt>
<trkpt lat="45.4076426" lon="-121.7126047"></trkpt>
<trkpt lat="45.4075043" lon="-121.7122301"></trkpt>
<trkpt lat="45.4070652" lon="-121.7118980"></trkpt>
<trkpt lat="45.4068712" lon="-121.7114766"></trkpt>
<trkpt lat="45.4067987" lon="-121.7108634"></trkpt>
<trkpt lat="45.4064528" lon="-121.7106934"></trkpt>
<trkpt lat="45.4057286" lon="-121.7110326"></trkpt>
<trkpt lat="45.4056813" lon="-121.7108280"></trkpt>
<trkpt lat="45.4055566" lon="-121.7109216"></trkpt>
<trkpt lat="45.4047244" lon="-121.7093884"></trkpt>
<trkpt lat="45.4039059" lon="-121.7083824"></trkpt>
<trkpt lat="45.4037176" lon="-121.7077738"></trkpt>
<trkpt lat="45.4034533" lon="-121.7074489"></trkpt>
<trkpt lat="45.4026499" lon="-121.7071945"></trkpt>
<trkpt lat="45.4019737" lon="-121.7067004"></trkpt>
<trkpt lat="45.4018086" lon="-121.7067477"></trkpt>
<trkpt lat="45.4014084" lon="-121.7063918"></trkpt>
<trkpt lat="45.4013177" lon="-121.7059701"></trkpt>
<trkpt lat="45.4011965" lon="-121.7058914"></trkpt>
<trkpt lat="45.4010688" lon="-121.7053257"></trkpt>
<trkpt lat="45.4008116" lon="-121.7054978"></trkpt>
<trkpt lat="45.4006075" lon="-121.7053495"></trkpt>
<trkpt lat="45.4005546" lon="-121.7054856"></trkpt>
<trkpt lat="45.3991622" lon="-121.7049765"></trkpt>
<trkpt lat="45.3985560" lon="-121.7042976"></trkpt>
<trkpt lat="45.3981831" lon="-121.7042260"></trkpt>
<trkpt lat="45.3973151" lon="-121.7036992"></trkpt>
<trkpt lat="45.3967974" lon="-121.7036370"></trkpt>
<trkpt lat="45.3963985" lon="-121.7033742"></trkpt>
<trkpt lat="45.3945456" lon="-121.7029688"></trkpt>
<trkpt lat="45.3920595" lon="-121.7015918"></trkpt>
<trkpt lat="45.3907614" lon="-121.7012029"></trkpt>
<trkpt lat="45.3906454" lon="-121.7010483"></trkpt>
<trkpt lat="45.3906726" lon="-121.7008185"></trkpt>
<trkpt lat="45.3909774" lon="-121.7008263"></trkpt>
<trkpt lat="45.3911315" lon="-121.7004300"></trkpt>
<trkpt lat="45.3909963" lon="-121.6998193"></trkpt>
<trkpt lat="45.3908688" lon="-121.6997923"></trkpt>
<trkpt lat="45.3917895" lon="-121.6994679"></trkpt>
<trkpt lat="45.3926205" lon="-121.6994847"></trkpt>
<trkpt lat="45.3925915" lon="-121.6992485"></trkpt>
<trkpt lat="45.3928117" lon="-121.6995661"></trkpt>
</trkseg>
</trk>
<trk>
<name>Barrett Spur 2</name>
<trkseg>
<trkpt lat="45.3928201" lon="-121.6995658"></trkpt>
<trkpt lat="45.3935449" lon="-121.6998805"></trkpt>
<trkpt lat="45.3937897" lon="-121.6997710"></trkpt>
<trkpt lat="45.3941789" lon="-121.6999492"></trkpt>
<trkpt lat="45.3942372" lon="-121.7001375"></trkpt>
<trkpt lat="45.3946353" lon="-121.6999452"></trkpt>
<trkpt lat="45.3953599" lon="-121.7005823"></trkpt>
<trkpt lat="45.3957081" lon="-121.7006533"></trkpt>
<trkpt lat="45.3964324" lon="-121.7016813"></trkpt>
<trkpt lat="45.3965766" lon="-121.7016905"></trkpt>
<trkpt lat="45.3969060" lon="-121.7028225"></trkpt>
<trkpt lat="45.3968739" lon="-121.7033856"></trkpt>
<trkpt lat="45.3974854" lon="-121.7040597"></trkpt>
<trkpt lat="45.3986110" lon="-121.7044455"></trkpt>
<trkpt lat="45.3993308" lon="-121.7050832"></trkpt>
<trkpt lat="45.4006454" lon="-121.7055117"></trkpt>
<trkpt lat="45.4017924" lon="-121.7049952"></trkpt>
<trkpt lat="45.4028690" lon="-121.7048065"></trkpt>
<trkpt lat="45.4055213" lon="-121.7056599"></trkpt>
<trkpt lat="45.4055606" lon="-121.7058477"></trkpt>
</trkseg>
<trkseg>
<trkpt lat="45.4055556" lon="-121.7058619"></trkpt>
<trkpt lat="45.4057016" lon="-121.7055424"></trkpt>
<trkpt lat="45.4064672" lon="-121.7058247"></trkpt>
<trkpt lat="45.4065550" lon="-121.7056490"></trkpt>
<trkpt lat="45.4081392" lon="-121.7055042"></trkpt>
<trkpt lat="45.4084785" lon="-121.7052201"></trkpt>
<trkpt lat="45.4089125" lon="-121.7053029"></trkpt>
<trkpt lat="45.4097597" lon="-121.7050730"></trkpt>
<trkpt lat="45.4098359" lon="-121.7049047"></trkpt>
<trkpt lat="45.4101859" lon="-121.7049419"></trkpt>
<trkpt lat="45.4109946" lon="-121.7045409"></trkpt>
<trkpt lat="45.4110654" lon="-121.7040909"></trkpt>
<trkpt lat="45.4113353" lon="-121.7039421"></trkpt>
<trkpt lat="45.4119105" lon="-121.7047169"></trkpt>
<trkpt lat="45.4120297" lon="-121.7046115"></trkpt>
<trkpt lat="45.4123835" lon="-121.7049762"></trkpt>
<trkpt lat="45.4125020" lon="-121.7053677"></trkpt>
<trkpt lat="45.4134357" lon="-121.7051916"></trkpt>
<trkpt lat="45.4135832" lon="-121.7046182"></trkpt>
<trkpt lat="45.4139565" lon="-121.7044171"></trkpt>
<trkpt lat="45.4140658" lon="-121.7041636"></trkpt>
<trkpt lat="45.4145098" lon="-121.7041176"></trkpt>
<trkpt lat="45.4141414" lon="-121.7043045"></trkpt>
<trkpt lat="45.4141558" lon="-121.7050125"></trkpt>
<trkpt lat="45.4136095" lon="-121.7071948"></trkpt>
<trkpt lat="45.4126067" lon="-121.7080044"></trkpt>
<trkpt lat="45.4122181" lon="-121.7088539"></trkpt>
<trkpt lat="45.4124283" lon="-121.7092346"></trkpt>
<trkpt lat="45.4119295" lon="-121.7101625"></trkpt>
<trkpt lat="45.4124117" lon="-121.7104037"></trkpt>
<trkpt lat="45.4122553" lon="-121.7107970"></trkpt>
<trkpt lat="45.4116919" lon="-121.7107601"></trkpt>
<trkpt lat="45.4116619" lon="-121.7110571"></trkpt>
<trkpt lat="45.4113536" lon="-121.7114942"></trkpt>
<trkpt lat="45.4114186" lon="-121.7117619"></trkpt>
<trkpt lat="45.4110215" lon="-121.7125886"></trkpt>
<trkpt lat="45.4106014" lon="-121.7125816"></trkpt>
<trkpt lat="45.4104916" lon="-121.7129590"></trkpt>
<trkpt lat="45.4102544" lon="-121.7130066"></trkpt>
<trkpt lat="45.4099714" lon="-121.7134279"></trkpt>
</trkseg>
<trkseg>
<trkpt lat="45.4099747" lon="-121.7134529"></trkpt>
<trkpt lat="45.4110685" lon="-121.7158641"></trkpt>
<trkpt lat="45.4121873" lon="-121.7171940"></trkpt>
<trkpt lat="45.4131063" lon="-121.7179663"></trkpt>
<trkpt lat="45.4146646" lon="-121.7186587"></trkpt>
<trkpt lat="45.4147872" lon="-121.7190281"></trkpt>
<trkpt lat="45.4153143" lon="-121.7192079"></trkpt>
<trkpt lat="45.4153716" lon="-121.7193714"></trkpt>
<trkpt lat="45.4164891" lon="-121.7190904"></trkpt>
<trkpt lat="45.4172221" lon="-121.7196833"></trkpt>
<trkpt lat="45.4179416" lon="-121.7195244"></trkpt>
<trkpt lat="45.4185782" lon="-121.7197987"></trkpt>
<trkpt lat="45.4193540" lon="-121.7207025"></trkpt>
<trkpt lat="45.4214007" lon="-121.7218387"></trkpt>
<trkpt lat="45.4226606" lon="-121.7215644"></trkpt>
<trkpt lat="45.4247590" lon="-121.7218690"></trkpt>
<trkpt lat="45.4249036" lon="-121.7221738"></trkpt>
<trkpt lat="45.4259458" lon="-121.7225690"></trkpt>
<trkpt lat="45.4257020" lon="-121.7216118"></trkpt>
<trkpt lat="45.4260738" lon="-121.7212258"></trkpt>
<trkpt lat="45.4272087" lon="-121.7208974"></trkpt>
<trkpt lat="45.4277253" lon="-121.7209468"></trkpt>
<trkpt lat="45.4283981" lon="-121.7213890"></trkpt>
<trkpt lat="45.4288768" lon="-121.7213453"></trkpt>
<trkpt lat="45.4301857" lon="-121.7219605"></trkpt>
<trkpt lat="45.4312165" lon="-121.7219340"></trkpt>
<trkpt lat="45.4334856" lon="-121.7222528"></trkpt>
<trkpt lat="45.4331572" lon="-121.7216508"></trkpt>
<trkpt lat="45.4336070" lon="-121.7217366"></trkpt>
<trkpt lat="45.4350551" lon="-121.7225997"></trkpt>
<trkpt lat="45.4371233" lon="-121.7226122"></trkpt>
<trkpt lat="45.4378561" lon="-121.7223631"></trkpt>
<trkpt lat="45.4387304" lon="-121.7225545"></trkpt>
<trkpt lat="45.4397525" lon="-121.7223926"></trkpt>
<trkpt lat="45.4407832" lon="-121.7243251"></trkpt>
<trkpt lat="45.4422796" lon="-121.7260896"></trkpt>
<trkpt lat="45.4428882" lon="-121.7291117"></trkpt>
<trkpt lat="45.4431708" lon="-121.7295917"></trkpt>
</trkseg>
</trk>
</gpx>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<gpx xmlns="http://www.topografix.com/GPX/1/1" version="1.1" creator="RouteConverter">
<metadata>
<name>Test file by Patrick</name>
</metadata>
<rte>
<name>Patrick's Route</name>
<rtept lon="9.860624216140083" lat="54.9328621088893">
<ele>0.0</ele>
<name>Position 1</name>
</rtept>
<rtept lon="9.86092208681491" lat="54.93293237320851">
<ele>0.0</ele>
<name>Position 2</name>
</rtept>
<rtept lon="9.86187816543752" lat="54.93327743521187">
<ele>0.0</ele>
<name>Position 3</name>
</rtept>
<rtept lon="9.862439849679859" lat="54.93342326167919">
<ele>0.0</ele>
<name>Position 4</name>
</rtept>
</rte>
</gpx>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<gpx xmlns="http://www.topografix.com/GPX/1/1" version="1.1" creator="RouteConverter">
<metadata>
<name>Test file by Andre</name>
</metadata>
<wpt lon="38.737125" lat="-9.139242">
<ele>0.0</ele>
<name>Position 1</name>
</wpt>
</gpx>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<gpx xmlns="http://www.topografix.com/GPX/1/1" version="1.1" creator="RouteConverter">
<metadata>
<name>Test file by Patrick</name>
</metadata>
<wpt lon="9.860624216140083" lat="54.9328621088893">
<ele>0.0</ele>
<name>Position 1</name>
</wpt>
<wpt lon="9.86092208681491" lat="54.93293237320851">
<ele>0.0</ele>
<name>Position 2</name>
</wpt>
<wpt lon="9.86187816543752" lat="54.93327743521187">
<ele>0.0</ele>
<name>Position 3</name>
</wpt>
<wpt lon="9.862439849679859" lat="54.93342326167919">
<ele>0.0</ele>
<name>Position 4</name>
</wpt>
</gpx>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document id="Document_65">
<name>Eiffel Tower Flyto</name>
<visibility>1</visibility>
<open>0</open>
<Folder id="Folder_66">
<name>AutoPlay</name>
<visibility>1</visibility>
<open>0</open>
</Folder>
<gx:Tour id="Tour_69">
<name>eiffel-tower-flyto</name>
<gx:Playlist>
<gx:Wait id="Wait_70">
<gx:duration>0.2</gx:duration>
</gx:Wait>
<gx:FlyTo id="FlyTo_74">
<gx:duration>6</gx:duration>
<LookAt id="LookAt_72">
<longitude>2.29448129999356</longitude>
<latitude>48.8583700998311</latitude>
<altitude>196.5753973788714</altitude>
<heading>0.0</heading>
<tilt>67.0</tilt>
<range>1500.0</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
</gx:FlyTo>
<gx:Wait id="Wait_75">
<gx:duration>4</gx:duration>
</gx:Wait>
<gx:FlyTo id="FlyTo_74">
<gx:duration>6</gx:duration>
<Camera>
<longitude>170.157</longitude>
<latitude>-43.671</latitude>
<altitude>9700</altitude>
<heading>-6.333</heading>
<tilt>33.5</tilt>
</Camera>
</gx:FlyTo>
</gx:Playlist>
</gx:Tour>
</Document>
</kml>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="799px" height="282px" viewBox="0 0 799 282" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 60.1 (88133) - https://sketch.com -->
<title>Group 8</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.354865275 0.275398233 132.426103 0.275398233 132.426103 150.537087 0.354865275 150.537087"></polygon>
<polygon id="path-3" points="0 281.093252 798.641713 281.093252 798.641713 0.533773818 0 0.533773818"></polygon>
</defs>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Logo" transform="translate(-2.000000, -1.000000)">
<g id="Group-9" transform="translate(2.000000, 1.000000)">
<path d="M509.856264,133 L444,280 L460.720027,280 L477.857022,241.425946 L556.519589,241.425946 L573.450164,280 L591,280 L525.139607,133 L509.856264,133 Z M517.291516,152.182795 L550.116438,226.62088 L484.256045,226.62088 L517.291516,152.182795 Z" id="Fill-1" fill="#231F20"></path>
<g id="Group-8">
<g id="Group-4" transform="translate(609.406489, 130.556165)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-3"></g>
<path d="M74.163526,150.537917 C28.549243,150.537917 0.354865275,117.329768 0.354865275,75.6141567 C0.354865275,35.5585383 29.5897942,0.275398233 73.1271204,0.275398233 C97.590438,0.275398233 112.726105,7.33036625 127.239929,19.5769607 L116.664447,32.0269043 C105.471266,22.2744485 93.034399,15.4269795 72.505277,15.4269795 C40.372558,15.4269795 17.3560626,42.6135063 17.3560626,75.1991586 C17.3560626,110.0673 39.5392879,135.801334 74.7853693,135.801334 C91.3720044,135.801334 106.719098,129.364713 116.664447,121.27225 L116.664447,85.1591134 L72.505277,85.1591134 L72.505277,70.4225302 L132.426103,70.4225302 L132.426103,128.327218 C118.948684,140.366313 98.6268436,150.537917 74.163526,150.537917" id="Fill-2" fill="#231F20" mask="url(#mask-2)"></path>
</g>
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-6"></g>
<polygon id="Fill-5" fill="#231F20" mask="url(#mask-4)" points="782.266505 278.603263 798.641713 278.603263 798.641713 133.324872 782.266505 133.324872"></polygon>
<path d="M183.034617,237.488985 C196.167949,198.964709 224.85151,167.673851 261.498812,151.198426 L324.251097,237.488985 L183.034617,237.488985 Z M201.996694,0.53335882 L0.00124368671,278.29575 L50.0637794,278.29575 L201.996694,69.3773967 L237.263503,117.869927 C178.354209,147.704142 137.312548,208.136168 134.870776,278.29575 L403.992144,278.29575 L201.996694,0.53335882 Z" id="Fill-7" fill="#C59454" mask="url(#mask-4)"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,292 @@
{
"asset": {
"version": "2.0"
},
"extensionsUsed": [
"EXT_instance_features",
"EXT_structural_metadata",
"EXT_mesh_gpu_instancing"
],
"extensionsRequired": [
"EXT_mesh_gpu_instancing"
],
"extensions": {
"EXT_structural_metadata": {
"schema": {
"classes": {
"box": {
"properties": {
"name": {
"type": "STRING"
},
"volume": {
"type": "SCALAR",
"componentType": "FLOAT32"
}
}
},
"section": {
"properties": {
"name": {
"type": "STRING"
},
"id": {
"type": "SCALAR",
"componentType": "UINT16"
}
}
}
}
},
"propertyTables": [
{
"name": "Box",
"class": "box",
"count": 4,
"properties": {
"name": {
"stringOffsetType": "UINT16",
"values": 7,
"stringOffsets": 8
},
"volume": {
"values": 9
}
}
},
{
"name": "Section",
"class": "section",
"count": 2,
"properties": {
"name": {
"stringOffsetType": "UINT16",
"values": 10,
"stringOffsets": 11
},
"id": {
"values": 12
}
}
}
]
}
},
"scene": 0,
"scenes": [
{
"nodes": [
0
]
}
],
"nodes": [
{
"mesh": 0,
"extensions": {
"EXT_mesh_gpu_instancing": {
"attributes": {
"TRANSLATION": 3,
"ROTATION": 4,
"SCALE": 5,
"_FEATURE_ID_0": 6
}
},
"EXT_instance_features": {
"featureIds": [
{
"label": "perInstance",
"propertyTable": 0,
"featureCount": 4
},
{
"label": "section",
"propertyTable": 1,
"attribute": 0,
"featureCount": 2
}
]
}
}
}
],
"meshes": [
{
"primitives": [
{
"attributes": {
"POSITION": 0,
"NORMAL": 1
},
"indices": 2,
"mode": 4
}
]
}
],
"accessors": [
{
"name": "Positions",
"bufferView": 0,
"byteOffset": 0,
"componentType": 5126,
"count": 24,
"max": [
0.5,
0.5,
0.5
],
"min": [
-0.5,
-0.5,
-0.5
],
"type": "VEC3"
},
{
"name": "Normals",
"bufferView": 1,
"byteOffset": 0,
"componentType": 5126,
"count": 24,
"type": "VEC3"
},
{
"name": "Indices",
"bufferView": 2,
"byteOffset": 0,
"componentType": 5123,
"count": 36,
"type": "SCALAR"
},
{
"name": "Instance Translations",
"bufferView": 3,
"byteOffset": 0,
"componentType": 5126,
"count": 4,
"type": "VEC3"
},
{
"name": "Instance Rotations",
"bufferView": 4,
"byteOffset": 0,
"componentType": 5126,
"count": 4,
"type": "VEC4"
},
{
"name": "Instance Scales",
"bufferView": 5,
"byteOffset": 0,
"componentType": 5126,
"count": 4,
"type": "VEC3"
},
{
"name": "Instance Feature IDs",
"bufferView": 6,
"byteOffset": 0,
"componentType": 5126,
"count": 4,
"type": "SCALAR"
}
],
"bufferViews": [
{
"name": "Positions",
"buffer": 0,
"byteLength": 288,
"byteOffset": 0
},
{
"name": "Normals",
"buffer": 0,
"byteLength": 288,
"byteOffset": 288
},
{
"name": "Indices",
"buffer": 0,
"byteLength": 72,
"byteOffset": 576
},
{
"name": "Instance Translations",
"buffer": 1,
"byteLength": 48,
"byteOffset": 0
},
{
"name": "Instance Rotations",
"buffer": 1,
"byteLength": 64,
"byteOffset": 48
},
{
"name": "Instance Scales",
"buffer": 1,
"byteLength": 48,
"byteOffset": 112
},
{
"name": "Instance Feature IDs",
"buffer": 1,
"byteLength": 16,
"byteOffset": 160
},
{
"name": "Box Names",
"buffer": 2,
"byteLength": 40,
"byteOffset": 0
},
{
"name": "Box Name Offsets",
"buffer": 2,
"byteLength": 10,
"byteOffset": 40
},
{
"name": "Box Volumes",
"buffer": 2,
"byteLength": 16,
"byteOffset": 56
},
{
"name": "Section Name",
"buffer": 2,
"byteLength": 9,
"byteOffset": 72
},
{
"name": "Section Name Offsets",
"buffer": 2,
"byteLength": 6,
"byteOffset": 88
},
{
"name": "Section IDs",
"buffer": 2,
"byteLength": 4,
"byteOffset": 96
}
],
"buffers": [
{
"name": "Geometry Buffer",
"byteLength": 648,
"uri": "geometry.bin"
},
{
"name": "Instances Buffer",
"byteLength": 176,
"uri": "instances.bin"
},
{
"name": "Metadata Buffer",
"byteLength": 104,
"uri": "metadata.bin"
}
]
}

Some files were not shown because too many files have changed in this diff Show More