@vcmap/core 5.0.0-rc.3 → 5.0.0-rc.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/README.md +12 -5
- package/build/postinstall.js +14 -3
- package/index.d.ts +3477 -2007
- package/index.js +169 -131
- package/package.json +25 -27
- package/src/category/category.js +483 -0
- package/src/category/categoryCollection.js +153 -0
- package/src/cesium/cesium3DTileFeature.js +2 -2
- package/src/cesium/cesium3DTilePointFeature.js +1 -1
- package/src/cesium/cesiumVcsCameraPrimitive.js +16 -8
- package/src/cesium/entity.js +29 -0
- package/src/cesium/wallpaperMaterial.js +5 -3
- package/src/classRegistry.js +169 -0
- package/src/{vcs/vcm/util/featureProvider → featureProvider}/abstractFeatureProvider.js +49 -46
- package/src/{vcs/vcm/util/featureProvider → featureProvider}/tileProviderFeatureProvider.js +13 -5
- package/src/{vcs/vcm/util/featureProvider → featureProvider}/wmsFeatureProvider.js +56 -26
- package/src/{vcs/vcm/interaction → interaction}/abstractInteraction.js +33 -21
- package/src/{vcs/vcm/interaction → interaction}/coordinateAtPixel.js +40 -21
- package/src/{vcs/vcm/interaction → interaction}/eventHandler.js +131 -26
- package/src/{vcs/vcm/interaction → interaction}/featureAtPixelInteraction.js +108 -53
- package/src/interaction/featureProviderInteraction.js +58 -0
- package/src/{vcs/vcm/interaction → interaction}/interactionChain.js +40 -41
- package/src/{vcs/vcm/interaction → interaction}/interactionType.js +24 -31
- package/src/{vcs/vcm/layer/cesium/cesiumTilesetCesium.js → layer/cesium/cesiumTilesetCesiumImpl.js} +67 -55
- package/src/{vcs/vcm/layer → layer}/cesium/clusterContext.js +33 -8
- package/src/{vcs/vcm/layer/cesium/dataSourceCesium.js → layer/cesium/dataSourceCesiumImpl.js} +24 -13
- package/src/layer/cesium/openStreetMapCesiumImpl.js +32 -0
- package/src/{vcs/vcm/layer/cesium/rasterLayerCesium.js → layer/cesium/rasterLayerCesiumImpl.js} +12 -9
- package/src/{vcs/vcm/layer/cesium/singleImageCesium.js → layer/cesium/singleImageCesiumImpl.js} +19 -9
- package/src/{vcs/vcm/layer/cesium/terrainCesium.js → layer/cesium/terrainCesiumImpl.js} +6 -6
- package/src/{vcs/vcm/layer/cesium/tmsCesium.js → layer/cesium/tmsCesiumImpl.js} +21 -10
- package/src/{vcs/vcm/layer/cesium/vectorCesium.js → layer/cesium/vectorCesiumImpl.js} +93 -35
- package/src/layer/cesium/vectorContext.js +363 -0
- package/src/{vcs/vcm/layer/cesium/vectorRasterTileCesium.js → layer/cesium/vectorRasterTileCesiumImpl.js} +21 -13
- package/src/{vcs/vcm/layer → layer}/cesium/vectorTileImageryProvider.js +58 -21
- package/src/{vcs/vcm/layer/cesium/wmsCesium.js → layer/cesium/wmsCesiumImpl.js} +20 -9
- package/src/{vcs/vcm/layer/cesium/wmtsCesium.js → layer/cesium/wmtsCesiumImpl.js} +24 -13
- package/src/{vcs/vcm/layer → layer}/cesium/x3dmHelper.js +6 -3
- package/src/{vcs/vcm/layer/cesiumTileset.js → layer/cesiumTilesetLayer.js} +71 -108
- package/src/{vcs/vcm/layer/czml.js → layer/czmlLayer.js} +23 -20
- package/src/{vcs/vcm/layer/dataSource.js → layer/dataSourceLayer.js} +55 -90
- package/src/{vcs/vcm/layer → layer}/featureLayer.js +89 -74
- package/src/{vcs/vcm/layer/featureStore.js → layer/featureStoreLayer.js} +197 -150
- package/src/{vcs/vcm/layer/featureStoreChanges.js → layer/featureStoreLayerChanges.js} +150 -92
- package/src/{vcs/vcm/layer/featureStoreState.js → layer/featureStoreLayerState.js} +1 -2
- package/src/{vcs/vcm/layer → layer}/featureVisibility.js +114 -82
- package/src/{vcs/vcm/layer → layer}/geojsonHelpers.js +84 -69
- package/src/{vcs/vcm/layer/geojson.js → layer/geojsonLayer.js} +30 -27
- package/src/{vcs/vcm/layer → layer}/globalHider.js +25 -39
- package/src/{vcs/vcm/layer → layer}/layer.js +171 -96
- package/src/{vcs/vcm/layer → layer}/layerImplementation.js +13 -6
- package/src/{vcs/vcm/layer → layer}/layerState.js +0 -1
- package/src/{vcs/vcm/layer → layer}/layerSymbols.js +2 -1
- package/src/{vcs/vcm/layer/oblique/layerOblique.js → layer/oblique/layerObliqueImpl.js} +7 -5
- package/src/{vcs/vcm/layer → layer}/oblique/obliqueHelpers.js +76 -31
- package/src/{vcs/vcm/layer/oblique/vectorOblique.js → layer/oblique/vectorObliqueImpl.js} +198 -80
- package/src/{vcs/vcm/layer/openStreetMap.js → layer/openStreetMapLayer.js} +59 -40
- package/src/layer/openlayers/layerOpenlayersImpl.js +165 -0
- package/src/layer/openlayers/openStreetMapOpenlayersImpl.js +28 -0
- package/src/layer/openlayers/rasterLayerOpenlayersImpl.js +44 -0
- package/src/{vcs/vcm/layer/openlayers/singleImageOpenlayers.js → layer/openlayers/singleImageOpenlayersImpl.js} +8 -7
- package/src/{vcs/vcm/layer/openlayers/tileDebugOpenlayers.js → layer/openlayers/tileDebugOpenlayersImpl.js} +7 -6
- package/src/{vcs/vcm/layer/openlayers/tmsOpenlayers.js → layer/openlayers/tmsOpenlayersImpl.js} +12 -10
- package/src/{vcs/vcm/layer/openlayers/vectorOpenlayers.js → layer/openlayers/vectorOpenlayersImpl.js} +21 -12
- package/src/{vcs/vcm/layer/openlayers/vectorTileOpenlayers.js → layer/openlayers/vectorTileOpenlayersImpl.js} +18 -12
- package/src/{vcs/vcm/layer/openlayers/wmsOpenlayers.js → layer/openlayers/wmsOpenlayersImpl.js} +9 -8
- package/src/{vcs/vcm/layer/openlayers/wmtsOpenlayers.js → layer/openlayers/wmtsOpenlayersImpl.js} +19 -12
- package/src/{vcs/vcm/layer/pointCloud.js → layer/pointCloudLayer.js} +42 -39
- package/src/{vcs/vcm/layer → layer}/rasterLayer.js +86 -37
- package/src/{vcs/vcm/layer/singleImage.js → layer/singleImageLayer.js} +25 -22
- package/src/layer/terrainHelpers.js +98 -0
- package/src/{vcs/vcm/layer/terrain.js → layer/terrainLayer.js} +26 -18
- package/src/{vcs/vcm/layer → layer}/tileLoadedHelper.js +13 -8
- package/src/{vcs/vcm/layer → layer}/tileProvider/mvtTileProvider.js +51 -8
- package/src/layer/tileProvider/staticGeojsonTileProvider.js +87 -0
- package/src/{vcs/vcm/layer → layer}/tileProvider/tileProvider.js +200 -89
- package/src/{vcs/vcm/layer → layer}/tileProvider/urlTemplateTileProvider.js +54 -13
- package/src/{vcs/vcm/layer/tms.js → layer/tmsLayer.js} +22 -22
- package/src/layer/vectorHelpers.js +129 -0
- package/src/{vcs/vcm/layer/vector.js → layer/vectorLayer.js} +124 -94
- package/src/{vcs/vcm/layer → layer}/vectorProperties.js +419 -107
- package/src/{vcs/vcm/layer → layer}/vectorSymbols.js +11 -1
- package/src/{vcs/vcm/layer/vectorTile.js → layer/vectorTileLayer.js} +181 -116
- package/src/{vcs/vcm/layer/wfs.js → layer/wfsLayer.js} +33 -23
- package/src/{vcs/vcm/layer → layer}/wmsHelpers.js +14 -7
- package/src/{vcs/vcm/layer/wms.js → layer/wmsLayer.js} +53 -32
- package/src/{vcs/vcm/layer/wmts.js → layer/wmtsLayer.js} +56 -42
- package/src/{vcs/vcm/maps → map}/baseOLMap.js +83 -35
- package/src/{vcs/vcm/maps → map}/cameraLimiter.js +75 -32
- package/src/{vcs/vcm/maps/cesium.js → map/cesiumMap.js} +429 -276
- package/src/{vcs/vcm/maps → map}/mapState.js +0 -1
- package/src/{vcs/vcm/maps/oblique.js → map/obliqueMap.js} +132 -97
- package/src/{vcs/vcm/maps/openlayers.js → map/openlayersMap.js} +69 -45
- package/src/{vcs/vcm/maps/map.js → map/vcsMap.js} +118 -46
- package/src/oblique/defaultObliqueCollection.js +62 -0
- package/src/{vcs/vcm/oblique → oblique}/helpers.js +221 -78
- package/src/{vcs/vcm/oblique/ObliqueCollection.js → oblique/obliqueCollection.js} +145 -54
- package/src/{vcs/vcm/oblique/ObliqueDataSet.js → oblique/obliqueDataSet.js} +62 -32
- package/src/{vcs/vcm/oblique/ObliqueImage.js → oblique/obliqueImage.js} +58 -26
- package/src/{vcs/vcm/oblique/ObliqueImageMeta.js → oblique/obliqueImageMeta.js} +9 -9
- package/src/{vcs/vcm/oblique/ObliqueProvider.js → oblique/obliqueProvider.js} +85 -35
- package/src/{vcs/vcm/oblique/ObliqueView.js → oblique/obliqueView.js} +45 -5
- package/src/{vcs/vcm/oblique/ObliqueViewDirection.js → oblique/obliqueViewDirection.js} +3 -5
- package/src/{vcs/vcm/oblique → oblique}/parseImageJson.js +62 -28
- package/src/ol/feature.js +34 -1
- package/src/ol/geom/circle.js +14 -5
- package/src/ol/geom/geometryCollection.js +14 -8
- package/src/ol/render/canvas/canvasTileRenderer.js +11 -10
- package/src/overrideClassRegistry.js +214 -0
- package/src/style/arcStyle.js +453 -0
- package/src/style/arrowStyle.js +304 -0
- package/src/{vcs/vcm/util/style → style}/declarativeStyleItem.js +147 -82
- package/src/{vcs/vcm/util/style → style}/shapesCategory.js +8 -8
- package/src/style/styleFactory.js +32 -0
- package/src/{vcs/vcm/util/style → style}/styleHelpers.js +24 -26
- package/src/style/styleItem.js +174 -0
- package/src/{vcs/vcm/util/style → style}/vectorStyleItem.js +230 -156
- package/src/{vcs/vcm/util/style → style}/writeStyle.js +7 -12
- package/src/{vcs/vcm/util → util}/clipping/clippingObject.js +84 -52
- package/src/{vcs/vcm/util → util}/clipping/clippingObjectManager.js +56 -23
- package/src/{vcs/vcm/util → util}/clipping/clippingPlaneHelper.js +149 -88
- package/src/{vcs/vcm/util → util}/collection.js +28 -10
- package/src/util/editor/createFeatureSession.js +195 -0
- package/src/util/editor/editFeaturesSession.js +325 -0
- package/src/util/editor/editGeometrySession.js +452 -0
- package/src/util/editor/editorHelpers.js +300 -0
- package/src/util/editor/editorSessionHelpers.js +132 -0
- package/src/util/editor/editorSymbols.js +21 -0
- package/src/util/editor/interactions/createBBoxInteraction.js +154 -0
- package/src/util/editor/interactions/createCircleInteraction.js +119 -0
- package/src/util/editor/interactions/createLineStringInteraction.js +119 -0
- package/src/util/editor/interactions/createPointInteraction.js +73 -0
- package/src/util/editor/interactions/createPolygonInteraction.js +136 -0
- package/src/util/editor/interactions/editFeaturesMouseOverInteraction.js +88 -0
- package/src/util/editor/interactions/editGeometryMouseOverInteraction.js +119 -0
- package/src/util/editor/interactions/ensureHandlerSelectionInteraction.js +50 -0
- package/src/util/editor/interactions/insertVertexInteraction.js +103 -0
- package/src/util/editor/interactions/mapInteractionController.js +119 -0
- package/src/util/editor/interactions/removeVertexInteraction.js +42 -0
- package/src/util/editor/interactions/selectFeatureMouseOverInteraction.js +152 -0
- package/src/util/editor/interactions/selectMultiFeatureInteraction.js +165 -0
- package/src/util/editor/interactions/selectSingleFeatureInteraction.js +120 -0
- package/src/util/editor/interactions/translateVertexInteraction.js +60 -0
- package/src/util/editor/selectFeaturesSession.js +303 -0
- package/src/util/editor/transformation/create2DHandlers.js +339 -0
- package/src/util/editor/transformation/create3DHandlers.js +678 -0
- package/src/util/editor/transformation/extrudeInteraction.js +106 -0
- package/src/util/editor/transformation/rotateInteraction.js +201 -0
- package/src/util/editor/transformation/scaleInteraction.js +201 -0
- package/src/util/editor/transformation/transformationHandler.js +178 -0
- package/src/util/editor/transformation/transformationTypes.js +88 -0
- package/src/util/editor/transformation/translateInteraction.js +263 -0
- package/src/util/editor/validateGeoemetry.js +24 -0
- package/src/{vcs/vcm/util → util}/exclusiveManager.js +6 -3
- package/src/{vcs/vcm/util → util}/extent.js +26 -20
- package/src/util/featureconverter/arcToCesium.js +121 -0
- package/src/{vcs/vcm/util → util}/featureconverter/circleToCesium.js +70 -37
- package/src/{vcs/vcm/util → util}/featureconverter/convert.js +94 -16
- package/src/util/featureconverter/extent3D.js +284 -0
- package/src/{vcs/vcm/util → util}/featureconverter/featureconverterHelper.js +253 -94
- package/src/util/featureconverter/lineStringToCesium.js +343 -0
- package/src/util/featureconverter/pointHelpers.js +413 -0
- package/src/{vcs/vcm/util → util}/featureconverter/pointToCesium.js +157 -107
- package/src/{vcs/vcm/util → util}/featureconverter/polygonToCesium.js +57 -24
- package/src/util/fetch.js +34 -0
- package/src/{vcs/vcm/util → util}/geometryHelpers.js +25 -17
- package/src/{vcs/vcm/util → util}/indexedCollection.js +27 -8
- package/src/{vcs/vcm/util → util}/isMobile.js +8 -2
- package/src/{vcs/vcm/util → util}/layerCollection.js +109 -19
- package/src/util/locale.js +12 -0
- package/src/{vcs/vcm/util → util}/mapCollection.js +170 -63
- package/src/util/math.js +193 -0
- package/src/util/overrideCollection.js +261 -0
- package/src/{vcs/vcm/util → util}/projection.js +23 -31
- package/src/{vcs/vcm/util → util}/urlHelpers.js +5 -3
- package/src/{vcs/vcm/util → util}/viewpoint.js +83 -57
- package/src/vcsApp.js +657 -0
- package/src/{vcs/vcm/event/vcsEvent.js → vcsEvent.js} +2 -3
- package/src/vcsModule.js +130 -0
- package/src/vcsModuleHelpers.js +136 -0
- package/src/{vcs/vcm/object.js → vcsObject.js} +3 -10
- package/tests/data/dynamicPointCzml.json +53 -0
- package/tests/data/oblique/imageData/imagev34.json +136 -0
- package/tests/data/oblique/imageData/imagev35.json +307 -0
- package/tests/data/oblique/imageData/imagev35PerImageSize.json +333 -0
- package/tests/data/oblique/tiledImageData/12/2199/1342.json +11056 -0
- package/tests/data/oblique/tiledImageData/12/2199/1343.json +11236 -0
- package/tests/data/oblique/tiledImageData/12/2199/1344.json +11077 -0
- package/tests/data/oblique/tiledImageData/12/2200/1342.json +11036 -0
- package/tests/data/oblique/tiledImageData/12/2200/1343.json +11277 -0
- package/tests/data/oblique/tiledImageData/12/2200/1344.json +11131 -0
- package/tests/data/oblique/tiledImageData/12/2201/1342.json +10870 -0
- package/tests/data/oblique/tiledImageData/12/2201/1343.json +11492 -0
- package/tests/data/oblique/tiledImageData/12/2201/1344.json +10909 -0
- package/tests/data/oblique/tiledImageData/image.json +70 -0
- package/tests/data/terrain/13/8800/6485.terrain +0 -0
- package/tests/data/terrain/13/8800/6486.terrain +0 -0
- package/tests/data/terrain/13/8801/6485.terrain +0 -0
- package/tests/data/terrain/13/8801/6486.terrain +0 -0
- package/tests/data/terrain/layer.json +127 -0
- package/tests/data/testGeoJSON.json +149 -0
- package/tests/data/tile.pbf +0 -0
- package/tests/unit/helpers/cesiumHelpers.js +326 -0
- package/tests/unit/helpers/getFileNameFromUrl.js +12 -0
- package/tests/unit/helpers/helpers.js +32 -0
- package/tests/unit/helpers/imageHelpers.js +24 -0
- package/tests/unit/helpers/importJSON.js +15 -0
- package/tests/unit/helpers/obliqueData.js +102 -0
- package/tests/unit/helpers/obliqueHelpers.js +115 -0
- package/tests/unit/helpers/openlayersHelpers.js +25 -0
- package/tests/unit/helpers/terrain/terrainData.js +47 -0
- package/src/vcs/vcm/classRegistry.js +0 -106
- package/src/vcs/vcm/globalCollections.js +0 -11
- package/src/vcs/vcm/interaction/featureProviderInteraction.js +0 -54
- package/src/vcs/vcm/layer/buildings.js +0 -17
- package/src/vcs/vcm/layer/cesium/openStreetMapCesium.js +0 -29
- package/src/vcs/vcm/layer/cesium/pointCloudCesium.js +0 -58
- package/src/vcs/vcm/layer/cesium/vectorContext.js +0 -167
- package/src/vcs/vcm/layer/openlayers/layerOpenlayers.js +0 -79
- package/src/vcs/vcm/layer/openlayers/openStreetMapOpenlayers.js +0 -27
- package/src/vcs/vcm/layer/openlayers/rasterLayerOpenlayers.js +0 -121
- package/src/vcs/vcm/layer/terrainHelpers.js +0 -119
- package/src/vcs/vcm/layer/tileProvider/staticGeojsonTileProvider.js +0 -67
- package/src/vcs/vcm/layer/tileProvider/tileProviderFactory.js +0 -28
- package/src/vcs/vcm/layer/vectorHelpers.js +0 -206
- package/src/vcs/vcm/util/dateTime.js +0 -60
- package/src/vcs/vcm/util/featureProvider/featureProviderHelpers.js +0 -51
- package/src/vcs/vcm/util/featureconverter/extent3d.js +0 -154
- package/src/vcs/vcm/util/featureconverter/lineStringToCesium.js +0 -171
- package/src/vcs/vcm/util/locale.js +0 -53
- package/src/vcs/vcm/util/math.js +0 -71
- package/src/vcs/vcm/util/splitScreen.js +0 -233
- package/src/vcs/vcm/util/style/styleFactory.js +0 -48
- package/src/vcs/vcm/util/style/styleItem.js +0 -243
- /package/src/{vcs/vcm/util/featureProvider → featureProvider}/featureProviderSymbols.js +0 -0
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "v3.5-3-gda4794e_64bit",
|
|
3
|
+
"info": "- the corner points of the images are sorted like [lower left, lower right, upper right, upper left] always with respect to north - the view direction angle is either calculated from camera pose and center on ground or the center of footprint edges in view direction - if the images have same size the data can be found in generalImageInfo otherwise the data is stored in the data regarding the images - view-direction is north, east, south, west with 0, 1, 2, 3",
|
|
4
|
+
"generalImageInfo": {
|
|
5
|
+
"width": 11608,
|
|
6
|
+
"height": 8708,
|
|
7
|
+
"tile-resolution": [32, 16, 8, 4, 2, 1],
|
|
8
|
+
"crs": "+proj=utm +zone=33 +ellps=GRS80 +units=m +no_defs ",
|
|
9
|
+
"tile-width": 512,
|
|
10
|
+
"tile-height": 512,
|
|
11
|
+
"cameraParameter": [
|
|
12
|
+
{
|
|
13
|
+
"name": "119_front",
|
|
14
|
+
"principal-point": [5805.89, 4373.07],
|
|
15
|
+
"pixel-size": [0.0046, 0.0046],
|
|
16
|
+
"radial-distorsion-expected-2-found": [
|
|
17
|
+
1.41899e-5, -0.00369415, 5.85035e-5, 2.90641e-6, -2.00567e-9
|
|
18
|
+
],
|
|
19
|
+
"radial-distorsion-found-2-expected": [
|
|
20
|
+
-1.26063e-5, 0.00370512, -5.85165e-5, -2.99588e-6, 4.76671e-9
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "116_back",
|
|
25
|
+
"principal-point": [5813.5, 4348.07],
|
|
26
|
+
"pixel-size": [0.0046, 0.0046],
|
|
27
|
+
"radial-distorsion-expected-2-found": [
|
|
28
|
+
1.41899e-5, -0.00369415, 5.85035e-5, 2.90641e-6, -2.00567e-9
|
|
29
|
+
],
|
|
30
|
+
"radial-distorsion-found-2-expected": [
|
|
31
|
+
-1.26063e-5, 0.00370512, -5.85165e-5, -2.99588e-6, 4.76671e-9
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "111_right",
|
|
36
|
+
"principal-point": [5813.07, 4338.72],
|
|
37
|
+
"pixel-size": [0.0046, 0.0046],
|
|
38
|
+
"radial-distorsion-expected-2-found": [
|
|
39
|
+
1.41899e-5, -0.00369415, 5.85035e-5, 2.90641e-6, -2.00567e-9
|
|
40
|
+
],
|
|
41
|
+
"radial-distorsion-found-2-expected": [
|
|
42
|
+
-1.26063e-5, 0.00370512, -5.85165e-5, -2.99588e-6, 4.76671e-9
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "110_left",
|
|
47
|
+
"principal-point": [5793.07, 4378.5],
|
|
48
|
+
"pixel-size": [0.0046, 0.0046],
|
|
49
|
+
"radial-distorsion-expected-2-found": [
|
|
50
|
+
1.41899e-5, -0.00369415, 5.85035e-5, 2.90641e-6, -2.00567e-9
|
|
51
|
+
],
|
|
52
|
+
"radial-distorsion-found-2-expected": [
|
|
53
|
+
-1.26063e-5, 0.00370512, -5.85165e-5, -2.99588e-6, 4.76671e-9
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"images": [
|
|
59
|
+
[
|
|
60
|
+
"name",
|
|
61
|
+
"camera-index",
|
|
62
|
+
"view-direction",
|
|
63
|
+
"view-direction-angle",
|
|
64
|
+
"groundCoordinates",
|
|
65
|
+
"centerPointOnGround",
|
|
66
|
+
"projection-center",
|
|
67
|
+
"p-to-realworld",
|
|
68
|
+
"p-to-image"
|
|
69
|
+
],
|
|
70
|
+
[
|
|
71
|
+
"036_064_116005331",
|
|
72
|
+
1,
|
|
73
|
+
1,
|
|
74
|
+
1.57237115711512,
|
|
75
|
+
[
|
|
76
|
+
[390281, 5819234, 0],
|
|
77
|
+
[390084, 5818019, 0],
|
|
78
|
+
[389056, 5818019, 0],
|
|
79
|
+
[388858, 5819237, 0]
|
|
80
|
+
],
|
|
81
|
+
[389569.75, 5818627.25],
|
|
82
|
+
[389572.40665, 5816940.30775, 1868.77036],
|
|
83
|
+
[
|
|
84
|
+
[0.00459999230713535, -5.24737586640063e-6, -26.8744950492574],
|
|
85
|
+
[3.53495942400042e-7, -0.00347176574870502, 86.3445615661197],
|
|
86
|
+
[-8.40531646140101e-6, -0.00301774999812056, -68.8002688601685]
|
|
87
|
+
],
|
|
88
|
+
[
|
|
89
|
+
[
|
|
90
|
+
-23602.3023362096, -3815.66571425929, 4430.76719255635,
|
|
91
|
+
31382025331.3711
|
|
92
|
+
],
|
|
93
|
+
[
|
|
94
|
+
33.1489956770125, 14967.2304404928, 18770.9744325052, -87111478619.357
|
|
95
|
+
],
|
|
96
|
+
[0.001429492069, -0.656033595561, 0.754730334655, 3814140.95691214]
|
|
97
|
+
]
|
|
98
|
+
],
|
|
99
|
+
[
|
|
100
|
+
"037_089_119005484",
|
|
101
|
+
0,
|
|
102
|
+
1,
|
|
103
|
+
1.56656904012253,
|
|
104
|
+
[
|
|
105
|
+
[389678, 5818063, 0],
|
|
106
|
+
[389472, 5819315, 0],
|
|
107
|
+
[390922, 5819310, 0],
|
|
108
|
+
[390715, 5818062, 0]
|
|
109
|
+
],
|
|
110
|
+
[390196.75, 5818687.5],
|
|
111
|
+
[390189.3748, 5816942.84518, 1862.60553],
|
|
112
|
+
[
|
|
113
|
+
[0.00459999086935015, 3.19978809220038e-6, -26.51839476636],
|
|
114
|
+
[-3.3682833322004e-6, -0.00341871132281801, 87.5880954567889],
|
|
115
|
+
[8.52388322320102e-6, -0.00307772686452337, -67.2539235628297]
|
|
116
|
+
],
|
|
117
|
+
[
|
|
118
|
+
[
|
|
119
|
+
-23605.5758217429, -3867.27666732079, 4271.19438117755,
|
|
120
|
+
31698416661.709
|
|
121
|
+
],
|
|
122
|
+
[
|
|
123
|
+
-24.5775249251014, 14609.7067399228, 19036.6312806106,
|
|
124
|
+
-85009696936.5834
|
|
125
|
+
],
|
|
126
|
+
[-0.001867077136, -0.66907101842, 0.743196129116, 3891292.10595595]
|
|
127
|
+
]
|
|
128
|
+
],
|
|
129
|
+
[
|
|
130
|
+
"034_070_110005034",
|
|
131
|
+
3,
|
|
132
|
+
2,
|
|
133
|
+
0.00329509572206053,
|
|
134
|
+
[
|
|
135
|
+
[390768, 5820024, 0],
|
|
136
|
+
[390772, 5818572, 0],
|
|
137
|
+
[389509, 5818777, 0],
|
|
138
|
+
[389512, 5819816, 0]
|
|
139
|
+
],
|
|
140
|
+
[390140.25, 5819297.25],
|
|
141
|
+
[388377.12399, 5819291.44031, 1865.82356],
|
|
142
|
+
[
|
|
143
|
+
[1.55914574466019e-5, -0.00340961408389241, 87.6938016145683],
|
|
144
|
+
[-0.00459997342787515, -1.07712825590013e-5, 26.9625133712329],
|
|
145
|
+
[-1.17017196140014e-6, -0.00308778493072597, -66.9228545838026]
|
|
146
|
+
],
|
|
147
|
+
[
|
|
148
|
+
[
|
|
149
|
+
-3968.58636381359, 23580.3736609866, 4299.96174913789,
|
|
150
|
+
-135687781416.345
|
|
151
|
+
],
|
|
152
|
+
[
|
|
153
|
+
14549.8536663691, 44.4616262631384, 19083.6267531362,
|
|
154
|
+
-5945172162.96139
|
|
155
|
+
],
|
|
156
|
+
[-0.671253120419, -0.002463747739, 0.741224107996, 273653.629102351]
|
|
157
|
+
]
|
|
158
|
+
],
|
|
159
|
+
[
|
|
160
|
+
"033_067_111004896",
|
|
161
|
+
2,
|
|
162
|
+
2,
|
|
163
|
+
0.00110443406087427,
|
|
164
|
+
[
|
|
165
|
+
[388925, 5818366, 0],
|
|
166
|
+
[388927, 5819406, 0],
|
|
167
|
+
[390191, 5819612, 0],
|
|
168
|
+
[390192, 5818155, 0]
|
|
169
|
+
],
|
|
170
|
+
[389558.75, 5818884.75],
|
|
171
|
+
[387791.25724, 5818882.79792, 1866.39078],
|
|
172
|
+
[
|
|
173
|
+
[-5.33111150640064e-6, -0.00340709407100301, 87.8068491445543],
|
|
174
|
+
[-0.00459999265119235, 8.15452347700098e-6, 26.7295909572172],
|
|
175
|
+
[-6.26005197440075e-6, -0.00309057332789217, -67.0234761892616]
|
|
176
|
+
],
|
|
177
|
+
[
|
|
178
|
+
[
|
|
179
|
+
-3878.22383590566, 23616.6726992098, 4337.72466368568,
|
|
180
|
+
-135926805105.673
|
|
181
|
+
],
|
|
182
|
+
[
|
|
183
|
+
14578.2054138138, -42.8631882994904, 19081.6806408012,
|
|
184
|
+
-5439498609.48081
|
|
185
|
+
],
|
|
186
|
+
[-0.671865106049, -0.000229319231, 0.740673495331, 260495.40971625]
|
|
187
|
+
]
|
|
188
|
+
],
|
|
189
|
+
[
|
|
190
|
+
"036_079_119005316",
|
|
191
|
+
0,
|
|
192
|
+
3,
|
|
193
|
+
-1.57330461239723,
|
|
194
|
+
[
|
|
195
|
+
[390123, 5818956, 0],
|
|
196
|
+
[390329, 5817698, 0],
|
|
197
|
+
[388873, 5817701, 0],
|
|
198
|
+
[389081, 5818955, 0]
|
|
199
|
+
],
|
|
200
|
+
[389601.5, 5818327.5],
|
|
201
|
+
[389605.89027, 5820077.80339, 1869.28889],
|
|
202
|
+
[
|
|
203
|
+
[-0.00459999733230875, -7.54523533000091e-7, 26.5948576965853],
|
|
204
|
+
[2.71305730360033e-6, 0.00342029666656961, -87.5496677721687],
|
|
205
|
+
[4.1451254212005e-6, -0.00307596653807357, -67.2737629272974]
|
|
206
|
+
],
|
|
207
|
+
[
|
|
208
|
+
[23600.94875116, 3868.41455561379, 4295.66374493931, -31717572175.3645],
|
|
209
|
+
[
|
|
210
|
+
8.52489506787543, -14619.5128062059, 19029.1155398839,
|
|
211
|
+
85047809716.1772
|
|
212
|
+
],
|
|
213
|
+
[0.001064406056, 0.668688137854, 0.743542225655, -3893621.58260498]
|
|
214
|
+
]
|
|
215
|
+
],
|
|
216
|
+
[
|
|
217
|
+
"037_106_116005501",
|
|
218
|
+
1,
|
|
219
|
+
3,
|
|
220
|
+
-1.56513600634522,
|
|
221
|
+
[
|
|
222
|
+
[389472, 5818113, 0],
|
|
223
|
+
[389679, 5819372, 0],
|
|
224
|
+
[390720, 5819375, 0],
|
|
225
|
+
[390932, 5818106, 0]
|
|
226
|
+
],
|
|
227
|
+
[390200.75, 5818741.5],
|
|
228
|
+
[390190.80176, 5820499.0213, 1870.42587],
|
|
229
|
+
[
|
|
230
|
+
[-0.00459995827602715, 1.16415776592014e-5, 27.0633091756848],
|
|
231
|
+
[-1.91673105900023e-6, 0.00341474577602861, -87.6074258506486],
|
|
232
|
+
[-1.94983319720023e-5, -0.00308210573451937, -67.1089787115916]
|
|
233
|
+
],
|
|
234
|
+
[
|
|
235
|
+
[
|
|
236
|
+
23590.5222679364, 3905.04376267572, 4415.60535654786,
|
|
237
|
+
-31942367258.9415
|
|
238
|
+
],
|
|
239
|
+
[
|
|
240
|
+
-74.6488094839522, -14613.7141496421, 19047.3712981155,
|
|
241
|
+
85052609488.3415
|
|
242
|
+
],
|
|
243
|
+
[-0.003425775734, 0.670027635749, 0.742328250435, -3899946.96190435]
|
|
244
|
+
]
|
|
245
|
+
],
|
|
246
|
+
[
|
|
247
|
+
"039_102_110005854",
|
|
248
|
+
3,
|
|
249
|
+
4,
|
|
250
|
+
-3.14010863788609,
|
|
251
|
+
[
|
|
252
|
+
[388984, 5818090, 0],
|
|
253
|
+
[388970, 5819551, 0],
|
|
254
|
+
[390239, 5819349, 0],
|
|
255
|
+
[390242, 5818300, 0]
|
|
256
|
+
],
|
|
257
|
+
[389608.75, 5818822.5],
|
|
258
|
+
[391372.35538, 5818825.11722, 1889.13157],
|
|
259
|
+
[
|
|
260
|
+
[-2.06972122252025e-5, 0.00342987676491461, -87.2207966460982],
|
|
261
|
+
[0.00459995339488895, 1.58488093364019e-5, -27.0316460950464],
|
|
262
|
+
[6.24713635200075e-7, -0.00306523966318317, -67.5105264115358]
|
|
263
|
+
],
|
|
264
|
+
[
|
|
265
|
+
[
|
|
266
|
+
3966.37217547338, -23577.7614017071, 4316.29816079106,
|
|
267
|
+
135634387776.324
|
|
268
|
+
],
|
|
269
|
+
[
|
|
270
|
+
-14675.2546370275, -68.6090601726124, 18987.2910847475,
|
|
271
|
+
6106843604.67901
|
|
272
|
+
],
|
|
273
|
+
[0.666350165206, 0.002896938802, 0.745633331521, -279056.413394872]
|
|
274
|
+
]
|
|
275
|
+
],
|
|
276
|
+
[
|
|
277
|
+
"040_105_111006020",
|
|
278
|
+
2,
|
|
279
|
+
4,
|
|
280
|
+
-3.14062634772144,
|
|
281
|
+
[
|
|
282
|
+
[390855, 5819298, 0],
|
|
283
|
+
[390851, 5818254, 0],
|
|
284
|
+
[389576, 5818044, 0],
|
|
285
|
+
[389579, 5819509, 0]
|
|
286
|
+
],
|
|
287
|
+
[390215.25, 5818776.25],
|
|
288
|
+
[391989.61516, 5818777.96458, 1880.40415],
|
|
289
|
+
[
|
|
290
|
+
[-4.02627654600048e-7, 0.00341147966608401, -87.6783044897823],
|
|
291
|
+
[0.00459999751865015, -2.89508735360035e-6, -26.8172945002065],
|
|
292
|
+
[-4.76091488160057e-6, -0.00308574109515797, -67.1565915411323]
|
|
293
|
+
],
|
|
294
|
+
[
|
|
295
|
+
[
|
|
296
|
+
3901.55026000224, -23613.2274954749, 4335.56196775055,
|
|
297
|
+
135862608029.622
|
|
298
|
+
],
|
|
299
|
+
[
|
|
300
|
+
-14605.2849388721, 18.4494255010894, 19061.0009676898,
|
|
301
|
+
5581924526.60292
|
|
302
|
+
],
|
|
303
|
+
[0.670813571087, 0.000826283979, 0.741625559228, -269154.472363307]
|
|
304
|
+
]
|
|
305
|
+
]
|
|
306
|
+
]
|
|
307
|
+
}
|
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "v3.5-3-gda4794e_64bit",
|
|
3
|
+
"info": "- the corner points of the images are sorted like [lower left, lower right, upper right, upper left] always with respect to north - the view direction angle is either calculated from camera pose and center on ground or the center of footprint edges in view direction - if the images have same size the data can be found in generalImageInfo otherwise the data is stored in the data regarding the images - view-direction is north, east, south, west with 0, 1, 2, 3",
|
|
4
|
+
"generalImageInfo": {
|
|
5
|
+
"crs": "+proj=utm +zone=33 +ellps=GRS80 +units=m +no_defs ",
|
|
6
|
+
"tile-width": 512,
|
|
7
|
+
"tile-height": 512,
|
|
8
|
+
"cameraParameter": [
|
|
9
|
+
{
|
|
10
|
+
"name": "119_front",
|
|
11
|
+
"principal-point": [5805.89, 4373.07],
|
|
12
|
+
"pixel-size": [0.0046, 0.0046],
|
|
13
|
+
"radial-distorsion-expected-2-found": [
|
|
14
|
+
1.41899e-5, -0.00369415, 5.85035e-5, 2.90641e-6, -2.00567e-9
|
|
15
|
+
],
|
|
16
|
+
"radial-distorsion-found-2-expected": [
|
|
17
|
+
-1.26063e-5, 0.00370512, -5.85165e-5, -2.99588e-6, 4.76671e-9
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "116_back",
|
|
22
|
+
"principal-point": [5813.5, 4348.07],
|
|
23
|
+
"pixel-size": [0.0046, 0.0046],
|
|
24
|
+
"radial-distorsion-expected-2-found": [
|
|
25
|
+
1.41899e-5, -0.00369415, 5.85035e-5, 2.90641e-6, -2.00567e-9
|
|
26
|
+
],
|
|
27
|
+
"radial-distorsion-found-2-expected": [
|
|
28
|
+
-1.26063e-5, 0.00370512, -5.85165e-5, -2.99588e-6, 4.76671e-9
|
|
29
|
+
],
|
|
30
|
+
"size": [1000, 1000],
|
|
31
|
+
"tileResolution": [16, 8, 4, 2, 1]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "111_right",
|
|
35
|
+
"principal-point": [5813.07, 4338.72],
|
|
36
|
+
"pixel-size": [0.0046, 0.0046],
|
|
37
|
+
"radial-distorsion-expected-2-found": [
|
|
38
|
+
1.41899e-5, -0.00369415, 5.85035e-5, 2.90641e-6, -2.00567e-9
|
|
39
|
+
],
|
|
40
|
+
"radial-distorsion-found-2-expected": [
|
|
41
|
+
-1.26063e-5, 0.00370512, -5.85165e-5, -2.99588e-6, 4.76671e-9
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "110_left",
|
|
46
|
+
"principal-point": [5793.07, 4378.5],
|
|
47
|
+
"pixel-size": [0.0046, 0.0046],
|
|
48
|
+
"radial-distorsion-expected-2-found": [
|
|
49
|
+
1.41899e-5, -0.00369415, 5.85035e-5, 2.90641e-6, -2.00567e-9
|
|
50
|
+
],
|
|
51
|
+
"radial-distorsion-found-2-expected": [
|
|
52
|
+
-1.26063e-5, 0.00370512, -5.85165e-5, -2.99588e-6, 4.76671e-9
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"images": [
|
|
58
|
+
[
|
|
59
|
+
"name",
|
|
60
|
+
"camera-index",
|
|
61
|
+
"width",
|
|
62
|
+
"height",
|
|
63
|
+
"tile-resolution",
|
|
64
|
+
"view-direction",
|
|
65
|
+
"view-direction-angle",
|
|
66
|
+
"groundCoordinates",
|
|
67
|
+
"centerPointOnGround",
|
|
68
|
+
"projection-center",
|
|
69
|
+
"p-to-realworld",
|
|
70
|
+
"p-to-image"
|
|
71
|
+
],
|
|
72
|
+
[
|
|
73
|
+
"036_064_116005331",
|
|
74
|
+
1,
|
|
75
|
+
11608,
|
|
76
|
+
8708,
|
|
77
|
+
[32, 16, 8, 4, 2, 1],
|
|
78
|
+
1,
|
|
79
|
+
1.57237115711512,
|
|
80
|
+
[
|
|
81
|
+
[390281, 5819234, 0],
|
|
82
|
+
[390084, 5818019, 0],
|
|
83
|
+
[389056, 5818019, 0],
|
|
84
|
+
[388858, 5819237, 0]
|
|
85
|
+
],
|
|
86
|
+
[389569.75, 5818627.25],
|
|
87
|
+
[389572.40665, 5816940.30775, 1868.77036],
|
|
88
|
+
[
|
|
89
|
+
[0.00459999230713535, -5.24737586640063e-6, -26.8744950492574],
|
|
90
|
+
[3.53495942400042e-7, -0.00347176574870502, 86.3445615661197],
|
|
91
|
+
[-8.40531646140101e-6, -0.00301774999812056, -68.8002688601685]
|
|
92
|
+
],
|
|
93
|
+
[
|
|
94
|
+
[
|
|
95
|
+
-23602.3023362096, -3815.66571425929, 4430.76719255635,
|
|
96
|
+
31382025331.3711
|
|
97
|
+
],
|
|
98
|
+
[
|
|
99
|
+
33.1489956770125, 14967.2304404928, 18770.9744325052, -87111478619.357
|
|
100
|
+
],
|
|
101
|
+
[0.001429492069, -0.656033595561, 0.754730334655, 3814140.95691214]
|
|
102
|
+
]
|
|
103
|
+
],
|
|
104
|
+
[
|
|
105
|
+
"037_089_119005484",
|
|
106
|
+
0,
|
|
107
|
+
11608,
|
|
108
|
+
8708,
|
|
109
|
+
[32, 16, 8, 4, 2, 1],
|
|
110
|
+
1,
|
|
111
|
+
1.56656904012253,
|
|
112
|
+
[
|
|
113
|
+
[389678, 5818063, 0],
|
|
114
|
+
[389472, 5819315, 0],
|
|
115
|
+
[390922, 5819310, 0],
|
|
116
|
+
[390715, 5818062, 0]
|
|
117
|
+
],
|
|
118
|
+
[390196.75, 5818687.5],
|
|
119
|
+
[390189.3748, 5816942.84518, 1862.60553],
|
|
120
|
+
[
|
|
121
|
+
[0.00459999086935015, 3.19978809220038e-6, -26.51839476636],
|
|
122
|
+
[-3.3682833322004e-6, -0.00341871132281801, 87.5880954567889],
|
|
123
|
+
[8.52388322320102e-6, -0.00307772686452337, -67.2539235628297]
|
|
124
|
+
],
|
|
125
|
+
[
|
|
126
|
+
[
|
|
127
|
+
-23605.5758217429, -3867.27666732079, 4271.19438117755,
|
|
128
|
+
31698416661.709
|
|
129
|
+
],
|
|
130
|
+
[
|
|
131
|
+
-24.5775249251014, 14609.7067399228, 19036.6312806106,
|
|
132
|
+
-85009696936.5834
|
|
133
|
+
],
|
|
134
|
+
[-0.001867077136, -0.66907101842, 0.743196129116, 3891292.10595595]
|
|
135
|
+
]
|
|
136
|
+
],
|
|
137
|
+
[
|
|
138
|
+
"034_070_110005034",
|
|
139
|
+
3,
|
|
140
|
+
11608,
|
|
141
|
+
8708,
|
|
142
|
+
[32, 16, 8, 4, 2, 1],
|
|
143
|
+
2,
|
|
144
|
+
0.00329509572206053,
|
|
145
|
+
[
|
|
146
|
+
[390768, 5820024, 0],
|
|
147
|
+
[390772, 5818572, 0],
|
|
148
|
+
[389509, 5818777, 0],
|
|
149
|
+
[389512, 5819816, 0]
|
|
150
|
+
],
|
|
151
|
+
[390140.25, 5819297.25],
|
|
152
|
+
[388377.12399, 5819291.44031, 1865.82356],
|
|
153
|
+
[
|
|
154
|
+
[1.55914574466019e-5, -0.00340961408389241, 87.6938016145683],
|
|
155
|
+
[-0.00459997342787515, -1.07712825590013e-5, 26.9625133712329],
|
|
156
|
+
[-1.17017196140014e-6, -0.00308778493072597, -66.9228545838026]
|
|
157
|
+
],
|
|
158
|
+
[
|
|
159
|
+
[
|
|
160
|
+
-3968.58636381359, 23580.3736609866, 4299.96174913789,
|
|
161
|
+
-135687781416.345
|
|
162
|
+
],
|
|
163
|
+
[
|
|
164
|
+
14549.8536663691, 44.4616262631384, 19083.6267531362,
|
|
165
|
+
-5945172162.96139
|
|
166
|
+
],
|
|
167
|
+
[-0.671253120419, -0.002463747739, 0.741224107996, 273653.629102351]
|
|
168
|
+
]
|
|
169
|
+
],
|
|
170
|
+
[
|
|
171
|
+
"033_067_111004896",
|
|
172
|
+
2,
|
|
173
|
+
11608,
|
|
174
|
+
8708,
|
|
175
|
+
[32, 16, 8, 4, 2, 1],
|
|
176
|
+
2,
|
|
177
|
+
0.00110443406087427,
|
|
178
|
+
[
|
|
179
|
+
[388925, 5818366, 0],
|
|
180
|
+
[388927, 5819406, 0],
|
|
181
|
+
[390191, 5819612, 0],
|
|
182
|
+
[390192, 5818155, 0]
|
|
183
|
+
],
|
|
184
|
+
[389558.75, 5818884.75],
|
|
185
|
+
[387791.25724, 5818882.79792, 1866.39078],
|
|
186
|
+
[
|
|
187
|
+
[-5.33111150640064e-6, -0.00340709407100301, 87.8068491445543],
|
|
188
|
+
[-0.00459999265119235, 8.15452347700098e-6, 26.7295909572172],
|
|
189
|
+
[-6.26005197440075e-6, -0.00309057332789217, -67.0234761892616]
|
|
190
|
+
],
|
|
191
|
+
[
|
|
192
|
+
[
|
|
193
|
+
-3878.22383590566, 23616.6726992098, 4337.72466368568,
|
|
194
|
+
-135926805105.673
|
|
195
|
+
],
|
|
196
|
+
[
|
|
197
|
+
14578.2054138138, -42.8631882994904, 19081.6806408012,
|
|
198
|
+
-5439498609.48081
|
|
199
|
+
],
|
|
200
|
+
[-0.671865106049, -0.000229319231, 0.740673495331, 260495.40971625]
|
|
201
|
+
]
|
|
202
|
+
],
|
|
203
|
+
[
|
|
204
|
+
"036_079_119005316",
|
|
205
|
+
0,
|
|
206
|
+
11608,
|
|
207
|
+
8708,
|
|
208
|
+
[32, 16, 8, 4, 2, 1],
|
|
209
|
+
3,
|
|
210
|
+
-1.57330461239723,
|
|
211
|
+
[
|
|
212
|
+
[390123, 5818956, 0],
|
|
213
|
+
[390329, 5817698, 0],
|
|
214
|
+
[388873, 5817701, 0],
|
|
215
|
+
[389081, 5818955, 0]
|
|
216
|
+
],
|
|
217
|
+
[389601.5, 5818327.5],
|
|
218
|
+
[389605.89027, 5820077.80339, 1869.28889],
|
|
219
|
+
[
|
|
220
|
+
[-0.00459999733230875, -7.54523533000091e-7, 26.5948576965853],
|
|
221
|
+
[2.71305730360033e-6, 0.00342029666656961, -87.5496677721687],
|
|
222
|
+
[4.1451254212005e-6, -0.00307596653807357, -67.2737629272974]
|
|
223
|
+
],
|
|
224
|
+
[
|
|
225
|
+
[23600.94875116, 3868.41455561379, 4295.66374493931, -31717572175.3645],
|
|
226
|
+
[
|
|
227
|
+
8.52489506787543, -14619.5128062059, 19029.1155398839,
|
|
228
|
+
85047809716.1772
|
|
229
|
+
],
|
|
230
|
+
[0.001064406056, 0.668688137854, 0.743542225655, -3893621.58260498]
|
|
231
|
+
]
|
|
232
|
+
],
|
|
233
|
+
[
|
|
234
|
+
"037_106_116005501",
|
|
235
|
+
1,
|
|
236
|
+
11608,
|
|
237
|
+
8708,
|
|
238
|
+
[32, 16, 8, 4, 2, 1],
|
|
239
|
+
3,
|
|
240
|
+
-1.56513600634522,
|
|
241
|
+
[
|
|
242
|
+
[389472, 5818113, 0],
|
|
243
|
+
[389679, 5819372, 0],
|
|
244
|
+
[390720, 5819375, 0],
|
|
245
|
+
[390932, 5818106, 0]
|
|
246
|
+
],
|
|
247
|
+
[390200.75, 5818741.5],
|
|
248
|
+
[390190.80176, 5820499.0213, 1870.42587],
|
|
249
|
+
[
|
|
250
|
+
[-0.00459995827602715, 1.16415776592014e-5, 27.0633091756848],
|
|
251
|
+
[-1.91673105900023e-6, 0.00341474577602861, -87.6074258506486],
|
|
252
|
+
[-1.94983319720023e-5, -0.00308210573451937, -67.1089787115916]
|
|
253
|
+
],
|
|
254
|
+
[
|
|
255
|
+
[
|
|
256
|
+
23590.5222679364, 3905.04376267572, 4415.60535654786,
|
|
257
|
+
-31942367258.9415
|
|
258
|
+
],
|
|
259
|
+
[
|
|
260
|
+
-74.6488094839522, -14613.7141496421, 19047.3712981155,
|
|
261
|
+
85052609488.3415
|
|
262
|
+
],
|
|
263
|
+
[-0.003425775734, 0.670027635749, 0.742328250435, -3899946.96190435]
|
|
264
|
+
]
|
|
265
|
+
],
|
|
266
|
+
[
|
|
267
|
+
"039_102_110005854",
|
|
268
|
+
3,
|
|
269
|
+
11608,
|
|
270
|
+
8708,
|
|
271
|
+
[32, 16, 8, 4, 2, 1],
|
|
272
|
+
4,
|
|
273
|
+
-3.14010863788609,
|
|
274
|
+
[
|
|
275
|
+
[388984, 5818090, 0],
|
|
276
|
+
[388970, 5819551, 0],
|
|
277
|
+
[390239, 5819349, 0],
|
|
278
|
+
[390242, 5818300, 0]
|
|
279
|
+
],
|
|
280
|
+
[389608.75, 5818822.5],
|
|
281
|
+
[391372.35538, 5818825.11722, 1889.13157],
|
|
282
|
+
[
|
|
283
|
+
[-2.06972122252025e-5, 0.00342987676491461, -87.2207966460982],
|
|
284
|
+
[0.00459995339488895, 1.58488093364019e-5, -27.0316460950464],
|
|
285
|
+
[6.24713635200075e-7, -0.00306523966318317, -67.5105264115358]
|
|
286
|
+
],
|
|
287
|
+
[
|
|
288
|
+
[
|
|
289
|
+
3966.37217547338, -23577.7614017071, 4316.29816079106,
|
|
290
|
+
135634387776.324
|
|
291
|
+
],
|
|
292
|
+
[
|
|
293
|
+
-14675.2546370275, -68.6090601726124, 18987.2910847475,
|
|
294
|
+
6106843604.67901
|
|
295
|
+
],
|
|
296
|
+
[0.666350165206, 0.002896938802, 0.745633331521, -279056.413394872]
|
|
297
|
+
]
|
|
298
|
+
],
|
|
299
|
+
[
|
|
300
|
+
"040_105_111006020",
|
|
301
|
+
2,
|
|
302
|
+
11608,
|
|
303
|
+
8708,
|
|
304
|
+
[32, 16, 8, 4, 2, 1],
|
|
305
|
+
4,
|
|
306
|
+
-3.14062634772144,
|
|
307
|
+
[
|
|
308
|
+
[390855, 5819298, 0],
|
|
309
|
+
[390851, 5818254, 0],
|
|
310
|
+
[389576, 5818044, 0],
|
|
311
|
+
[389579, 5819509, 0]
|
|
312
|
+
],
|
|
313
|
+
[390215.25, 5818776.25],
|
|
314
|
+
[391989.61516, 5818777.96458, 1880.40415],
|
|
315
|
+
[
|
|
316
|
+
[-4.02627654600048e-7, 0.00341147966608401, -87.6783044897823],
|
|
317
|
+
[0.00459999751865015, -2.89508735360035e-6, -26.8172945002065],
|
|
318
|
+
[-4.76091488160057e-6, -0.00308574109515797, -67.1565915411323]
|
|
319
|
+
],
|
|
320
|
+
[
|
|
321
|
+
[
|
|
322
|
+
3901.55026000224, -23613.2274954749, 4335.56196775055,
|
|
323
|
+
135862608029.622
|
|
324
|
+
],
|
|
325
|
+
[
|
|
326
|
+
-14605.2849388721, 18.4494255010894, 19061.0009676898,
|
|
327
|
+
5581924526.60292
|
|
328
|
+
],
|
|
329
|
+
[0.670813571087, 0.000826283979, 0.741625559228, -269154.472363307]
|
|
330
|
+
]
|
|
331
|
+
]
|
|
332
|
+
]
|
|
333
|
+
}
|