2025-08-07 18:42:39 +08:00
|
|
|
|
const { Cesium } = window;
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-08-07 11:28:32 +08:00
|
|
|
|
|
|
|
|
|
|
export default class LayerMgr {
|
2025-08-07 18:42:39 +08:00
|
|
|
|
constructor() {
|
|
|
|
|
|
// this.viewer = viewer
|
2025-08-07 11:28:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//加载模型
|
2025-08-07 18:42:39 +08:00
|
|
|
|
getGltf(viewer) {
|
|
|
|
|
|
viewer.entities.add({
|
2025-09-10 16:12:55 +08:00
|
|
|
|
position: Cesium.Cartesian3.fromDegrees(114.97, 31.47,250),
|
2025-08-07 18:42:39 +08:00
|
|
|
|
model: {
|
|
|
|
|
|
uri: `${process.env.PUBLIC_URL}/models/dam/scene.gltf` ,
|
2025-09-10 16:12:55 +08:00
|
|
|
|
scale: 10,
|
2025-08-07 18:42:39 +08:00
|
|
|
|
runAnimations: false
|
|
|
|
|
|
},
|
2025-08-07 11:28:32 +08:00
|
|
|
|
});
|
2025-08-07 18:42:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
getWater(viewer) {
|
2025-09-10 16:12:55 +08:00
|
|
|
|
const positions = [
|
2025-10-08 22:36:57 +08:00
|
|
|
|
114.740091973135,31.473712641972,
|
|
|
|
|
|
114.745265596247,31.479994736875,
|
|
|
|
|
|
114.750329463975,31.483633959554,
|
|
|
|
|
|
114.750661051206,31.484780352333,
|
|
|
|
|
|
114.754886312331,31.487387419599,
|
|
|
|
|
|
114.754490646828,31.489155789295,
|
|
|
|
|
|
114.755516914722,31.491816181377,
|
|
|
|
|
|
114.768854784357,31.501109797855,
|
|
|
|
|
|
114.772457389836,31.499611674743,
|
|
|
|
|
|
114.775859436013,31.495997057327,
|
|
|
|
|
|
114.776856155438,31.489458448100,
|
|
|
|
|
|
114.775657108202,31.485776315034,
|
|
|
|
|
|
114.771130342603,31.484720767205,
|
|
|
|
|
|
114.766996228018,31.483154944661,
|
|
|
|
|
|
114.763789073715,31.482059512488,
|
|
|
|
|
|
114.763333322583,31.479400016248,
|
|
|
|
|
|
114.763240976393,31.478143088357,
|
|
|
|
|
|
114.757178107927,31.474480278261,
|
|
|
|
|
|
114.754716711764,31.473552597977,
|
|
|
|
|
|
114.750378828013,31.473575767594,
|
2025-09-10 16:12:55 +08:00
|
|
|
|
]
|
2025-10-08 22:36:57 +08:00
|
|
|
|
// let initialHeight = 74
|
|
|
|
|
|
// let initialHeight = 76
|
|
|
|
|
|
// let initialHeight = 78
|
|
|
|
|
|
// let initialHeight = 80
|
|
|
|
|
|
// let initialHeight = 82
|
|
|
|
|
|
// let initialHeight = 84
|
|
|
|
|
|
let initialHeight = 86
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-09-10 16:12:55 +08:00
|
|
|
|
const geometry = new Cesium.PolygonGeometry({
|
|
|
|
|
|
polygonHierarchy: new Cesium.PolygonHierarchy(
|
|
|
|
|
|
Cesium.Cartesian3.fromDegreesArray(positions)
|
2025-10-08 22:36:57 +08:00
|
|
|
|
// Cesium.Cartesian3.fromDegreesArrayHeights([
|
|
|
|
|
|
// 114.783551451219,31.505432945988,80,
|
|
|
|
|
|
// 114.782956879057,31.505116255788,75,
|
|
|
|
|
|
// 114.781892213916,31.504914405850,70,
|
|
|
|
|
|
// 114.781157359053,31.504636741222,60,
|
|
|
|
|
|
// 114.780745721874,31.504325618018,60,
|
|
|
|
|
|
// 114.780212874098,31.504512397056,60,
|
|
|
|
|
|
// 114.779408140669,31.504317896297,60,
|
|
|
|
|
|
// 114.778706035963,31.503755212927,60,
|
|
|
|
|
|
|
|
|
|
|
|
// 114.779390892782,31.503920292944,60,
|
|
|
|
|
|
// 114.779897537800,31.504217938631,60,
|
|
|
|
|
|
// 114.780613891771,31.504189821141,60,
|
|
|
|
|
|
// 114.781129433998,31.504145193492,60,
|
|
|
|
|
|
// 114.781906501107,31.504529518304,70,
|
|
|
|
|
|
// 114.782778529129,31.504685509343,75,
|
|
|
|
|
|
// 114.783339602099,31.504773152014,80
|
|
|
|
|
|
// ])
|
2025-09-10 16:12:55 +08:00
|
|
|
|
),
|
|
|
|
|
|
extrudedHeight: initialHeight,
|
2025-10-08 22:36:57 +08:00
|
|
|
|
// extrudedHeight: 0,
|
|
|
|
|
|
perPositionHeight:true,
|
2025-09-10 16:12:55 +08:00
|
|
|
|
});
|
|
|
|
|
|
const waterPrimitive = new Cesium.Primitive({
|
|
|
|
|
|
geometryInstances: new Cesium.GeometryInstance({ geometry }),
|
|
|
|
|
|
appearance: new Cesium.EllipsoidSurfaceAppearance({
|
|
|
|
|
|
aboveGround: true,
|
|
|
|
|
|
material: new Cesium.Material({
|
|
|
|
|
|
fabric: {
|
|
|
|
|
|
type: 'Water',
|
|
|
|
|
|
uniforms: {
|
|
|
|
|
|
normalMap: Cesium.buildModuleUrl(
|
|
|
|
|
|
`${process.env.PUBLIC_URL}/models/waternormals.jpg`
|
|
|
|
|
|
),
|
|
|
|
|
|
frequency: 1000.0,
|
|
|
|
|
|
animationSpeed: 0.01,
|
|
|
|
|
|
amplitude: 10,
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
}),
|
|
|
|
|
|
}),
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
// releaseGeometryInstances: false
|
|
|
|
|
|
});
|
|
|
|
|
|
viewer.scene.primitives.add(waterPrimitive);
|
|
|
|
|
|
// 自动抬升
|
|
|
|
|
|
let height = 0;
|
2025-10-08 22:36:57 +08:00
|
|
|
|
// setInterval(() => {
|
|
|
|
|
|
// if (height < 0.4) {
|
|
|
|
|
|
// height += 0.001;
|
|
|
|
|
|
// // height += 0.02;
|
|
|
|
|
|
// // waterPrimitive.extrudedHeight = height; // 触发setter
|
|
|
|
|
|
// var currentModelMatrix = Cesium.Matrix4.clone(waterPrimitive.modelMatrix);
|
|
|
|
|
|
// // 定义平移向量(例如,沿x轴平移100单位)
|
|
|
|
|
|
// var translation = new Cesium.Cartesian3(-height*0.7, height, height*0.8);
|
|
|
|
|
|
// // 创建一个平移矩阵
|
|
|
|
|
|
// var translationMatrix = Cesium.Matrix4.fromTranslation(translation);
|
|
|
|
|
|
// // 计算新的modelMatrix(将平移矩阵应用到当前模型矩阵上)
|
|
|
|
|
|
// var newModelMatrix = Cesium.Matrix4.multiply(translationMatrix, currentModelMatrix, new Cesium.Matrix4());
|
|
|
|
|
|
// waterPrimitive.modelMatrix = newModelMatrix;
|
|
|
|
|
|
// }
|
|
|
|
|
|
// }, 100);
|
2025-09-10 16:12:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
getWater2(viewer) {
|
|
|
|
|
|
// const waterSurface = viewer.entities.add({
|
|
|
|
|
|
// rectangle: {
|
|
|
|
|
|
// coordinates: Cesium.Rectangle.fromDegrees(114.9, 31.4, 115.9, 32.4),
|
|
|
|
|
|
// material: new Cesium.WaterMaterial({
|
|
|
|
|
|
// normalMapUrl: `${process.env.PUBLIC_URL}/models/waternormals.jpg`, // 水波纹法线贴图
|
|
|
|
|
|
// frequency: 1000.0, // 波纹密度
|
|
|
|
|
|
// animationSpeed: 0.05, // 波动速度
|
|
|
|
|
|
// amplitude: 5.0 // 波高
|
2025-08-07 18:42:39 +08:00
|
|
|
|
// }),
|
2025-09-10 16:12:55 +08:00
|
|
|
|
// height: 130.0 // 水面高度(可动态调整)
|
2025-08-07 18:42:39 +08:00
|
|
|
|
// }
|
2025-09-10 16:12:55 +08:00
|
|
|
|
// });
|
|
|
|
|
|
|
2025-08-07 11:28:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-07 18:42:39 +08:00
|
|
|
|
async getQxsy(viewer) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
let tileset = await Cesium.Cesium3DTileset.fromUrl(
|
2025-09-26 09:28:35 +08:00
|
|
|
|
// 'http://res3d.oss-cn-shenzhen.aliyuncs.com/macheng/xiaoyutan/Scene/3DTILE.json',
|
|
|
|
|
|
'https://map1.oss-cn-shenzhen.aliyuncs.com/tsg/tiles/tileset.json',
|
2025-08-07 18:42:39 +08:00
|
|
|
|
{
|
2025-09-26 09:28:35 +08:00
|
|
|
|
maximumScreenSpaceError: 20, //精细程度越小越精细
|
2025-08-07 18:42:39 +08:00
|
|
|
|
maximumMemoryUsage: 1000, //不可设置太高,目标机子空闲内存值以内,防止浏览器过于卡
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
viewer.scene.primitives.add(tileset);
|
2025-09-10 16:12:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-10-09 09:49:16 +08:00
|
|
|
|
const offsetHeight = 10
|
|
|
|
|
|
// const offsetHeight = -70
|
2025-09-10 16:12:55 +08:00
|
|
|
|
const boundingSphere = tileset.boundingSphere
|
|
|
|
|
|
const cartographic = Cesium.Cartographic.fromCartesian(boundingSphere.center)
|
|
|
|
|
|
const surface = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, 0.0)
|
|
|
|
|
|
const offset = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, offsetHeight)
|
|
|
|
|
|
const translation = Cesium.Cartesian3.subtract(offset, surface, new Cesium.Cartesian3())
|
|
|
|
|
|
tileset.modelMatrix = Cesium.Matrix4.fromTranslation(translation)
|
2025-09-26 09:28:35 +08:00
|
|
|
|
// viewer.flyTo(tileset)
|
2025-08-07 18:42:39 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error(`Error creating tileset: ${error}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-08-07 11:28:32 +08:00
|
|
|
|
// fetch(`${process.env.PUBLIC_URL}/data/geojson/macheng/boua.geojson`)
|
|
|
|
|
|
// .then(resp => resp.json())
|
|
|
|
|
|
// .then(data => {
|
|
|
|
|
|
// let features = data.features;
|
|
|
|
|
|
// let positionArray = [];
|
|
|
|
|
|
// // 获取区域的经纬度坐标
|
|
|
|
|
|
// for (let i = 0; i < features[0].geometry.coordinates[0].length; i++) {
|
|
|
|
|
|
// let coor = features[0].geometry.coordinates[0][i];
|
|
|
|
|
|
// positionArray.push(coor[0]);
|
|
|
|
|
|
// positionArray.push(coor[1]);
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// // 遮罩
|
|
|
|
|
|
// let polygonEntity = new Cesium.Entity({
|
|
|
|
|
|
// polygon: {
|
|
|
|
|
|
// hierarchy: {
|
|
|
|
|
|
// // 添加外部区域为1/4半圆,设置为180会报错 [0, 0, 0, 90, 179, 90, 179, 0]
|
|
|
|
|
|
// positions: Cesium.Cartesian3.fromDegreesArray([100, 0, 100, 89, 150, 89, 150, 0]),
|
|
|
|
|
|
// // 中心挖空的“洞”
|
|
|
|
|
|
// holes: [{
|
|
|
|
|
|
// positions: Cesium.Cartesian3.fromDegreesArray(positionArray)
|
|
|
|
|
|
// }]
|
|
|
|
|
|
// },
|
|
|
|
|
|
// material: Cesium.Color.BLACK.withAlpha(0.7) //new Cesium.Color(236,242,249, 1)
|
|
|
|
|
|
// }
|
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
|
|
// // 边界线
|
|
|
|
|
|
// let lineEntity = new Cesium.Entity({
|
|
|
|
|
|
// polyline: {
|
|
|
|
|
|
// positions: Cesium.Cartesian3.fromDegreesArray(positionArray),
|
|
|
|
|
|
// width: 7,
|
|
|
|
|
|
// material: Cesium.Color.fromCssColorString('#7AE3C8'),//边界线颜色//Cesium.Color.YELLOW //new Cesium.Color(122,227,200, 1)
|
|
|
|
|
|
// clampToGround: true,
|
|
|
|
|
|
// zIndex: 10
|
|
|
|
|
|
// }
|
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
|
|
// viewer.entities.add(polygonEntity);
|
|
|
|
|
|
// viewer.entities.add(lineEntity);
|
|
|
|
|
|
// //viewer.flyTo(lineEntity);
|
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-08-07 18:42:39 +08:00
|
|
|
|
// tileset.readyPromise.then(function () {
|
|
|
|
|
|
// viewer.zoomTo(
|
|
|
|
|
|
// tileset,
|
|
|
|
|
|
// new Cesium.HeadingPitchRange(
|
|
|
|
|
|
// 0,
|
|
|
|
|
|
// -0.7,
|
|
|
|
|
|
// 2500
|
|
|
|
|
|
// // tileset.boundingSphere.radius * 10
|
|
|
|
|
|
// )
|
|
|
|
|
|
// );
|
|
|
|
|
|
// });
|
2025-08-07 11:28:32 +08:00
|
|
|
|
|
|
|
|
|
|
//设置倾斜摄影Z轴高度
|
2025-08-07 18:42:39 +08:00
|
|
|
|
// tileset.readyPromise.then(function (tileset) {
|
|
|
|
|
|
// const offsetHeight = 15
|
|
|
|
|
|
// const boundingSphere = tileset.boundingSphere
|
|
|
|
|
|
// const cartographic = Cesium.Cartographic.fromCartesian(boundingSphere.center)
|
|
|
|
|
|
// const surface = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, 0.0)
|
|
|
|
|
|
// const offset = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, offsetHeight)
|
|
|
|
|
|
// const translation = Cesium.Cartesian3.subtract(offset, surface, new Cesium.Cartesian3())
|
|
|
|
|
|
// tileset.modelMatrix = Cesium.Matrix4.fromTranslation(translation)
|
|
|
|
|
|
// // viewer.flyTo(tileset)
|
|
|
|
|
|
// })
|
2025-08-07 11:28:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-10 16:12:55 +08:00
|
|
|
|
async getDem(viewer) {
|
|
|
|
|
|
const terrainProvider = await Cesium.CesiumTerrainProvider.fromUrl(
|
|
|
|
|
|
// "/shzh/mapres/terrain",
|
2025-09-12 11:22:45 +08:00
|
|
|
|
// `${process.env.PUBLIC_URL}/terrain`,
|
2025-09-10 16:12:55 +08:00
|
|
|
|
// "http://192.168.66.51:42225/distribution/terrain/5vjnbauc3frn",
|
2025-10-08 22:36:57 +08:00
|
|
|
|
"https://map1.oss-cn-shenzhen.aliyuncs.com/tsg/terrain",
|
2025-09-10 16:12:55 +08:00
|
|
|
|
{
|
|
|
|
|
|
requestVertexNormals: true
|
|
|
|
|
|
})
|
|
|
|
|
|
viewer.terrainProvider = terrainProvider
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async getWxyx(viewer) {
|
|
|
|
|
|
const tiandiKey = "efc861f25f96dc6e5f884f0403ebfefd"; //天地图key,官网申请
|
|
|
|
|
|
const baseUrl = "https://{s}.tianditu.gov.cn";//'https://t{0-7}.tianditu.gov.cn';
|
|
|
|
|
|
|
|
|
|
|
|
const imageryProvider = new Cesium.UrlTemplateImageryProvider({
|
|
|
|
|
|
//url: `http://res3dstatic{s}.cloudowr.cn/${localStorage.getItem('address')}/dom2/{z}/{x}/{y}.png`,
|
|
|
|
|
|
url: baseUrl + '/DataServer?T=img_w&x={x}&y={y}&l={z}&tk='+tiandiKey,
|
|
|
|
|
|
subdomains: ['t0', 't1', 't2', 't3', 't4', 't5', 't6', 't7'],
|
|
|
|
|
|
//minimumLevel:10,
|
|
|
|
|
|
maximumLevel: 17,
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
viewer.imageryLayers.addImageryProvider(imageryProvider);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
getRlt(viewer) {
|
|
|
|
|
|
function getColorRamp() {
|
|
|
|
|
|
const ramp = document.createElement("canvas");
|
|
|
|
|
|
ramp.width = 100;
|
|
|
|
|
|
ramp.height = 1;
|
|
|
|
|
|
const ctx = ramp.getContext("2d");
|
|
|
|
|
|
|
|
|
|
|
|
let values;
|
|
|
|
|
|
values = [0.0, 0.045, 0.1, 0.15, 0.37, 0.54, 1.0];
|
|
|
|
|
|
|
|
|
|
|
|
const grd = ctx.createLinearGradient(0, 0, 100, 0);
|
|
|
|
|
|
grd.addColorStop(values[0], "#000000"); //black
|
|
|
|
|
|
grd.addColorStop(values[1], "#2747E0"); //blue
|
|
|
|
|
|
grd.addColorStop(values[2], "#D33B7D"); //pink
|
|
|
|
|
|
grd.addColorStop(values[3], "#D33038"); //red
|
|
|
|
|
|
grd.addColorStop(values[4], "#FF9742"); //orange
|
|
|
|
|
|
grd.addColorStop(values[5], "#ffd700"); //yellow
|
|
|
|
|
|
grd.addColorStop(values[6], "#ffffff"); //white
|
|
|
|
|
|
|
|
|
|
|
|
ctx.fillStyle = grd;
|
|
|
|
|
|
ctx.fillRect(0, 0, 100, 1);
|
|
|
|
|
|
|
|
|
|
|
|
return ramp;
|
|
|
|
|
|
}
|
|
|
|
|
|
const minHeight = -414.0; // approximate dead sea elevation
|
|
|
|
|
|
const maxHeight = 8777.0; // approximate everest elevation
|
|
|
|
|
|
let shadingUniforms = {};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function updateMaterial() {
|
|
|
|
|
|
// const globe = viewer.scene.globe;
|
|
|
|
|
|
// let material;
|
|
|
|
|
|
// material = Cesium.Material.fromType("ElevationRamp");
|
|
|
|
|
|
// shadingUniforms = material.uniforms;
|
|
|
|
|
|
// shadingUniforms.minimumHeight = minHeight;
|
|
|
|
|
|
// shadingUniforms.maximumHeight = maxHeight;
|
|
|
|
|
|
// shadingUniforms.image = getColorRamp();
|
|
|
|
|
|
// globe.material = material;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const material = Cesium.Material.fromType("ElevationRamp")
|
|
|
|
|
|
material.uniforms.image = getColorRamp()
|
|
|
|
|
|
viewer.scene.globe.material = material
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
updateMaterial();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
getRlt2(viewer) {
|
|
|
|
|
|
const gridData = {
|
|
|
|
|
|
minLon: 110.0, // 最小经度
|
|
|
|
|
|
minLat: 30.0, // 最小纬度
|
|
|
|
|
|
deltaLon: 0.1, // 经度间隔
|
|
|
|
|
|
deltaLat: 0.1, // 纬度间隔
|
|
|
|
|
|
rows: 10, // 行数(纬度方向)
|
|
|
|
|
|
cols: 10, // 列数(经度方向)
|
|
|
|
|
|
heights: [ // 高度值数组(行优先存储)
|
|
|
|
|
|
/* 10x10 网格高度值 */
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
100, 120, 140, 140,135,130,120,110,100,90,
|
|
|
|
|
|
// ... 共 100 个值
|
|
|
|
|
|
]
|
|
|
|
|
|
};
|
|
|
|
|
|
// 2. 创建颜色映射函数(根据高度返回颜色)
|
|
|
|
|
|
function heightToColor(height) {
|
|
|
|
|
|
// 示例:根据高度值返回渐变色
|
|
|
|
|
|
const minH = 100, maxH = 500;
|
|
|
|
|
|
const ratio = Math.min(1, Math.max(0, (height - minH) / (maxH - minH)));
|
|
|
|
|
|
|
|
|
|
|
|
// 蓝 -> 绿 -> 红 渐变
|
|
|
|
|
|
const r = Math.floor(255 * ratio);
|
|
|
|
|
|
const g = Math.floor(255 * (1 - ratio));
|
|
|
|
|
|
const b = 128;
|
|
|
|
|
|
|
|
|
|
|
|
return new Cesium.Color(r / 255, g / 255, b / 255, 1.0);
|
|
|
|
|
|
}
|
|
|
|
|
|
// 3. 生成网格几何数据
|
|
|
|
|
|
function createGridGeometry(grid) {
|
|
|
|
|
|
const positions = [];
|
|
|
|
|
|
const colors = [];
|
|
|
|
|
|
const indices = [];
|
|
|
|
|
|
let vertexIndex = 0;
|
|
|
|
|
|
|
|
|
|
|
|
for (let row = 0; row < grid.rows; row++) {
|
|
|
|
|
|
for (let col = 0; col < grid.cols; col++) {
|
|
|
|
|
|
// 计算当前网格点经纬度
|
|
|
|
|
|
const lon = grid.minLon + col * grid.deltaLon;
|
|
|
|
|
|
const lat = grid.minLat + row * grid.deltaLat;
|
|
|
|
|
|
const height = grid.heights[row * grid.cols + col];
|
|
|
|
|
|
|
|
|
|
|
|
// 将经纬度转换为笛卡尔坐标
|
|
|
|
|
|
const position = Cesium.Cartesian3.fromDegrees(lon, lat, height);
|
|
|
|
|
|
positions.push(position);
|
|
|
|
|
|
|
|
|
|
|
|
// 计算颜色
|
|
|
|
|
|
const color = heightToColor(height);
|
|
|
|
|
|
colors.push(color.red, color.green, color.blue, color.alpha);
|
|
|
|
|
|
|
|
|
|
|
|
// 生成三角形索引(跳过边界)
|
|
|
|
|
|
if (row < grid.rows - 1 && col < grid.cols - 1) {
|
|
|
|
|
|
const topLeft = vertexIndex;
|
|
|
|
|
|
const topRight = topLeft + 1;
|
|
|
|
|
|
const bottomLeft = topLeft + grid.cols;
|
|
|
|
|
|
const bottomRight = bottomLeft + 1;
|
|
|
|
|
|
|
|
|
|
|
|
// 两个三角形组成一个网格单元
|
|
|
|
|
|
indices.push(topLeft, bottomLeft, topRight);
|
|
|
|
|
|
indices.push(topRight, bottomLeft, bottomRight);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
vertexIndex++;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return { positions, colors, indices };
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 4. 创建Primitive并添加到场景
|
|
|
|
|
|
function createGridPrimitive(geometry) {
|
|
|
|
|
|
const appearance = new Cesium.PerInstanceColorAppearance({
|
|
|
|
|
|
flat: true, // 平面着色
|
|
|
|
|
|
renderState: {
|
|
|
|
|
|
depthTest: { enabled: true } // 启用深度测试
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
const primitive = new Cesium.Primitive({
|
|
|
|
|
|
geometryInstances: new Cesium.GeometryInstance({
|
|
|
|
|
|
geometry: new Cesium.PolygonGeometry({
|
|
|
|
|
|
polygonHierarchy: new Cesium.PolygonHierarchy(geometry.positions),
|
|
|
|
|
|
vertexFormat: appearance.vertexFormat
|
|
|
|
|
|
}),
|
|
|
|
|
|
attributes: {
|
|
|
|
|
|
color: new Cesium.ColorGeometryInstanceAttribute.fromColor(
|
|
|
|
|
|
new Cesium.Color(1.0, 1.0, 1.0, 1.0)
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
}),
|
|
|
|
|
|
appearance: appearance
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
viewer.scene.primitives.add(primitive);
|
|
|
|
|
|
return primitive;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const geometryData = createGridGeometry(gridData);
|
|
|
|
|
|
|
|
|
|
|
|
const gridPrimitive = createGridPrimitive(geometryData);
|
|
|
|
|
|
}
|
|
|
|
|
|
async getRlt3(viewer) {
|
|
|
|
|
|
// const gridData = {
|
|
|
|
|
|
// minLon: 110.0, // 最小经度
|
|
|
|
|
|
// minLat: 30.0, // 最小纬度
|
|
|
|
|
|
// deltaLon: 0.1, // 经度间隔
|
|
|
|
|
|
// deltaLat: 0.1, // 纬度间隔
|
|
|
|
|
|
|
|
|
|
|
|
// maxLon: 110.0 + 10 * 0.1, // minLon + cols * deltaLon
|
|
|
|
|
|
// maxLat: 30.0 + 10 * 0.1, // minLat + rows * deltaLat
|
|
|
|
|
|
|
|
|
|
|
|
// rows: 10, // 行数(纬度方向)
|
|
|
|
|
|
// cols: 10, // 列数(经度方向)
|
|
|
|
|
|
// // heights: [ // 高度值数组(行优先存储)
|
|
|
|
|
|
// // /* 10x10 网格高度值 */
|
|
|
|
|
|
// // 100, 120, 140, ...,
|
|
|
|
|
|
// // 110, 130, 150, ...,
|
|
|
|
|
|
// // // ... 共 100 个值
|
|
|
|
|
|
// // ]
|
|
|
|
|
|
// };
|
|
|
|
|
|
// // 2. 创建颜色映射函数(根据高度返回颜色)
|
|
|
|
|
|
// function heightToColor(height) {
|
|
|
|
|
|
// // 示例:根据高度值返回渐变色
|
|
|
|
|
|
// const minH = 1, maxH = 300;
|
|
|
|
|
|
// const ratio = Math.min(1, Math.max(0, (height - minH) / (maxH - minH)));
|
|
|
|
|
|
// // 蓝 -> 绿 -> 红 渐变
|
|
|
|
|
|
// const r = Math.floor(255 * ratio);
|
|
|
|
|
|
// const g = Math.floor(255 * (1 - ratio));
|
|
|
|
|
|
// const b = 128;
|
|
|
|
|
|
// // return new Cesium.Color(r / 255, g / 255, b / 255, 1.0);
|
|
|
|
|
|
// return [r,g,b,100]
|
|
|
|
|
|
// }
|
|
|
|
|
|
const gridData = {
|
|
|
|
|
|
minLon: 110.0, // 最小经度
|
|
|
|
|
|
minLat: 30.0, // 最小纬度
|
|
|
|
|
|
deltaLon: 0.01, // 经度间隔
|
|
|
|
|
|
deltaLat: 0.01, // 纬度间隔
|
|
|
|
|
|
maxLon: 110.0 + 100 * 0.01, // minLon + cols * deltaLon
|
|
|
|
|
|
maxLat: 30.0 + 100 * 0.01, // minLat + rows * deltaLat
|
|
|
|
|
|
rows: 100, // 行数(纬度方向)
|
|
|
|
|
|
cols: 100, // 列数(经度方向)
|
|
|
|
|
|
cccc:[
|
|
|
|
|
|
[10,10,10,10,10,10,10,10,10,10],
|
|
|
|
|
|
[10,10,10,10,10,10,10,10,10,10],
|
|
|
|
|
|
[10,10,10,10,10,10,10,10,10,10],
|
|
|
|
|
|
[10,10,10,10,10,10,10,10,10,10],
|
|
|
|
|
|
[10,10,10,10,200,10,10,10,10,10],
|
2025-10-08 22:36:57 +08:00
|
|
|
|
[10,10,10,10,220,10,10,10,10,10],
|
2025-09-10 16:12:55 +08:00
|
|
|
|
[10,10,10,10,10,10,10,10,10,10],
|
|
|
|
|
|
[10,10,10,10,10,10,10,10,10,10],
|
|
|
|
|
|
[10,10,10,10,10,10,10,10,10,10],
|
|
|
|
|
|
[10,10,10,10,10,10,10,10,10,10],
|
|
|
|
|
|
]
|
|
|
|
|
|
};
|
|
|
|
|
|
// 2. 创建颜色映射函数(根据高度返回颜色)
|
|
|
|
|
|
function heightToColor(height) {
|
|
|
|
|
|
// 示例:根据高度值返回渐变色
|
|
|
|
|
|
const minH = 1, maxH = 300;
|
|
|
|
|
|
const ratio = Math.min(1, Math.max(0, (height - minH) / (maxH - minH)));
|
|
|
|
|
|
// 蓝 -> 绿 -> 红 渐变
|
|
|
|
|
|
const r = Math.floor(255 * ratio);
|
|
|
|
|
|
const g = Math.floor(255 * (1 - ratio));
|
|
|
|
|
|
const b = 128;
|
|
|
|
|
|
// return new Cesium.Color(r / 255, g / 255, b / 255, 1.0);
|
|
|
|
|
|
return [r,g,b,100]
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (let index = 0; index<10; index++){
|
|
|
|
|
|
const canvas = document.createElement('canvas');
|
|
|
|
|
|
canvas.width = gridData.cols; // 每个网格一个像素
|
|
|
|
|
|
canvas.height = gridData.rows;
|
|
|
|
|
|
const context = canvas.getContext('2d');
|
|
|
|
|
|
for (let row = 0; row < gridData.rows; row++) {
|
|
|
|
|
|
for (let col = 0; col < gridData.cols; col++) {
|
|
|
|
|
|
const color = heightToColor(col*index*0.5);
|
|
|
|
|
|
// const color = heightToColor(gridData.cccc[row][col]);
|
|
|
|
|
|
const style = `rgba(${color[0]}, ${color[1]}, ${color[2]}, ${50})`;
|
|
|
|
|
|
context.fillStyle = style;
|
|
|
|
|
|
context.fillRect(col, row, 1, 1); // 每个像素一个网格点
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
const imageUrl = canvas.toDataURL('image/png');
|
|
|
|
|
|
// 5. 创建矩形范围(覆盖整个网格)
|
|
|
|
|
|
const rectangle = Cesium.Rectangle.fromDegrees(
|
|
|
|
|
|
gridData.minLon, gridData.minLat,
|
|
|
|
|
|
gridData.maxLon, gridData.maxLat
|
|
|
|
|
|
);
|
|
|
|
|
|
// 6. 创建SingleTileImageryProvider
|
|
|
|
|
|
const imageryProvider = new Cesium.SingleTileImageryProvider({
|
|
|
|
|
|
url: imageUrl,
|
|
|
|
|
|
rectangle: rectangle
|
|
|
|
|
|
});
|
|
|
|
|
|
// 7. 添加到影像层集合
|
|
|
|
|
|
viewer.imageryLayers.addImageryProvider(imageryProvider);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await this.sleep(1000)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async sleep(time) {
|
|
|
|
|
|
await new Promise(resolve => setTimeout(resolve, time));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getCzmlData(){
|
|
|
|
|
|
const gridData = {
|
|
|
|
|
|
minLon: 110.0, // 最小经度
|
|
|
|
|
|
minLat: 30.0, // 最小纬度
|
|
|
|
|
|
deltaLon: 0.1, // 经度间隔
|
|
|
|
|
|
deltaLat: 0.1, // 纬度间隔
|
|
|
|
|
|
rows: 10, // 行数(纬度方向)
|
|
|
|
|
|
cols: 10, // 列数(经度方向)
|
|
|
|
|
|
// heights: [ // 高度值数组(行优先存储)
|
|
|
|
|
|
// /* 10x10 网格高度值 */
|
|
|
|
|
|
// 100, 120, 140, ...,
|
|
|
|
|
|
// 110, 130, 150, ...,
|
|
|
|
|
|
// // ... 共 100 个值
|
|
|
|
|
|
// ]
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 2. 创建颜色映射函数(根据高度返回颜色)
|
|
|
|
|
|
function heightToColor(height) {
|
|
|
|
|
|
// 示例:根据高度值返回渐变色
|
|
|
|
|
|
const minH = 1, maxH = 300;
|
|
|
|
|
|
const ratio = Math.min(1, Math.max(0, (height - minH) / (maxH - minH)));
|
|
|
|
|
|
// 蓝 -> 绿 -> 红 渐变
|
|
|
|
|
|
const r = Math.floor(255 * ratio);
|
|
|
|
|
|
const g = Math.floor(255 * (1 - ratio));
|
|
|
|
|
|
const b = 128;
|
|
|
|
|
|
// return new Cesium.Color(r / 255, g / 255, b / 255, 1.0);
|
|
|
|
|
|
return [r,g,b,100]
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 3. 生成网格几何数据1帧
|
|
|
|
|
|
function createGridGeometry(grid,ccc) {
|
|
|
|
|
|
const positions = [];
|
|
|
|
|
|
const colors = [];
|
|
|
|
|
|
const indices = [];
|
|
|
|
|
|
let vertexIndex = 0;
|
|
|
|
|
|
|
|
|
|
|
|
for (let row = 0; row < grid.rows; row++) {
|
|
|
|
|
|
for (let col = 0; col < grid.cols; col++) {
|
|
|
|
|
|
// 计算当前网格点经纬度
|
|
|
|
|
|
const lon = grid.minLon + col * grid.deltaLon;
|
|
|
|
|
|
const lat = grid.minLat + row * grid.deltaLat;
|
|
|
|
|
|
const height = row+col+2;
|
|
|
|
|
|
const color = heightToColor(height*ccc*2);
|
|
|
|
|
|
// const color = heightToColor(height*ccc*0.1);
|
|
|
|
|
|
positions.push([
|
|
|
|
|
|
[lon-grid.deltaLon/2,lat,ccc===row?4000:3000],//左上
|
|
|
|
|
|
[lon+grid.deltaLon/2,lat,ccc===row?4000:3000],//右上
|
|
|
|
|
|
[lon,lat+grid.deltaLat,(ccc===(row+1))?4000:3000],//左下
|
|
|
|
|
|
color,//颜色
|
|
|
|
|
|
])
|
|
|
|
|
|
positions.push([
|
|
|
|
|
|
[lon+grid.deltaLon,lat+grid.deltaLat,(ccc===(row+1))?4000:3000],//左下
|
|
|
|
|
|
[lon,lat+grid.deltaLat,(ccc===(row+1))?4000:3000],//右下
|
|
|
|
|
|
[lon+grid.deltaLon/2,lat,ccc===row?4000:3000],//右上
|
|
|
|
|
|
color,//颜色
|
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 将经纬度转换为笛卡尔坐标
|
|
|
|
|
|
// const position = Cesium.Cartesian3.fromDegrees(lon, lat, height);
|
|
|
|
|
|
|
|
|
|
|
|
// 计算颜色
|
|
|
|
|
|
// const color = heightToColor(height);
|
|
|
|
|
|
colors.push(color.red, color.green, color.blue, color.alpha);
|
|
|
|
|
|
// positions.push([lon,lat,height,[color.red,color.green,color.blue,color.alpha]]);
|
|
|
|
|
|
|
|
|
|
|
|
// 生成三角形索引(跳过边界)
|
|
|
|
|
|
if (row < grid.rows - 1 && col < grid.cols - 1) {
|
|
|
|
|
|
const topLeft = vertexIndex;
|
|
|
|
|
|
const topRight = topLeft + 1;
|
|
|
|
|
|
const bottomLeft = topLeft + grid.cols;
|
|
|
|
|
|
const bottomRight = bottomLeft + 1;
|
|
|
|
|
|
|
|
|
|
|
|
// 两个三角形组成一个网格单元
|
|
|
|
|
|
indices.push(topLeft, bottomLeft, topRight);
|
|
|
|
|
|
indices.push(topRight, bottomLeft, bottomRight);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
vertexIndex++;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return positions;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const alllist = []
|
|
|
|
|
|
for (let index = 0; index<10; index++){
|
|
|
|
|
|
alllist.push(createGridGeometry(gridData,index+1))
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return alllist
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async getCzml(viewer) {
|
|
|
|
|
|
const gridData = {
|
|
|
|
|
|
minLon: 110.0, // 最小经度
|
|
|
|
|
|
minLat: 30.0, // 最小纬度
|
|
|
|
|
|
deltaLon: 0.1, // 经度间隔
|
|
|
|
|
|
deltaLat: 0.1, // 纬度间隔
|
|
|
|
|
|
rows: 10, // 行数(纬度方向)
|
|
|
|
|
|
cols: 10, // 列数(经度方向)
|
|
|
|
|
|
// heights: [ // 高度值数组(行优先存储)
|
|
|
|
|
|
// /* 10x10 网格高度值 */
|
|
|
|
|
|
// 100, 120, 140, ...,
|
|
|
|
|
|
// 110, 130, 150, ...,
|
|
|
|
|
|
// // ... 共 100 个值
|
|
|
|
|
|
// ]
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 2. 创建颜色映射函数(根据高度返回颜色)
|
|
|
|
|
|
function heightToColor(height) {
|
|
|
|
|
|
// 示例:根据高度值返回渐变色
|
|
|
|
|
|
const minH = 1, maxH = 300;
|
|
|
|
|
|
const ratio = Math.min(1, Math.max(0, (height - minH) / (maxH - minH)));
|
|
|
|
|
|
// 蓝 -> 绿 -> 红 渐变
|
|
|
|
|
|
const r = Math.floor(255 * ratio);
|
|
|
|
|
|
const g = Math.floor(255 * (1 - ratio));
|
|
|
|
|
|
const b = 128;
|
|
|
|
|
|
// return new Cesium.Color(r / 255, g / 255, b / 255, 1.0);
|
|
|
|
|
|
return [r,g,b,100]
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 3. 生成网格几何数据1帧
|
|
|
|
|
|
function createGridGeometry(grid,ccc) {
|
|
|
|
|
|
const positions = [];
|
|
|
|
|
|
const colors = [];
|
|
|
|
|
|
const indices = [];
|
|
|
|
|
|
let vertexIndex = 0;
|
|
|
|
|
|
|
|
|
|
|
|
for (let row = 0; row < grid.rows; row++) {
|
|
|
|
|
|
for (let col = 0; col < grid.cols; col++) {
|
|
|
|
|
|
// 计算当前网格点经纬度
|
|
|
|
|
|
const lon = grid.minLon + col * grid.deltaLon;
|
|
|
|
|
|
const lat = grid.minLat + row * grid.deltaLat;
|
|
|
|
|
|
const height = row+col+2;
|
|
|
|
|
|
const color = heightToColor(height*ccc*2);
|
|
|
|
|
|
// const color = heightToColor(height*ccc*0.1);
|
|
|
|
|
|
positions.push([
|
|
|
|
|
|
[lon-grid.deltaLon/2,lat,ccc===row?7000:3000],//左上
|
|
|
|
|
|
[lon+grid.deltaLon/2,lat,ccc===row?7000:3000],//右上
|
|
|
|
|
|
[lon,lat+grid.deltaLat,(ccc===(row+1))?7000:3000],//左下
|
|
|
|
|
|
color,//颜色
|
|
|
|
|
|
])
|
|
|
|
|
|
positions.push([
|
|
|
|
|
|
[lon+grid.deltaLon,lat+grid.deltaLat,(ccc===(row+1))?7000:3000],//左下
|
|
|
|
|
|
[lon,lat+grid.deltaLat,(ccc===(row+1))?7000:3000],//右下
|
|
|
|
|
|
[lon+grid.deltaLon/2,lat,ccc===row?7000:3000],//右上
|
|
|
|
|
|
color,//颜色
|
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 将经纬度转换为笛卡尔坐标
|
|
|
|
|
|
// const position = Cesium.Cartesian3.fromDegrees(lon, lat, height);
|
|
|
|
|
|
|
|
|
|
|
|
// 计算颜色
|
|
|
|
|
|
// const color = heightToColor(height);
|
|
|
|
|
|
colors.push(color.red, color.green, color.blue, color.alpha);
|
|
|
|
|
|
// positions.push([lon,lat,height,[color.red,color.green,color.blue,color.alpha]]);
|
|
|
|
|
|
|
|
|
|
|
|
// 生成三角形索引(跳过边界)
|
|
|
|
|
|
if (row < grid.rows - 1 && col < grid.cols - 1) {
|
|
|
|
|
|
const topLeft = vertexIndex;
|
|
|
|
|
|
const topRight = topLeft + 1;
|
|
|
|
|
|
const bottomLeft = topLeft + grid.cols;
|
|
|
|
|
|
const bottomRight = bottomLeft + 1;
|
|
|
|
|
|
|
|
|
|
|
|
// 两个三角形组成一个网格单元
|
|
|
|
|
|
indices.push(topLeft, bottomLeft, topRight);
|
|
|
|
|
|
indices.push(topRight, bottomLeft, bottomRight);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
vertexIndex++;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return positions;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// const geometryData = createGridGeometry(gridData,1);
|
|
|
|
|
|
const alllist = []
|
|
|
|
|
|
for (let index = 0; index<1; index++){
|
|
|
|
|
|
alllist.push(createGridGeometry(gridData,index+1))
|
|
|
|
|
|
}
|
|
|
|
|
|
const czmls = []
|
|
|
|
|
|
alllist.map((item,index)=>{
|
|
|
|
|
|
//时间维度
|
|
|
|
|
|
const czml = [{
|
|
|
|
|
|
id: "document",
|
|
|
|
|
|
name: "CZML Colors",
|
|
|
|
|
|
version: "1.0",
|
|
|
|
|
|
}]
|
|
|
|
|
|
item.map((item2,index2)=>{
|
|
|
|
|
|
czml.push({
|
|
|
|
|
|
id: "rgba"+index2,
|
|
|
|
|
|
name: "Rectangle with outline using RGBA Colors",
|
|
|
|
|
|
polygon: {
|
|
|
|
|
|
positions: {
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
...item2[0],
|
|
|
|
|
|
...item2[1],
|
|
|
|
|
|
...item2[2],
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
// material: {
|
|
|
|
|
|
// solidColor: {
|
|
|
|
|
|
// color: {
|
|
|
|
|
|
// rgba: item2[3],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// },
|
|
|
|
|
|
// },
|
|
|
|
|
|
material: {
|
|
|
|
|
|
image: {
|
|
|
|
|
|
image: {
|
|
|
|
|
|
uri: Cesium.buildModuleUrl(
|
|
|
|
|
|
`${process.env.PUBLIC_URL}/models/waternormals.jpg`
|
|
|
|
|
|
)
|
|
|
|
|
|
},
|
|
|
|
|
|
// color: {
|
|
|
|
|
|
// rgba: [255, 255, 255, 128],
|
|
|
|
|
|
// },
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
extrudedHeight: 0,
|
|
|
|
|
|
perPositionHeight: true,
|
|
|
|
|
|
},
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
czmls.push(czml)
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// let dataSourcePromise = null;
|
|
|
|
|
|
for (const item of czmls) {
|
|
|
|
|
|
// if(dataSourcePromise){
|
|
|
|
|
|
// viewer.dataSources.remove(dataSourcePromise);
|
|
|
|
|
|
// dataSourcePromise = null
|
|
|
|
|
|
// }
|
|
|
|
|
|
const dataSourcePromise = await Cesium.CzmlDataSource.load(item)
|
|
|
|
|
|
viewer.dataSources.add(dataSourcePromise);
|
|
|
|
|
|
// setTimeout(() => {
|
|
|
|
|
|
// viewer.dataSources.remove(dataSourcePromise);
|
|
|
|
|
|
// }, 1000);
|
|
|
|
|
|
await this.sleep(1000)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-08 22:36:57 +08:00
|
|
|
|
|
|
|
|
|
|
getCzml2(viewer) {
|
|
|
|
|
|
const czml = [
|
|
|
|
|
|
{
|
|
|
|
|
|
id: "document",
|
|
|
|
|
|
name: "CZML Polygon - Intervals and Availability",
|
|
|
|
|
|
version: "1.0",
|
|
|
|
|
|
clock: {
|
|
|
|
|
|
interval: "2000-01-01T00:00:00Z/2000-01-01T00:00:14Z",
|
|
|
|
|
|
currentTime: "2000-01-01T00:00:00Z",
|
|
|
|
|
|
multiplier: 1,
|
|
|
|
|
|
// range:'CLAMPED'
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: "blueRiverRight",
|
|
|
|
|
|
name: "blueRiverRightName",
|
|
|
|
|
|
availability: "2000-01-01T00:00:00Z/2000-01-01T00:00:14Z",
|
|
|
|
|
|
polygon: {
|
|
|
|
|
|
positions: [
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:00Z/2000-01-01T00:00:07Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.783551451219,31.505432945988,0,114.782956879057,31.505116255788,0,114.781892213916,31.504914405850,0,114.781157359053,31.504636741222,0,114.780745721874,31.504325618018,0,114.780212874098,31.504512397056,0,114.779408140669,31.504317896297,0,114.778706035963,31.503755212927,0,114.777951965612,31.503092628529,0,114.777251940566,31.502709206403,0,114.776802408190,31.502126534771,0,114.776371258785,31.501927188369,0,114.776064185362,31.501353144610,0,114.775690186057,31.500745174099,0,114.774980263332,31.500502612159,0,114.774650155952,31.500023834109,0,114.774531859560,31.499637405754,0,114.774024912440,31.498966392077,0,114.773713570830,31.498146378718,0,114.773057020429,31.497568017090,0,114.772475283277,31.497126698482,0,114.772009096035,31.496677764317,0,114.771947848873,31.496193149848,0,114.771523619266,31.495761532448,0,114.771269880393,31.495468011549,0,114.771022952528,31.495345205626,0,114.770541707347,31.495127442143,0,114.770407567268,31.494782309144,0,114.770009689093,31.494461785233,0,114.769901372697,31.493814460244,0,114.769993020377,31.493542862496,0,114.770189270611,31.493296435972,0,114.770294662758,31.492982292732,0,114.770112201323,31.492720290545,0,114.769994095285,31.492379698406,0,114.769880775650,31.492147782392,0,114.769994500921,31.491800054658,0,114.769938382650,31.491362258652,0,114.769946316940,31.490823842288,0,114.770089570704,31.490217210873,0,114.770259027323,31.490014707351,0,114.770197453713,31.489647391298,0,114.770004723409,31.489388372067,0,114.770045744264,31.489073926155,0,114.770297922326,31.488850084583,0,114.770319049721,31.488649153074,0,114.770094312180,31.488389778166,0,114.769799603486,31.488049095054,0,114.769560464815,31.487664205883,0,114.769303450844,31.487445042049,0,114.769045251773,31.487313488639,0,114.768778746755,31.487102954980,0,114.768480326238,31.486912878537,0,114.768274642389,31.486670132055,0,114.767908483753,31.486481404912,0,114.767569691989,31.486418303589,0,114.766902233358,31.486477596912,0,114.766247461078,31.486475613802,0,114.765608691954,31.486510929010,0,114.765256519773,31.486952556228,0,114.765089432329,31.487062215159,0,114.764229174334,31.487614588735,0,114.763833119535,31.487788832271,0,114.763584428778,31.488181294434,0,114.763049660475,31.488444791473,0,114.762530218662,31.488467475120,0,114.761940596848,31.488513254211,0,114.761524734421,31.488463709015,0,114.761412660921,31.488349715318,0,114.760889780039,31.488232172754,0,114.760361725476,31.488009637422,0,114.759980756168,31.487675327515,0,114.759674264345,31.487359373149,0,114.759389535098,31.486908856798,0,114.759081233183,31.486300989765,0,114.759030084681,31.485822485955,0,114.758710837361,31.485272771282,0,114.758493800341,31.484715787829,0,114.758361185893,31.484193407123,0,114.758309883902,31.483948105722,0,114.758115840524,31.483714450302,0,114.758091662916,31.483195601642,0,114.758292638433,31.482954712445,0,114.758223271610,31.482650375882,0,114.758011195767,31.482268692274,0,114.757923193598,31.481764435935,0,114.757828327620,31.481274925130,0,114.757585836994,31.481030782345,0,114.757256826206,31.480828117799,0,114.757137128588,31.480474935137,0,114.757180047029,31.479941104314,0,114.757232652133,31.479523062112,0,114.756982743372,31.479286570807,0,114.756616583734,31.479096295867,0,114.756364352392,31.478736594893,0,114.756125412326,31.478486703032,0,114.756090592986,31.478260231308,0,114.755829834004,31.478011940706,0,114.755751754589,31.477855728798,0,114.755380689479,31.477697649691,0,114.755224153617,31.477537447698,0,114.754986756209,31.477531264245,0,114.754807618774,31.477358921451,0,114.754698725160,31.477166378896,0,114.754379703423,31.477022014692,0,114.754082480488,31.477025441408,0,114.753751970198,31.476891373457,0,114.753422320274,31.476819335036,0,114.753058701894,31.476677510864,0,114.752876089055,31.476701574042,0,114.752786678162,31.476644994776,0,114.752692676316,31.476432773167,0,114.752370511024,31.476462207442,0,114.752084683164,31.476295841954,0,114.751516898873,31.476253883438,0,114.750698263558,31.476412244285,0,114.749933901691,31
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:07Z/2000-01-01T00:00:09Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.783551451219,31.505432945988,0,114.782956879057,31.505116255788,0,114.781892213916,31.504914405850,0,114.781157359053,31.504636741222,0,114.780745721874,31.504325618018,0,114.780212874098,31.504512397056,0,114.779408140669,31.504317896297,0,114.778706035963,31.503755212927,0,114.777951965612,31.503092628529,0,114.777251940566,31.502709206403,0,114.776802408190,31.502126534771,0,114.776371258785,31.501927188369,0,114.776064185362,31.501353144610,0,114.775690186057,31.500745174099,0,114.774980263332,31.500502612159,0,114.774650155952,31.500023834109,0,114.774531859560,31.499637405754,0,114.774024912440,31.498966392077,0,114.773713570830,31.498146378718,0,114.773057020429,31.497568017090,0,114.772475283277,31.497126698482,0,114.772009096035,31.496677764317,0,114.771947848873,31.496193149848,0,114.771523619266,31.495761532448,0,114.771269880393,31.495468011549,0,114.771022952528,31.495345205626,0,114.770541707347,31.495127442143,0,114.770407567268,31.494782309144,0,114.770009689093,31.494461785233,0,114.769905606973,31.494453660476,0,114.769699112937,31.494465534460,0,114.769458551759,31.494648735858,0,114.769294180228,31.494811088845,0,114.769105378548,31.494972992749,0,114.768969710318,31.495126840215,0,114.768969710318,31.495126840215,0,114.768889820061,31.495259179104,0,114.768889820061,31.495259179104,0,114.768840772537,31.495338825801,0,114.768744220516,31.495492559041,0,114.768673167961,31.495682298621,0,114.768639459185,31.495889370575,0,114.768571231379,31.496064854954,0,114.768505207694,31.496224506522,0,114.768396942420,31.496329801911,0,114.768267417015,31.496451070348,0,114.768187438743,31.496530324662,0,114.767968342919,31.496747582608,0,114.767794509919,31.496939557089,0,114.767589903460,31.497098322368,0,114.767390228694,31.497208113820,0,114.767171936264,31.497274524930,0,114.766969074326,31.497276485648,0,114.766613343506,31.497262377062,0,114.766155357845,31.497196601877,0,114.765859330437,31.497169985144,0,114.765737719524,31.497170522450,0,114.765604898922,31.497230413223,0,114.765426420234,31.497340041037,0,114.765088118109,31.497612620664,0,114.764811799805,31.497819418592,0,114.764456795692,31.498083670026,0,114.763847652486,31.498768261710,0,114.763696563861,31.498901437277,0,114.763320509135,31.498504083568,0,114.763523104586,31.498389593209,0,114.764343609558,31.497970879112,0,114.764704640241,31.497705996156,0,114.765300941005,31.497253234353,0,114.765457241294,31.497111707597,0,114.765691848227,31.496945644425,0,114.765991606096,31.496807502277,0,114.766262864961,31.496808755998,0,114.766505169942,31.496885276054,0,114.766743127459,31.496956751422,0,114.766968285019,31.497002153879,0,114.767162213510,31.496979933169,0,114.767392446891,31.496908116352,0,114.767605455206,31.496800727336,0,114.767876829604,31.496629108081,0,114.768030327634,31.496468271835,0,114.768125047164,31.496355711463,0,114.768230060041,31.496189296008,0,114.768389266219,31.495910708036,0,114.768534878508,31.495652979641,0,114.768718437214,31.495333547632,0,114.768755786397,31.495264204448,0,114.768855129154,31.495136620653,0,114.769158677371,31.494794976068,0,114.769367014494,31.494526308011,0,114.769519192505,31.494336728045,0,114.769731492444,31.494096530802,0,114.769831255330,31.493885008325,0,114.769932088050,31.493226273454,0,114.769888813305,31.492621932671,0,114.769924865386,31.491891803737,0,114.769924616292,31.491249007733,0,114.770011442937,31.490417350206,0,114.770088155274,31.489706010212,0,114.769984004672,31.489077427864,0,114.769916579738,31.488416831883,0,114.769588065773,31.487776623225,0,114.768897972211,31.487249245353,0,114.768381331817,31.486952081045,0,114.767606848116,31.486602529133,0,114.766634759798,31.486544010720,0,114.765704668059,31.486699660381,0,114.764858939800,31.487259135178,0,114.763991200573,31.487782845158,0,114.763196626221,31.488402044824,0,114.762050360019,31.488528412550,0,114.761524734421,31.488463709015,0,114.761412660921,31.488349715318,0,114.760889780039,31.488232172754,0,114.760361725476,31.488009637422,0,114.759980756168,31.487675327515,0,114.759817830104,31
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:09Z/2000-01-01T00:00:11Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.783551451219,31.505432945988,0,114.782956879057,31.505116255788,0,114.781892213916,31.504914405850,0,114.781157359053,31.504636741222,0,114.780745721874,31.504325618018,0,114.780212874098,31.504512397056,0,114.779408140669,31.504317896297,0,114.778706035963,31.503755212927,0,114.777951965612,31.503092628529,0,114.777251940566,31.502709206403,0,114.776802408190,31.502126534771,0,114.776371258785,31.501927188369,0,114.776064185362,31.501353144610,0,114.775690186057,31.500745174099,0,114.774980263332,31.500502612159,0,114.774650155952,31.500023834109,0,114.774531859560,31.499637405754,0,114.774024912440,31.498966392077,0,114.773713570830,31.498146378718,0,114.773057020429,31.497568017090,0,114.772475283277,31.497126698482,0,114.772009096035,31.496677764317,0,114.771947848873,31.496193149848,0,114.771523619266,31.495761532448,0,114.771269880393,31.495468011549,0,114.771022952528,31.495345205626,0,114.770541707347,31.495127442143,0,114.770407567268,31.494782309144,0,114.770009689093,31.494461785233,0,114.769905606973,31.494453660476,0,114.769699112937,31.494465534460,0,114.769458551759,31.494648735858,0,114.769294180228,31.494811088845,0,114.769105378548,31.494972992749,0,114.768969710318,31.495126840215,0,114.768969710318,31.495126840215,0,114.768889820061,31.495259179104,0,114.768889820061,31.495259179104,0,114.768840772537,31.495338825801,0,114.768744220516,31.495492559041,0,114.768673167961,31.495682298621,0,114.768639459185,31.495889370575,0,114.768571231379,31.496064854954,0,114.768505207694,31.496224506522,0,114.768396942420,31.496329801911,0,114.768267417015,31.496451070348,0,114.768187438743,31.496530324662,0,114.767968342919,31.496747582608,0,114.767794509919,31.496939557089,0,114.767589903460,31.497098322368,0,114.767390228694,31.497208113820,0,114.767171936264,31.497274524930,0,114.766969074326,31.497276485648,0,114.766613343506,31.497262377062,0,114.766155357845,31.497196601877,0,114.765859330437,31.497169985144,0,114.765737719524,31.497170522450,0,114.765604898922,31.497230413223,0,114.765426420234,31.497340041037,0,114.765088118109,31.497612620664,0,114.764811799805,31.497819418592,0,114.764456795692,31.498083670026,0,114.763847652486,31.498768261710,0,114.763696563861,31.498901437277,0,114.763320509135,31.498504083568,0,114.763523104586,31.498389593209,0,114.764343609558,31.497970879112,0,114.764704640241,31.497705996156,0,114.765300941005,31.497253234353,0,114.765457241294,31.497111707597,0,114.765691848227,31.496945644425,0,114.765991606096,31.496807502277,0,114.766262864961,31.496808755998,0,114.766505169942,31.496885276054,0,114.766743127459,31.496956751422,0,114.766968285019,31.497002153879,0,114.767162213510,31.496979933169,0,114.767392446891,31.496908116352,0,114.767605455206,31.496800727336,0,114.767876829604,31.496629108081,0,114.768030327634,31.496468271835,0,114.768125047164,31.496355711463,0,114.768230060041,31.496189296008,0,114.768389266219,31.495910708036,0,114.768534878508,31.495652979641,0,114.768718437214,31.495333547632,0,114.768755786397,31.495264204448,0,114.768855129154,31.495136620653,0,114.769158677371,31.494794976068,0,114.769367014494,31.494526308011,0,114.769519192505,31.494336728045,0,114.769731492444,31.494096530802,0,114.769724392714,31.493744519560,0,114.769674122063,31.493008799669,0,114.769839232004,31.491929259529,0,114.769972597888,31.490433767263,0,114.769873165269,31.489023952749,0,114.769336672185,31.488089032560,0,114.768689253289,31.487552882666,0,114.767535732810,31.486964453135,0,114.766112467600,31.487064613120,0,114.764702171470,31.487788395459,0,114.762975654792,31.488560397394,0,114.762280489487,31.488801007563,0,114.761566390889,31.488711124456,0,114.760707324142,31.488284075283,0,114.760035051790,31.487821115375,0,114.759469478566,31.487214560500,0,114.759216388507,31.486852824314,0,114.758875516855,31.486117043886,0,114.758555375104,31.485343409261,0,114.758218562773,31.484472198150,0,114.757875725470,31.483640691173,0,114.757565528198,31.482796381360,0,114.757250322736,31.481954522741,0,114.756919633576,31.481137307742,0,114.756499436520,31
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:11Z/2000-01-01T00:00:12Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.783493017680,31.505385806469,0,114.781082620386,31.504619988868,0,114.779339466225,31.504218910691,0,114.777710527635,31.503122897009,0,114.776443588668,31.502141575055,0,114.775621799642,31.501233986086,0,114.774843911279,31.500265003188,0,114.773914047459,31.499088010895,0,114.773399173829,31.498646337529,0,114.772682007823,31.497736473849,0,114.772195419994,31.496929889236,0,114.771419235385,31.496060228359,0,114.771017291803,31.495626764733,0,114.770344902039,31.494987616316,0,114.769833082975,31.494560683758,0,114.769619899375,31.494571197239,0,114.769346266791,31.494907884649,0,114.769010003505,31.495239352516,0,114.768767402651,31.495646775320,0,114.768720038916,31.496015191943,0,114.768507993258,31.496333781507,0,114.768154166759,31.496662621101,0,114.767807405457,31.497043349118,0,114.767462639741,31.497261523302,0,114.767276930331,31.497363335800,0,114.766713701137,31.497349383590,0,114.766147459981,31.497261896571,0,114.765790546751,31.497207767522,0,114.765383431738,31.497420326995,0,114.765088118109,31.497612620664,0,114.764811799805,31.497819418592,0,114.764456795692,31.498083670026,0,114.763847652486,31.498768261710,0,114.763696563861,31.498901437277,0,114.763320509135,31.498504083568,0,114.763523104586,31.498389593209,0,114.764343609558,31.497970879112,0,114.764704640241,31.497705996156,0,114.765300941005,31.497253234353,0,114.765593484616,31.496990157741,0,114.765999211880,31.496738464496,0,114.766550632569,31.496848574679,0,114.767092976431,31.496915655934,0,114.767461285540,31.496823022784,0,114.767969669620,31.496485266009,0,114.768301692235,31.495934335505,0,114.768755178322,31.495162936569,0,114.769133853481,31.494813704128,0,114.769111365652,31.494552309985,0,114.769361979104,31.494374261661,0,114.769517804959,31.494246205688,0,114.769511955656,31.494071263450,0,114.769593886848,31.493844684040,0,114.769534781129,31.493514924078,0,114.769611145453,31.492660551040,0,114.769688585946,31.492012208836,0,114.769717753072,31.491353256357,0,114.769794557851,31.490595110095,0,114.769780166537,31.490007353492,0,114.769742703068,31.489719275553,0,114.769817147117,31.489452930320,0,114.769719738615,31.489062119950,0,114.769460759682,31.488698222500,0,114.769280000680,31.488357717867,0,114.768832510926,31.487943938092,0,114.768297397401,31.487575893797,0,114.767638982757,31.487286705390,0,114.766871058222,31.487154324598,0,114.766024903121,31.487159855961,0,114.765394766596,31.487527769040,0,114.765314557048,31.487783349310,0,114.765119367187,31.488102856194,0,114.765094553998,31.488264673554,0,114.764700466499,31.488461988014,0,114.764279726338,31.488775109070,0,114.763848837536,31.488725355184,0,114.763634325471,31.489127001651,0,114.763464547677,31.489451428872,0,114.762953988819,31.489248345341,0,114.762139772594,31.488905085902,0,114.761159479019,31.488542987101,0,114.760344271219,31.488095736997,0,114.759815683135,31.487721531730,0,114.759208419548,31.487005261889,0,114.758669590176,31.485740300035,0,114.758160117080,31.484434462473,0,114.757573817049,31.483308506058,0,114.756984961268,31.482825423104,0,114.756388365847,31.482216506945,0,114.755443475500,31.481838594700,0,114.754380100871,31.481224620061,0,114.753454438922,31.480642496833,0,114.753154718241,31.479902424263,0,114.752685703331,31.479494117341,0,114.752085434952,31.478437969741,0,114.751146030249,31.477625264701,0,114.750747835087,31.478107015116,0,114.751560013609,31.478921924163,0,114.750892210886,31.479573653820,0,114.750399580549,31.479390619489,0,114.750076652370,31.478710032167,0,114.749632206738,31.478388060128,0,114.748839614494,31.478698667588,0,114.748456694727,31.478057392810,0,114.748624018022,31.477263666636,0,114.748573956878,31.476671806438,0,114.747868402553,31.476173500487,0,114.747505536887,31.475122359393,0,114.746890664703,31.474084526703,0,114.746695540299,31.474535402449,0,114.746381228516,31.474474092904,0,114.746254538288,31.473671630717,0,114.749539470817,31.473691616275,0,114.749323605635,31.474516728314,0,114.749729914998,31.475727718852,0,114.750665665559,31.475814645362,0,114.751613062136,31
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:12Z/2000-01-01T00:00:13Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.783475131220,31.505479505184,0,114.780487511557,31.504651099693,0,114.778390380303,31.503784243376,0,114.776689663549,31.502515368372,0,114.775300102908,31.500799168786,0,114.773768992230,31.498963250100,0,114.773337723368,31.498621771390,0,114.771128122946,31.495961659627,0,114.770138183084,31.494899510313,0,114.769714814411,31.494566327822,0,114.768896081295,31.495414598563,0,114.768810437301,31.495834677750,0,114.769048877946,31.495810013050,0,114.769291845368,31.496097188861,0,114.769273001093,31.496089841738,0,114.769216596329,31.496159669967,0,114.768967164388,31.496052181704,0,114.768834396718,31.496147983513,0,114.768656469370,31.496184142258,0,114.768216350395,31.496592815815,0,114.768173789085,31.496768090582,0,114.768219125861,31.496756976837,0,114.768243928241,31.496899724081,0,114.768149646965,31.497038786824,0,114.768067093182,31.497110533481,0,114.767924418272,31.497121073496,0,114.767842481696,31.497220452876,0,114.767681285460,31.497270258665,0,114.767647056973,31.497216066311,0,114.767537265548,31.497218171370,0,114.767335439786,31.497331262327,0,114.766916343970,31.497345154179,0,114.766392354265,31.497287167476,0,114.765927299826,31.497200442357,0,114.765664884496,31.497221104959,0,114.765228565698,31.497501307936,0,114.764458294232,31.498089438439,0,114.763844742743,31.498778290572,0,114.763702615127,31.498905973507,0,114.763329971454,31.498506240719,0,114.764341686778,31.497977666826,0,114.765112951053,31.497395439993,0,114.765466273080,31.497064432637,0,114.765752356863,31.496852685792,0,114.766047010141,31.496713318266,0,114.766350835910,31.496727451015,0,114.766701169154,31.496847373446,0,114.767120034634,31.496886849106,0,114.767428150940,31.496824263905,0,114.767923445902,31.496534311550,0,114.767909817177,31.496536343835,0,114.768219500735,31.496042541881,0,114.768069903213,31.496006127664,0,114.767977945767,31.495867065779,0,114.768214535153,31.495669065537,0,114.768417042627,31.495462860179,0,114.768560221535,31.495434434374,0,114.768735275927,31.495148760059,0,114.769015976172,31.494875101620,0,114.769056517981,31.494644590777,0,114.769133230571,31.494420853714,0,114.769412473537,31.494345284797,0,114.769460842121,31.494219485240,0,114.769361791674,31.494154136807,0,114.769533093344,31.494008089403,0,114.769579987514,31.493789172152,0,114.769498127436,31.493568479359,0,114.769374603740,31.493527054938,0,114.769508735559,31.493035369828,0,114.769528882949,31.492574750923,0,114.769576237056,31.492105461914,0,114.769674748604,31.491737869141,0,114.769710385530,31.490979856487,0,114.769773939920,31.490699304188,0,114.769694151067,31.490519936748,0,114.769696901258,31.489908031834,0,114.769646215934,31.489083721551,0,114.769322682504,31.488423158873,0,114.768875440210,31.488021043825,0,114.768491006739,31.487808193512,0,114.768339781716,31.487921354311,0,114.768350893860,31.488003280011,0,114.768205082641,31.488276897753,0,114.768182997229,31.488391913711,0,114.768072977496,31.488518640866,0,114.768072416471,31.488626678137,0,114.768036635338,31.488679950692,0,114.767889814998,31.488644138137,0,114.767934695292,31.488561885577,0,114.767893173623,31.488448020523,0,114.767840149630,31.488531316715,0,114.767801894777,31.488616865395,0,114.767672667584,31.488601245623,0,114.767580266940,31.488549754654,0,114.767489926665,31.488494097203,0,114.767505970307,31.488380007140,0,114.767344936788,31.488361988700,0,114.767211919375,31.488372852907,0,114.767130070070,31.488534733085,0,114.766941240336,31.488466776993,0,114.766594213056,31.488458734090,0,114.766316117309,31.488507993689,0,114.765990393045,31.488435585335,0,114.765746825271,31.488507691009,0,114.765622594777,31.488758585426,0,114.765978712784,31.488942268709,0,114.766375926936,31.489067256203,0,114.766626729343,31.489322114959,0,114.766662775066,31.489675490818,0,114.766729878524,31.489856758854,0,114.766602922039,31.489926902541,0,114.766374531391,31.489633268300,0,114.766173205627,31.489438349466,0,114.765936300715,31.489411448619,0,114.765706403463,31.489542204088,0,114.765630572964,31.489475320439,0,114.765485874051,31
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:13Z/2000-01-01T00:00:14Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.783504138512,31.505474097024,0,114.780451959826,31.504644648874,0,114.777888031564,31.503567359934,0,114.775952040168,31.501876263981,0,114.775478104025,31.501246007192,0,114.773976190111,31.499235294956,0,114.772362604530,31.497540675854,0,114.770751940488,31.495618793016,0,114.769754537734,31.494608978735,0,114.769376227196,31.495028721130,0,114.769242154583,31.495455859748,0,114.770620764132,31.496830404981,0,114.770975974533,31.497143141848,0,114.770409210974,31.497163434485,0,114.769878559692,31.496674343091,0,114.769446259682,31.496151987261,0,114.768825551413,31.496191961946,0,114.768702980255,31.496474728883,0,114.768204331000,31.496699455487,0,114.768162996781,31.497101217537,0,114.767430249623,31.497398725583,0,114.766467970026,31.497382823629,0,114.765721102151,31.497235972073,0,114.765107792169,31.497593582165,0,114.764472359416,31.498081257544,0,114.763700692818,31.498906179406,0,114.763342557970,31.498516814543,0,114.764355884222,31.497980581292,0,114.764981495665,31.497499096673,0,114.765479836427,31.497041925980,0,114.765984417994,31.496678807815,0,114.765768526052,31.496419276735,0,114.765570841594,31.496305970533,0,114.766119731129,31.496223976181,0,114.766375919465,31.496358631382,0,114.766972918080,31.496162550292,0,114.767829695192,31.495875592954,0,114.768295139673,31.495575663803,0,114.768388535770,31.495377873626,0,114.767921980564,31.495107545359,0,114.767922915935,31.494931850912,0,114.768249682806,31.495096904907,0,114.768636259211,31.495117154858,0,114.768918283896,31.494916493278,0,114.769070100319,31.494482439929,0,114.769397342814,31.494332709834,0,114.769547094996,31.493777348184,0,114.769352925899,31.493468457927,0,114.769469452022,31.492296244092,0,114.769332226033,31.491441636146,0,114.769463855805,31.490595639835,0,114.769170854909,31.489365680191,0,114.769206401754,31.488516195120,0,114.768906947134,31.488063784126,0,114.768408245694,31.487892706375,0,114.768262088509,31.488257537558,0,114.768027903209,31.488818019078,0,114.767381972489,31.488643214997,0,114.766536509155,31.488669915928,0,114.766011669585,31.488627664788,0,114.765994704217,31.488895103296,0,114.766587050637,31.489106783378,0,114.766914882211,31.489350844887,0,114.767010419656,31.489735944767,0,114.766550543973,31.490187144334,0,114.766142689480,31.489976657364,0,114.765777074243,31.489903385610,0,114.765456032143,31.490119587971,0,114.765211772652,31.489775746957,0,114.764892913549,31.489770221759,0,114.764670988394,31.489900398767,0,114.764351342065,31.490027921296,0,114.763715138895,31.490005514717,0,114.763092770245,31.489701997990,0,114.762658509169,31.489502782012,0,114.762492958446,31.489930677167,0,114.762153398098,31.489687743799,0,114.762088476617,31.489331792752,0,114.761764616264,31.488893286414,0,114.761347433559,31.488836606970,0,114.760766918316,31.488745551090,0,114.760004635562,31.488428460618,0,114.759526551747,31.488185889540,0,114.759256033783,31.487331738819,0,114.758249915094,31.486545623710,0,114.757772284870,31.486122163998,0,114.757932634176,31.485472732706,0,114.757140696018,31.484568876007,0,114.757316425404,31.484167322216,0,114.756887997940,31.483381200485,0,114.755925060395,31.482597341114,0,114.755186455651,31.481950144322,0,114.754621193271,31.482240180450,0,114.754771421857,31.482802310904,0,114.754325900204,31.483133820217,0,114.753852447695,31.482256388134,0,114.753739473770,31.481384217439,0,114.753014716342,31.480717136716,0,114.752778182060,31.481241464761,0,114.752294881432,31.480543964865,0,114.751705593064,31.479515712602,0,114.750708158510,31.480311990004,0,114.750129509220,31.479890574110,0,114.750131216532,31.479096844963,0,114.749514252476,31.478490632452,0,114.748618331880,31.479125666628,0,114.749440198572,31.479882005496,0,114.748892253915,31.480468141271,0,114.747449900832,31.481416968087,0,114.747106796511,31.481192135275,0,114.747952131847,31.480283933659,0,114.748294921034,31.479862810280,0,114.747677590033,31.479275691169,0,114.747546922524,31.478781533908,0,114.747002615134,31.478880959817,0,114.746714243877,31.478628721019,0,114.747431685880,31
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:14Z/2000-01-01T00:00:15Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
// 114.783504138512,31.505474097024,0,114.780451959826,31.504644648874,0,114.777888031564,31.503567359934,0,114.775952040168,31.501876263981,0,114.775478104025,31.501246007192,0,114.773976190111,31.499235294956,0,114.772362604530,31.497540675854,0,114.770751940488,31.495618793016,0,114.769754537734,31.494608978735,0,114.769376227196,31.495028721130,0,114.769242154583,31.495455859748,0,114.770620764132,31.496830404981,0,114.770975974533,31.497143141848,0,114.770409210974,31.497163434485,0,114.769878559692,31.496674343091,0,114.769446259682,31.496151987261,0,114.768825551413,31.496191961946,0,114.768702980255,31.496474728883,0,114.768204331000,31.496699455487,0,114.768162996781,31.497101217537,0,114.767430249623,31.497398725583,0,114.766467970026,31.497382823629,0,114.765721102151,31.497235972073,0,114.765107792169,31.497593582165,0,114.764472359416,31.498081257544,0,114.763700692818,31.498906179406,0,114.763342557970,31.498516814543,0,114.764355884222,31.497980581292,0,114.764981495665,31.497499096673,0,114.765479836427,31.497041925980,0,114.765984417994,31.496678807815,0,114.765768526052,31.496419276735,0,114.765570841594,31.496305970533,0,114.766119731129,31.496223976181,0,114.766375919465,31.496358631382,0,114.766972918080,31.496162550292,0,114.767829695192,31.495875592954,0,114.768295139673,31.495575663803,0,114.768388535770,31.495377873626,0,114.767921980564,31.495107545359,0,114.767922915935,31.494931850912,0,114.768249682806,31.495096904907,0,114.768636259211,31.495117154858,0,114.768918283896,31.494916493278,0,114.769070100319,31.494482439929,0,114.769397342814,31.494332709834,0,114.769547094996,31.493777348184,0,114.769352925899,31.493468457927,0,114.769469452022,31.492296244092,0,114.769332226033,31.491441636146,0,114.769463855805,31.490595639835,0,114.769170854909,31.489365680191,0,114.769206401754,31.488516195120,0,114.768906947134,31.488063784126,0,114.768408245694,31.487892706375,0,114.768262088509,31.488257537558,0,114.768027903209,31.488818019078,0,114.767381972489,31.488643214997,0,114.766536509155,31.488669915928,0,114.766011669585,31.488627664788,0,114.765994704217,31.488895103296,0,114.766587050637,31.489106783378,0,114.766914882211,31.489350844887,0,114.767010419656,31.489735944767,0,114.766550543973,31.490187144334,0,114.766142689480,31.489976657364,0,114.765777074243,31.489903385610,0,114.765456032143,31.490119587971,0,114.765211772652,31.489775746957,0,114.764892913549,31.489770221759,0,114.764670988394,31.489900398767,0,114.764351342065,31.490027921296,0,114.763715138895,31.490005514717,0,114.763092770245,31.489701997990,0,114.762658509169,31.489502782012,0,114.762492958446,31.489930677167,0,114.762153398098,31.489687743799,0,114.762088476617,31.489331792752,0,114.761764616264,31.488893286414,0,114.761347433559,31.488836606970,0,114.760766918316,31.488745551090,0,114.760004635562,31.488428460618,0,114.759526551747,31.488185889540,0,114.759256033783,31.487331738819,0,114.758249915094,31.486545623710,0,114.757772284870,31.486122163998,0,114.757932634176,31.485472732706,0,114.757140696018,31.484568876007,0,114.757316425404,31.484167322216,0,114.756887997940,31.483381200485,0,114.755925060395,31.482597341114,0,114.755186455651,31.481950144322,0,114.754621193271,31.482240180450,0,114.754771421857,31.482802310904,0,114.754325900204,31.483133820217,0,114.753852447695,31.482256388134,0,114.753739473770,31.481384217439,0,114.753014716342,31.480717136716,0,114.752778182060,31.481241464761,0,114.752294881432,31.480543964865,0,114.751705593064,31.479515712602,0,114.750708158510,31.480311990004,0,114.750129509220,31.479890574110,0,114.750131216532,31.479096844963,0,114.749514252476,31.478490632452,0,114.748618331880,31.479125666628,0,114.749440198572,31.479882005496,0,114.748892253915,31.480468141271,0,114.747449900832,31.481416968087,0,114.747106796511,31.481192135275,0,114.747952131847,31.480283933659,0,114.748294921034,31.479862810280,0,114.747677590033,31.479275691169,0,114.747546922524,31.478781533908,0,114.747002615134,31.478880959817,0,114.746714243877,31.478628721019,0,114.747431685880
|
|
|
|
|
|
114.783443148043,31.505443487709,0,114.780194621057,31.504572576714,0,114.777933610941,31.503569039239,0,114.776045138180,31.501945929573,0,114.774328879980,31.500052898212,0,114.772911406493,31.498974329835,0,114.771823254162,31.498718102419,0,114.771125594074,31.499317054217,0,114.770760151001,31.499133260919,0,114.771130482942,31.498437094340,0,114.771274024960,31.497925320524,0,114.769896121128,31.496740685966,0,114.769536395068,31.496220890439,0,114.769227374166,31.496217422292,0,114.768503836190,31.496600855497,0,114.768286533755,31.497056386986,0,114.767683570351,31.497393506387,0,114.766872589416,31.497444524671,0,114.766166057452,31.497340346545,0,114.765831893209,31.497289823694,0,114.765150155955,31.497609890029,0,114.764497844518,31.498071319045,0,114.763703452478,31.498914343321,0,114.763346764442,31.498522497112,0,114.764358188460,31.497990320484,0,114.765129553111,31.497354528892,0,114.764458104651,31.496847730761,0,114.764483515502,31.496761973284,0,114.766071286417,31.496014693248,0,114.766141380341,31.496183097695,0,114.766253823409,31.496229673138,0,114.766448627349,31.496187151909,0,114.766524326814,31.496098907589,0,114.766933675794,31.496117061285,0,114.767186500375,31.496016982712,0,114.767825640322,31.495875577496,0,114.768267609152,31.495559522772,0,114.768271397136,31.495370316434,0,114.767939651299,31.495160081827,0,114.767819842910,31.494985885209,0,114.767943900991,31.494920289423,0,114.768141889689,31.495030963511,0,114.768753202126,31.495021642089,0,114.768925726414,31.494749048612,0,114.768737477141,31.494447705647,0,114.769038296541,31.494144520140,0,114.768939686112,31.494092976294,0,114.768945950763,31.493742509141,0,114.768856927862,31.493543057450,0,114.769011627910,31.493018950455,0,114.768827855411,31.492957422677,0,114.768889552144,31.492500036269,0,114.768949292477,31.491864268292,0,114.768978452669,31.491383556194,0,114.769271937674,31.491331286984,0,114.769193785459,31.490972297994,0,114.769086246918,31.490616781981,0,114.769083871553,31.490346018565,0,114.769330647037,31.490292569872,0,114.769218188099,31.489964471420,0,114.769267012616,31.489749094135,0,114.769001677254,31.489707019762,0,114.768787051969,31.489604612623,0,114.768447535835,31.489422004748,0,114.768218015506,31.489559421581,0,114.767943118505,31.489464828718,0,114.767632791992,31.489260657133,0,114.767447219237,31.489288312093,0,114.767352095362,31.489480144007,0,114.767000442686,31.489837097087,0,114.767212220581,31.490029478947,0,114.767559661654,31.490282357271,0,114.767673210908,31.490491391643,0,114.767502571689,31.490797420563,0,114.767604615406,31.491146420253,0,114.767346815075,31.491330270661,0,114.767196943418,31.491274462852,0,114.767003735961,31.490842631549,0,114.766595400030,31.490700387858,0,114.766723673310,31.490360433122,0,114.766468679381,31.490282057488,0,114.766131701194,31.490584611661,0,114.765853468184,31.490667127663,0,114.765394661284,31.490284898644,0,114.765092740020,31.489911812551,0,114.764735557707,31.490154309496,0,114.764208172865,31.490307902799,0,114.763404312858,31.489855572637,0,114.763023225305,31.489839721701,0,114.762690859711,31.489525574054,0,114.762576842564,31.489929401357,0,114.762435399578,31.489965351354,0,
|
|
|
|
|
|
114.762132102398,31.489448263869,0,114.761848155980,31.489285105559,0,114.761546733503,31.489259253104,0,114.761398771116,31.489131428258,0,114.761196160779,31.489357696745,0,114.761100752057,31.489346068112,0,114.760930457961,31.489179831992,0,114.760317614863,31.488568715425,0,114.759808717023,31.488387114905,0,114.759633252886,31.488541311434,0,114.759384838976,31.488358148379,0,114.759275192549,31.488076762884,0,114.759311993751,31.487775128957,0,114.758561839445,31.487182548077,0,114.758697306882,31.487110868807,0,114.758699361936,31.486914385865,0,114.757757089185,31.486242749105,0,114.757629627855,31.485940995787,0,114.757592953278,31.485557913599,0,114.757384946365,31.485027311705,0,114.756869728400,31.484736421600,0,114.757087949816,31.483970427097,0,114.756844137580,31.483449318803,0,114.756611486388,31.483235414085,0,114.756215831472,31.483291713190,0,114.755967214817,31.482660482339,0,114.755332063162,31.482059204591,0,114.754897616987,31.482059205173,0,114.754861846488,31.482746210120,0,114.754716425348,31.483298814444,0,114.754548611677,31.483567037915,0,114.754125632718,31.483236464250,0,114.754124553542,31.482938647140,0,114.753878360550,31.482395619594,0,114.753695698456,31.482090039388,0,114.753632307906,31.481410481609,0,114.753289867416,31.481015102768,0,114.753040363587,31.481175723343,0,114.752915746355,31.481590240288,0,114.752650718741,31.481824995793,0,114.752461719182,31.481763805932,0,114.752492181028,31.481546793533,0,114.752577010538,31.481372644762,0,114.752299530904,31.481011641959,0,114.752082303392,31.480623636174,0,114.751914586818,31.480132913067,0,114.751552603885,31.479829420144,0,114.751101045462,31.480024295232,0,114.750741661873,31.480478618570,0,114.750323308780,31.480944957324,0,114.750048281895,31.481113930632,0,114.749737412491,31.480945631215,0,114.749743689021,31.480519805969,0,114.750048719324,31.479912844646,0,114.750041914300,31.479286191591,0,114.749784491240,31.478788269958,0,114.749287672310,31.478660225950,0,114.748717624302,31.478945586232,0,114.748647370422,31.479196005144,0,114.749433059446,31.479802561036,0,114.749412393927,31.480092215493,0,114.748568050845,31.480705268780,0,114.748203588929,31.481111518289,0,114.747625427215,31.481365308792,0,114.747271632826,31.481416215970,0,114.746955864596,31.481169726325,0,114.747199896476,31.480894990305,0,114.747883743218,31.480238193708,0,114.748204621545,31.480051745278,0,114.748156421392,31.479791327738,0,114.747774041484,31.479568262363,0,
|
|
|
|
|
|
114.747521625060,31.479113530768,0,114.747521681457,31.478890217261,0,114.747296856262,31.478826086621,0,114.746850455238,31.479177351909,0,114.746684213930,31.478967294762,0,114.746498014503,31.478825740457,0,114.746854994965,31.478577291246,0,114.747332293651,31.478237910776,0,114.748026500479,31.478714642968,0,114.748413445348,31.478915396501,0,114.748641402972,31.478665339573,0,114.748237459971,31.478257619696,0,114.748425388821,31.477740141786,0,114.748517755263,31.477119346645,0,114.748141023700,31.476582022412,0,114.747783189215,31.476350368704,0,114.747646759493,31.475812250387,0,114.747371719385,31.475116041247,0,114.747159367303,31.474650327194,0,114.746997136829,31.474686928606,0,114.746895353420,31.475282159552,0,114.746696239825,31.475685284864,0,114.746394185665,31.475905894789,0,114.746172868101,31.475977586172,0,114.746183828108,31.475873470133,0,114.746344696771,31.475500641410,0,114.746363142344,31.475095561969,0,114.746250622843,31.474776980269,0,114.745926175401,31.474406660179,0,114.745731509917,31.473936824038,0,114.745637221414,31.473667398387,0,114.750146414188,31.473601467447,0,114.750000448945,31.474040130699,0,114.750173216162,31.474535206289,0,114.750617766544,31.475058231203,0,114.750956078830,31.475508587878,0,114.751137147744,31.475735513728,0,114.751621252382,31.475578508045,0,114.752030974187,31.474959695204,0,114.752194353339,31.474428478359,0,114.752011845491,31.473904894299,0,114.751805491771,31.473594655362,0,114.752003347225,31.473615754846,0,114.752421665357,31.474186286281,0,114.752825463307,31.474590266556,0,114.753174047880,31.474645591808,0,114.752983708354,31.474861687693,0,114.753190841812,31.475438163718,0,114.753634474610,31.476000296276,0,114.754166071080,31.476310630211,0,114.754328549401,31.476562803853,0,114.754884863888,31.476748104048,0,114.755359494334,31.476484090774,0,114.755371603073,31.476696537597,0,114.755292117310,31.477165534496,0,114.755705630638,31.477454868867,0,114.756167978476,31.477541917548,0,114.756508046553,31.477212528618,0,114.756697969486,31.477150887009,0,114.756889621843,31.477574246425,0,114.757103282227,31.477810772102,0,114.756983626525,31.478059638260,0,114.757226777334,31.478288362205,0,114.757369248518,31.477988279021,0,114.757605336766,31.477673918558,0,114.757820914869,31.477531931091,0,114.757833664739,31.477274222577,0,114.758006845725,31.476884079222,0,
|
|
|
|
|
|
114.747521625060,31.479113530768,0,114.747521681457,31.478890217261,0,114.747296856262,31.478826086621,0,114.746850455238,31.479177351909,0,114.746684213930,31.478967294762,0,114.746498014503,31.478825740457,0,114.746854994965,31.478577291246,0,114.747332293651,31.478237910776,0,114.748026500479,31.478714642968,0,114.748413445348,31.478915396501,0,114.748641402972,31.478665339573,0,114.748237459971,31.478257619696,0,114.748425388821,31.477740141786,0,114.748517755263,31.477119346645,0,114.748141023700,31.476582022412,0,114.747783189215,31.476350368704,0,114.747646759493,31.475812250387,0,114.747371719385,31.475116041247,0,114.747159367303,31.474650327194,0,114.746997136829,31.474686928606,0,114.746895353420,31.475282159552,0,114.746696239825,31.475685284864,0,114.746394185665,31.475905894789,0,114.746172868101,31.475977586172,0,114.746183828108,31.475873470133,0,114.746344696771,31.475500641410,0,114.746363142344,31.475095561969,0,114.746250622843,31.474776980269,0,114.745926175401,31.474406660179,0,114.745731509917,31.473936824038,0,114.745637221414,31.473667398387,0,114.750146414188,31.473601467447,0,114.750000448945,31.474040130699,0,114.750173216162,31.474535206289,0,114.750617766544,31.475058231203,0,114.750956078830,31.475508587878,0,114.751137147744,31.475735513728,0,114.751621252382,31.475578508045,0,114.752030974187,31.474959695204,0,114.752194353339,31.474428478359,0,114.752011845491,31.473904894299,0,114.751805491771,31.473594655362,0,114.752003347225,31.473615754846,0,114.752421665357,31.474186286281,0,114.752825463307,31.474590266556,0,114.753174047880,31.474645591808,0,114.752983708354,31.474861687693,0,114.753190841812,31.475438163718,0,114.753634474610,31.476000296276,0,114.754166071080,31.476310630211,0,114.754328549401,31.476562803853,0,114.754884863888,31.476748104048,0,114.755359494334,31.476484090774,0,114.755371603073,31.476696537597,0,114.755292117310,31.477165534496,0,114.755705630638,31.477454868867,0,114.756167978476,31.477541917548,0,114.756508046553,31.477212528618,0,114.756697969486,31.477150887009,0,114.756889621843,31.477574246425,0,114.757103282227,31.477810772102,0,114.756983626525,31.478059638260,0,114.757226777334,31.478288362205,0,114.757369248518,31.477988279021,0,114.757605336766,31.477673918558,0,114.757820914869,31.477531931091,0,114.757833664739,31.477274222577,0,114.758006845725,31.476884079222,0,114.758183979587,31.476563587037,0,114.758362822354,31.476397602662,0,114.758574233152,31.476363950008,0,114.758480179092,31.476250416058,0,114.758274472521,31.476170672542,0,114.758657325489,31.476059497934,0,114.758813987877,31.475968603142,0,114.759059841981,31.476094421594,0,114.758906511413,31.476434583226,0,114.758533447967,31.476908746087,0,114.758488751266,31.477346791114,0,114.758566491961,31.477884759549,0,114.758705622387,31.478349444031,0,
|
|
|
|
|
|
114.759033943973,31.478504933977,0,114.759338311007,31.478678538841,0,114.759383004631,31.478844260237,0,114.759754231911,31.478562575587,0,114.760137189482,31.478196083086,0,114.760305945117,31.478227587062,0,114.760441703259,31.478013806267,0,114.760338852516,31.477782896209,0,114.760702730845,31.477780324598,0,114.760950830945,31.477758665511,0,114.761370595107,31.477397061919,0,114.761534680778,31.477203585475,0,114.761992939995,31.477314307069,0,114.761787789727,31.477644869341,0,114.762177518162,31.477720185979,0,114.762591160030,31.477713758675,0,114.763272593257,31.478148228712,0,114.763736181663,31.478693584945,0,114.763838575174,31.479097079244,0,114.763371760711,31.479465949619,0,114.762924073927,31.479442569451,0,114.762493176916,31.479217136404,0,114.761862363779,31.479182389362,0,114.761759239686,31.478924020358,0,114.761466500934,31.479012763167,0,114.761108834058,31.479283782981,0,114.761150975625,31.479851100002,0,114.761360836710,31.480395798209,0,114.761878604394,31.480794234521,0,114.762309920074,31.480945841143,0,114.762458245440,31.481088411666,0,114.762278407042,31.481229835828,0,114.761878271001,31.481355771344,0,114.761847112681,31.481566897840,0,114.761680206585,31.481682611892,0,114.761512401933,31.481561252967,0,114.761391340256,31.481151968337,0,114.761037539524,31.480867100352,0,114.760763102553,31.480534145984,0,114.760566158450,31.480330493050,0,114.760383508751,31.480125079676,0,114.760303420803,31.480294229877,0,114.760385876711,31.480460103562,0,114.760209352277,31.480425546055,0,114.760008990039,31.480299089481,0,114.760091710339,31.480176126899,0,114.759930771120,31.480101352914,0,114.759846371978,31.480207680521,0,114.759821213611,31.480580709929,0,114.759768577192,31.480905599251,0,114.759912428647,31.481361241960,0,114.759840097066,31.481539642083,0,114.759994930546,31.482001475188,0,114.760065913057,31.482439531443,0,114.760098757968,31.482762167144,0,114.760277396839,31.483066178690,0,114.760565905409,31.483675152361,0,114.760965116098,31.483988046290,0,114.761220681488,31.484059633329,0,114.761239487190,31.484347717049,0,114.761482718107,31.485098568159,0,114.761824867919,31.485754310824,0,114.762167486316,31.486316675447,0,114.762817963258,31.486373477704,0,114.763410271547,31.486301486574,0,114.763810931165,31.486363303223,0,114.763910570659,31.486712476337,0,114.763712316935,31.486944613631,0,114.763788700959,31.487084210212,0,114.764171065025,31.487020573158,0,114.764400790032,31.486842861520,0,114.764399598456,31.486756270872,0,114.764827384422,31.486642846262,0,114.765122609538,31.486557298869,0,114.765334653917,31.486371534635,0,114.765373221766,31.485958309569,0,114.765463235152,31.485602650177,0,114.765373478786,31.485413359835,0,114.765500686292,31.485360635038,0,114.765654106620,31.485813003536,0,114.765781393970,31.485903727572,0,114.766027967614,31.486199133069,0,114.766326511619,31.486065210281,0,114.766568146198,31.485950524801,0,114.766523895837,31.486212718818,0,
|
|
|
|
|
|
114.767007982540,31.486218926026,0,114.767225149054,31.486158019664,0,114.767637050397,31.486174031506,0,114.767802182209,31.486088089468,0,114.767722950956,31.485798741267,0,114.767768404699,31.485798045018,0,114.768098772182,31.485871343064,0,114.768191548224,31.486073184943,0,114.768454736403,31.485961626384,0,114.768520402986,31.485615326677,0,114.768308017255,31.485283029243,0,114.768317328033,31.484996118996,0,114.768480974831,31.484861514215,0,114.768692221430,31.485081202312,0,114.768744933634,31.485209510337,0,114.768919785917,31.485476820670,0,114.769067038762,31.485635668645,0,114.769148470421,31.485847348630,0,114.769283803550,31.485997071003,0,114.769556907791,31.486446912005,0,114.769641413164,31.486281229726,0,114.769531583276,31.485883674453,0,114.769414395307,31.485679169023,0,114.769608912008,31.485624661134,0,114.769490749456,31.485329455978,0,114.769309459399,31.485091974041,0,114.769481316392,31.484697693971,0,114.769652140442,31.484216858369,0,114.770844196095,31.484621445862,0,114.770926777984,31.485078416161,0,114.770810172747,31.485262074623,0,114.770454784931,31.485420960074,0,114.770367710664,31.485931939207,0,114.770391085529,31.486454434109,0,114.770385314268,31.486763281023,0,114.770487547838,31.486833692588,0,114.770301579751,31.486989926983,0,114.769693442448,31.487046138217,0,114.769839276194,31.487364329794,0,114.770219613497,31.487645981863,0,114.770718138745,31.488033056837,0,114.771230550041,31.488525678491,0,114.771654393394,31.489061449294,0,114.771707245908,31.489553173362,0,114.771769434626,31.489995675836,0,114.772051529413,31.490146919261,0,114.772809224546,31.490061934929,0,114.773651038895,31.490509975292,0,114.773946868674,31.490678194457,0,114.773797013882,31.490961652706,0,114.773582374968,31.490934704214,0,114.772733306334,31.490984732113,0,114.772623333824,31.491221566838,0,114.772855503204,31.491623067750,0,114.772721617177,31.491781525611,0,114.772380046591,31.491595288619,0,114.772344385782,31.491905711084,0,114.772538591731,31.492522334503,0,114.772294889270,31.492987672016,0,114.771933268396,31.493402171983,0,114.771945730761,31.493952428560,0,114.771616123674,31.494445379075,0,114.771428465903,31.494918835324,0,114.771872387193,31.495310827837,0,114.772359475584,31.495768401935,0,114.772776110279,31.496222217644,0,114.773094899580,31.496359923799,0,114.773527466154,31.496420289025,0,114.773963084937,31.497014014710,0,114.774686066437,31.497276199616,0,114.774988739941,31.497755505510,0,114.776076328799,31.499985779078,0,114.776882490196,31.501141179135,0,114.777591496091,31.502048534807,0,114.779229872922,31.502937109629,0,114.780416043920,31.503579439915,0,114.781897419939,31.504078963136,0,114.783086557042,31.504491590164,0,114.783754311285,31.504547353401,0,
|
|
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
material: {
|
|
|
|
|
|
solidColor: {
|
|
|
|
|
|
color: [
|
|
|
|
|
|
{
|
|
|
|
|
|
rgba: [85, 119, 243, 125],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: "yellowRiverRight",
|
|
|
|
|
|
name: "yellowRiverRightName",
|
|
|
|
|
|
availability: "2000-01-01T00:00:00Z/2000-01-01T00:00:14Z",
|
|
|
|
|
|
polygon: {
|
|
|
|
|
|
positions: [
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:07Z/2000-01-01T00:00:08Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.771283180989,31.495378330227,0,114.770921662476,31.495178755602,0,114.770666216729,31.494993284588,0,114.770454305549,31.494698403413,0,114.770263374684,31.494514501965,0,114.770123394611,31.494400360792,0,114.769861563251,31.494403570364,0,
|
|
|
|
|
|
114.769678546956,31.494426071628,0,114.769585666783,31.494488251423,0,114.769480493274,31.494596309941,0,114.769383328601,31.494706875275,0,114.769264553519,31.494823261481,0,114.769134862255,31.494935364613,0,114.769074997575,31.494996677761,0,114.768964872072,31.495120310991,0,114.768888011670,31.495240909231,0,114.768796770433,31.495388214977,0,114.768731820858,31.495502097094,0,114.768665855622,31.495666636403,0,114.768633059787,31.495873500982,0,114.768578227328,31.496029679091,0,114.768501416066,31.496212968382,0,114.768440187191,31.496272989468,0,114.768361977728,31.496348285231,0,114.768142885040,31.496562634569,0,114.767951461712,31.496752186709,0,114.767793862094,31.496922622162,0,114.767714432192,31.496987296134,0,114.767579943979,31.497086008985,0,114.767409257576,31.497178442170,0,114.767184883067,31.497251763817,0,114.767025968606,31.497254852248,0,114.766622524326,31.497239998291,0,114.766334565206,31.497208077090,0,114.766023483778,31.497174942626,0,114.765808813377,31.497167387390,0,114.765742927467,31.497157317578,0,114.765610393751,31.497219209924,0,114.765483226029,31.497293187846,0,114.765384263521,31.497368234824,0,114.765178038170,31.497534761637,0,114.764986440386,31.497685675884,0,114.764637797713,31.497944160202,0,114.764450478442,31.498083882896,0,114.763852102481,31.498755857824,0,114.763702103330,31.498886219964,0,114.763336628632,31.498505811142,0,114.763516746020,31.498395694030,0,114.764346859232,31.497970047521,0,114.764472573311,31.497878701158,0,114.764963556368,31.497512749359,0,114.765287324353,31.497267466340,0,114.765444489511,31.497134334438,0,114.765690029719,31.496957871202,0,114.765867123312,31.496877193953,0,114.766014314713,31.496820827377,0,114.766256619428,31.496820175478,0,114.766358478778,31.496850972754,0,114.766771385502,31.496977625383,0,114.766980065381,31.497014831617,0,114.767141920665,31.496996537282,0,114.767423211058,31.496909488682,0,114.767623003736,31.496805221952,0,114.767884223549,31.496629633216,0,114.768003951205,31.496504987686,0,114.768041480235,31.496468106004,0,114.768129608836,31.496364104072,0,114.768215248759,31.496228302150,0,114.768356167693,31.495996055037,0,114.768543319774,31.495659232866,0,114.768705542039,31.495385607825,0,114.768800422909,31.495224726512,0,114.769016844789,31.494971684424,0,114.769245018797,31.494712604420,0,114.769562499453,31.494370505566,0,114.769631256010,31.494282209772,0,
|
|
|
|
|
|
114.769759889835,31.494158474654,0,114.769926377936,31.493845605937,0,114.770010631583,31.493573641800,0,114.770130415543,31.493070466783,0,114.770110240418,31.492388554767,0,114.770145732237,31.491795441089,0,114.770198125037,31.490951410875,0,114.770307338482,31.490554446242,0,114.770471500663,31.490605032284,0,114.770514845007,31.491406762649,0,114.770492782833,31.492249351243,0,114.770505366376,31.493063167355,0,114.770482893265,31.493849826934,0,114.770482514728,31.494284061965,0,114.770541821675,31.494470071210,0,114.770898633959,31.494961060573,0,114.771092458961,31.495156680700,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:08Z/2000-01-01T00:00:09Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.771283180989,31.495378330227,0,114.770921662476,31.495178755602,0,114.770666216729,31.494993284588,0,114.770454305549,31.494698403413,0,114.770263374684,31.494514501965,0,114.770123394611,31.494400360792,0,114.769861563251,31.494403570364,0,
|
|
|
|
|
|
114.769678546956,31.494426071628,0,114.769585666783,31.494488251423,0,114.769480493274,31.494596309941,0,114.769383328601,31.494706875275,0,114.769264553519,31.494823261481,0,114.769134862255,31.494935364613,0,114.769074997575,31.494996677761,0,114.768964872072,31.495120310991,0,114.768888011670,31.495240909231,0,114.768796770433,31.495388214977,0,114.768731820858,31.495502097094,0,114.768665855622,31.495666636403,0,114.768633059787,31.495873500982,0,114.768578227328,31.496029679091,0,114.768501416066,31.496212968382,0,114.768440187191,31.496272989468,0,114.768361977728,31.496348285231,0,114.768142885040,31.496562634569,0,114.767951461712,31.496752186709,0,114.767793862094,31.496922622162,0,114.767714432192,31.496987296134,0,114.767579943979,31.497086008985,0,114.767409257576,31.497178442170,0,114.767184883067,31.497251763817,0,114.767025968606,31.497254852248,0,114.766622524326,31.497239998291,0,114.766334565206,31.497208077090,0,114.766023483778,31.497174942626,0,114.765808813377,31.497167387390,0,114.765742927467,31.497157317578,0,114.765610393751,31.497219209924,0,114.765483226029,31.497293187846,0,114.765384263521,31.497368234824,0,114.765178038170,31.497534761637,0,114.764986440386,31.497685675884,0,114.764637797713,31.497944160202,0,114.764450478442,31.498083882896,0,114.763852102481,31.498755857824,0,114.763702103330,31.498886219964,0,114.763336628632,31.498505811142,0,114.763516746020,31.498395694030,0,114.764346859232,31.497970047521,0,114.764472573311,31.497878701158,0,114.764963556368,31.497512749359,0,114.765287324353,31.497267466340,0,114.765444489511,31.497134334438,0,114.765690029719,31.496957871202,0,114.765867123312,31.496877193953,0,114.766014314713,31.496820827377,0,114.766256619428,31.496820175478,0,114.766358478778,31.496850972754,0,114.766771385502,31.496977625383,0,114.766980065381,31.497014831617,0,114.767141920665,31.496996537282,0,114.767423211058,31.496909488682,0,114.767623003736,31.496805221952,0,114.767884223549,31.496629633216,0,114.768003951205,31.496504987686,0,114.768041480235,31.496468106004,0,114.768129608836,31.496364104072,0,114.768215248759,31.496228302150,0,114.768356167693,31.495996055037,0,114.768543319774,31.495659232866,0,114.768705542039,31.495385607825,0,114.768800422909,31.495224726512,0,114.769016844789,31.494971684424,0,114.769245018797,31.494712604420,0,114.769562499453,31.494370505566,0,114.769631256010,31.494282209772,0,
|
|
|
|
|
|
114.769808505372,31.494005896974,0,114.769926853160,31.493650468817,0,114.770023925488,31.493185212645,0,114.770007699086,31.492653601017,0,114.770027543019,31.491803268104,0,114.770082048676,31.491086150268,0,114.770167981769,31.490081858602,0,114.770206616384,31.489661391192,0,114.770074747597,31.488961231308,0,114.769976840478,31.488311296770,0,114.769680596879,31.487786638776,0,114.769332244306,31.487498471739,0,114.768667018705,31.487003196247,0,114.767989612498,31.486653019367,0,114.767339548940,31.486508050318,0,114.767192610448,31.486395200645,0,114.767721357859,31.486420421677,0,114.768338897497,31.486679958266,0,114.768984020613,31.486998289964,0,114.769654038684,31.487550249130,0,114.770055656969,31.487947301929,0,114.770298567154,31.488727135685,0,114.770480310202,31.489659240530,0,114.770550882448,31.490625480958,0,114.770642271123,31.491493949303,0,114.770559855329,31.492307007139,0,114.770560825271,31.493169956990,0,114.770543797061,31.494059012414,0,114.770545276296,31.494457824361,0,114.770864372348,31.494796141975,0,114.771362219361,31.495247615862,0,114.771797911734,31.495631901200,0,114.772004006051,31.496076634842,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:09Z/2000-01-01T00:00:10Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.773738561371,31.498118895454,0,114.773602713151,31.497991316579,0,114.773349735013,31.497761888524,0,114.773123183842,31.497567541009,0,114.772851116202,31.497368785117,0,114.772636515392,31.497186610356,0,114.772435569618,31.497005968511,0,114.772227421189,31.496773053716,0,114.772073219968,31.496632929251,0,114.772025407126,31.496361082491,0,114.771980540369,31.496166559995,0,114.771709622119,31.495883599706,0,114.771418294396,31.495566763007,0,114.771283346318,31.495422485262,0,114.770948655640,31.495252403973,0,114.770653037789,31.495098217622,0,114.770539394041,31.494932795525,0,114.770436394979,31.494734013866,0,114.770230107010,31.494570370807,0,114.770082854306,31.494439502857,0,114.769923964224,31.494425905248,0,114.769685539459,31.494455402781,0,114.769501038306,31.494599833600,0,114.769383328601,31.494706875275,0,114.769264553519,31.494823261481,0,114.769134862255,31.494935364613,0,114.769074997575,31.494996677761,0,114.768964872072,31.495120310991,0,114.768888011670,31.495240909231,0,114.768796770433,31.495388214977,0,114.768731820858,31.495502097094,0,114.768665855622,31.495666636403,0,114.768633059787,31.495873500982,0,114.768578227328,31.496029679091,0,114.768501416066,31.496212968382,0,114.768440187191,31.496272989468,0,114.768361977728,31.496348285231,0,114.768142885040,31.496562634569,0,114.767951461712,31.496752186709,0,114.767793862094,31.496922622162,0,114.767714432192,31.496987296134,0,114.767579943979,31.497086008985,0,114.767409257576,31.497178442170,0,114.767184883067,31.497251763817,0,114.767025968606,31.497254852248,0,114.766622524326,31.497239998291,0,114.766334565206,31.497208077090,0,114.766023483778,31.497174942626,0,114.765808813377,31.497167387390,0,114.765742927467,31.497157317578,0,114.765610393751,31.497219209924,0,114.765483226029,31.497293187846,0,114.765384263521,31.497368234824,0,114.765178038170,31.497534761637,0,114.764986440386,31.497685675884,0,114.764637797713,31.497944160202,0,114.764450478442,31.498083882896,0,114.763852102481,31.498755857824,0,114.763702103330,31.498886219964,0,114.763336628632,31.498505811142,0,114.763516746020,31.498395694030,0,114.764346859232,31.497970047521,0,114.764472573311,31.497878701158,0,114.764963556368,31.497512749359,0,114.765287324353,31.497267466340,0,114.765444489511,31.497134334438,0,114.765690029719,31.496957871202,0,114.765867123312,31.496877193953,0,114.766014314713,31.496820827377,0,114.766256619428,31.496820175478,0,114.766358478778,31.496850972754,0,114.766771385502,31.496977625383,0,114.766980065381,31.497014831617,0,114.767141920665,31.496996537282,0,114.767423211058,31.496909488682,0,114.767623003736,31.496805221952,0,114.767884223549,31.496629633216,0,114.768003951205,31.496504987686,0,114.768041480235,31.496468106004,0,114.768129608836,31.496364104072,0,114.768215248759,31.496228302150,0,114.768356167693,31.495996055037,0,114.768543319774,31.495659232866,0,114.768705542039,31.495385607825,0,114.768800422909,31.495224726512,0,114.769016844789,31.494971684424,0,114.769245018797,31.494712604420,0,114.769333876187,31.494593447609,0,114.769645918255,31.494220897758,0,114.769750009780,31.494108453041,0,114.769777225302,31.493968040102,0,114.769804915775,31.493794415952,0,114.769833358875,31.493446727192,0,114.769830436574,31.493078379616,0,114.769855121691,31.492757291949,0,114.769896383762,31.492276200813,0,114.769969902020,31.491578911964,0,114.770011835687,31.490904517660,0,114.770059869229,31.490223724122,0,114.770013230399,31.489338155839,0,114.769975104099,31.488940692051,0,114.769651204389,31.488327292573,0,114.769130656719,31.487746402071,0,114.768612242602,31.487363115473,0,114.767789437305,31.486937202677,0,114.767052185564,31.486794108352,0,114.766105403469,31.486918686631,0,114.764982568345,31.487491422216,0,114.764064414146,31.487922833924,0,114.763075732155,31.488340522913,0,114.762281883760,31.488589672703,0,114.761527761479,31.488436405191,0,114.760828472910,31.488150287060,0,
|
|
|
|
|
|
114.760546046888,31.487978805981,0,114.759989261362,31.487421273279,0,114.759531023201,31.486652741867,0,114.759383530477,31.485943965574,0,114.759545233078,31.485937512022,0,114.759906231498,31.486749153779,0,114.760466323382,31.487470991412,0,114.760989994938,31.487878989544,0,114.761863536123,31.488045311942,0,114.762383125788,31.488007615231,0,
|
|
|
|
|
|
114.762905906179,31.487922416691,0,114.763646158111,31.487556134377,0,114.764600923883,31.487088019417,0,114.765457619607,31.486542517488,0,114.766148156638,31.486407601109,0,114.767126854574,31.486341020689,0,114.767964564257,31.486397142608,0,114.768690339406,31.486729966290,0,114.769236582929,31.487092400742,0,114.769768337983,31.487619607758,0,114.770130044265,31.488063832809,0,114.770471027258,31.488727410924,0,114.770801782596,31.489543252406,0,114.770889750439,31.490335236832,0,114.770876714481,31.491101640723,0,114.770727431989,31.492001953077,0,114.770603625829,31.492943236244,0,114.770554310205,31.493724618709,0,114.770630418212,31.494338845625,0,114.770833730922,31.494715613188,0,114.771318624614,31.495186675672,0,114.771812283272,31.495628588820,0,114.772039409151,31.495878539678,0,114.772176885128,31.496206730739,0,114.772454198037,31.496515747008,0,114.772705428927,31.496641169891,0,114.772876189677,31.497101243850,0,114.772979323476,31.497253361333,0,114.773282892009,31.497498190900,0,114.773593305921,31.497822120530,0,114.773771382637,31.498061270701,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:10Z/2000-01-01T00:00:11Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.773738561371,31.498118895454,0,114.773602713151,31.497991316579,0,114.773349735013,31.497761888524,0,114.773123183842,31.497567541009,0,114.772851116202,31.497368785117,0,114.772636515392,31.497186610356,0,114.772435569618,31.497005968511,0,114.772227421189,31.496773053716,0,114.772073219968,31.496632929251,0,114.772025407126,31.496361082491,0,114.771980540369,31.496166559995,0,114.771709622119,31.495883599706,0,114.771418294396,31.495566763007,0,114.771283346318,31.495422485262,0,114.770948655640,31.495252403973,0,114.770653037789,31.495098217622,0,114.770539394041,31.494932795525,0,114.770436394979,31.494734013866,0,114.770230107010,31.494570370807,0,114.770082854306,31.494439502857,0,114.769923964224,31.494425905248,0,114.769685539459,31.494455402781,0,114.769501038306,31.494599833600,0,114.769383328601,31.494706875275,0,114.769264553519,31.494823261481,0,114.769134862255,31.494935364613,0,114.769074997575,31.494996677761,0,114.768964872072,31.495120310991,0,114.768888011670,31.495240909231,0,114.768796770433,31.495388214977,0,114.768731820858,31.495502097094,0,114.768665855622,31.495666636403,0,114.768633059787,31.495873500982,0,114.768578227328,31.496029679091,0,114.768501416066,31.496212968382,0,114.768440187191,31.496272989468,0,114.768361977728,31.496348285231,0,114.768142885040,31.496562634569,0,114.767951461712,31.496752186709,0,114.767793862094,31.496922622162,0,114.767714432192,31.496987296134,0,114.767579943979,31.497086008985,0,114.767409257576,31.497178442170,0,114.767184883067,31.497251763817,0,114.767025968606,31.497254852248,0,114.766622524326,31.497239998291,0,114.766334565206,31.497208077090,0,114.766023483778,31.497174942626,0,114.765808813377,31.497167387390,0,114.765742927467,31.497157317578,0,114.765610393751,31.497219209924,0,114.765483226029,31.497293187846,0,114.765384263521,31.497368234824,0,114.765178038170,31.497534761637,0,114.764986440386,31.497685675884,0,114.764637797713,31.497944160202,0,114.764450478442,31.498083882896,0,114.763852102481,31.498755857824,0,114.763702103330,31.498886219964,0,114.763336628632,31.498505811142,0,114.763516746020,31.498395694030,0,114.764346859232,31.497970047521,0,114.764472573311,31.497878701158,0,114.764963556368,31.497512749359,0,114.765287324353,31.497267466340,0,114.765444489511,31.497134334438,0,114.765690029719,31.496957871202,0,114.765867123312,31.496877193953,0,114.766014314713,31.496820827377,0,114.766256619428,31.496820175478,0,114.766358478778,31.496850972754,0,114.766771385502,31.496977625383,0,114.766980065381,31.497014831617,0,114.767141920665,31.496996537282,0,114.767423211058,31.496909488682,0,114.767623003736,31.496805221952,0,114.767884223549,31.496629633216,0,114.768003951205,31.496504987686,0,114.768041480235,31.496468106004,0,114.768129608836,31.496364104072,0,114.768215248759,31.496228302150,0,114.768356167693,31.495996055037,0,114.768543319774,31.495659232866,0,114.768705542039,31.495385607825,0,114.768800422909,31.495224726512,0,114.769016844789,31.494971684424,0,114.769245018797,31.494712604420,0,114.769333876187,31.494593447609,0,114.769645918255,31.494220897758,0,114.769750009780,31.494108453041,0,
|
|
|
|
|
|
114.769742997143,31.493974730017,0,
|
|
|
|
|
|
114.769732242327,31.493524973498,0,114.769714307277,31.493067649077,0,114.769779388301,31.492590077518,0,114.769850189190,31.492087044662,0,114.769920802419,31.491474454772,0,114.769969907871,31.490805694233,0,114.770010325050,31.490336809751,0,114.769960289233,31.489504090829,0,114.769908313587,31.488997849074,0,114.769640173426,31.488498546163,0,114.769329697852,31.488033153086,0,114.768838496783,31.487597479583,0,114.768249474833,31.487247551144,0,114.767680087045,31.486964594105,0,114.767423167612,31.486906031853,0,114.766699638222,31.486950891056,0,114.766070766809,31.487012423367,0,114.765386123279,31.487368221632,0,114.764691917402,31.487717621638,0,114.763822048289,31.488102526059,0,114.763031588258,31.488449733624,0,114.762417332230,31.488647046318,0,114.762029303246,31.488667867837,0,114.761525743671,31.488553544659,0,114.760986178519,31.488323175161,0,114.760433518008,31.487992487575,0,114.760007977766,31.487610891978,0,114.759545424848,31.487152791606,0,114.759253082755,31.486739655815,0,114.759027407746,31.486207037374,0,114.758805904654,31.485606497229,0,114.758596622762,31.485015786752,0,114.758354417365,31.484304653934,0,114.758073693083,31.483531166911,0,114.757694300673,31.482628140794,0,114.757303116491,31.481481148578,0,114.756778804664,31.480318418957,0,114.756065575896,31.479179301235,0,114.755202622900,31.478250717900,0,114.754075052564,31.477495074076,0,114.752705245486,31.476698893791,0,114.750795406171,31.476369827002,0,114.749565400790,31.476143681625,0,114.749337072167,31.475931890213,0,114.750908598205,31.476045960085,0,114.752570193622,31.475878800176,0,114.753722818984,31.476474379926,0,114.755140385260,31.477247419509,0,114.756413087665,31.478578676980,0,114.757761058423,31.479994514852,0,114.758527145390,31.481466465083,0,114.758895563055,31.483656705675,0,114.759628770886,31.485695516546,0,114.760170840557,31.486819814907,0,114.760686251387,31.487579847409,0,114.761170149713,31.487853959479,0,114.761872578136,31.488022499097,0,114.762621046558,31.487975944668,0,114.763486562414,31.487617167574,0,114.764461496770,31.487100260776,0,114.765220707334,31.486627952863,0,114.765579817650,31.486417537506,0,114.766569513279,31.486328589828,0,114.767885330740,31.486349037826,0,114.768615115804,31.486629593283,0,114.769680950579,31.487482621352,0,114.770406296153,31.488486387839,0,114.770906606013,31.489733632925,0,114.770925269563,31.491124467601,0,114.770692720251,31.492665315398,0,114.770589641114,31.493774509746,0,114.770790629092,31.494462040568,0,114.771033642211,31.494905992677,0,114.771655513746,31.495464060701,0,114.772032790789,31.495831904057,0,114.772217628248,31.496243934554,0,114.772592196918,31.496574981706,0,114.772762436541,31.496746440460,0,114.772947180909,31.497207299920,0,114.773310913986,31.497499053590,0,114.773595338888,31.497814942484,0,114.773773664064,31.498064555680,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:11Z/2000-01-01T00:00:12Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.776196427090,31.501514063355,0,114.775857790981,31.501157896814,0,114.775515788329,31.500814032138,0,114.775207182958,31.500459149416,0,114.774832722247,31.500025643756,0,114.774471628590,31.499605623245,0,114.774189759542,31.499216007668,0,114.773827478266,31.498817744306,0,114.773489564372,31.498498553125,0,114.773232904656,31.498178312176,0,114.772934273532,31.497763965913,0,114.772608315829,31.497304339064,0,114.772240479547,31.496917903038,0,114.771917165337,31.496478963199,0,114.771553551163,31.495991824588,0,114.771044824584,31.495492091626,0,114.770597499574,31.495126852781,0,114.770244772990,31.494795110924,0,114.769926456857,31.494548673437,0,114.769734937087,31.494529070301,0,
|
|
|
|
|
|
114.769501038306,31.494599833600,0,114.769383328601,31.494706875275,0,114.769264553519,31.494823261481,0,114.769134862255,31.494935364613,0,114.769074997575,31.494996677761,0,114.768964872072,31.495120310991,0,114.768888011670,31.495240909231,0,114.768796770433,31.495388214977,0,114.768731820858,31.495502097094,0,114.768665855622,31.495666636403,0,114.768633059787,31.495873500982,0,114.768578227328,31.496029679091,0,114.768501416066,31.496212968382,0,114.768440187191,31.496272989468,0,114.768361977728,31.496348285231,0,114.768142885040,31.496562634569,0,114.767951461712,31.496752186709,0,114.767793862094,31.496922622162,0,114.767714432192,31.496987296134,0,114.767579943979,31.497086008985,0,114.767409257576,31.497178442170,0,114.767184883067,31.497251763817,0,114.767025968606,31.497254852248,0,114.766622524326,31.497239998291,0,114.766334565206,31.497208077090,0,114.766023483778,31.497174942626,0,114.765808813377,31.497167387390,0,114.765742927467,31.497157317578,0,114.765610393751,31.497219209924,0,114.765483226029,31.497293187846,0,114.765384263521,31.497368234824,0,114.765178038170,31.497534761637,0,114.764986440386,31.497685675884,0,114.764637797713,31.497944160202,0,114.764450478442,31.498083882896,0,114.763852102481,31.498755857824,0,114.763702103330,31.498886219964,0,114.763336628632,31.498505811142,0,114.763516746020,31.498395694030,0,114.764346859232,31.497970047521,0,114.764472573311,31.497878701158,0,114.764963556368,31.497512749359,0,114.765287324353,31.497267466340,0,114.765444489511,31.497134334438,0,114.765690029719,31.496957871202,0,114.765867123312,31.496877193953,0,114.766014314713,31.496820827377,0,114.766256619428,31.496820175478,0,114.766358478778,31.496850972754,0,114.766771385502,31.496977625383,0,114.766980065381,31.497014831617,0,114.767141920665,31.496996537282,0,114.767423211058,31.496909488682,0,114.767623003736,31.496805221952,0,114.767884223549,31.496629633216,0,114.768003951205,31.496504987686,0,114.768041480235,31.496468106004,0,114.768129608836,31.496364104072,0,114.768215248759,31.496228302150,0,114.768356167693,31.495996055037,0,114.768543319774,31.495659232866,0,114.768705542039,31.495385607825,0,114.768800422909,31.495224726512,0,114.769016844789,31.494971684424,0,114.769245018797,31.494712604420,0,114.769333876187,31.494593447609,0,114.769510057000,31.494326983048,0,
|
|
|
|
|
|
114.769597841208,31.494085854619,0,114.769655244668,31.493816307249,0,114.769620568615,31.493405450065,0,114.769693389070,31.492716187271,0,114.769764955629,31.492099165830,0,114.769833437463,31.491161850959,0,114.769890980671,31.490419656481,0,114.769852339952,31.489740800306,0,114.769872012440,31.489410013447,0,114.769865135122,31.489240757530,0,114.769647921292,31.488775417254,0,114.769328475025,31.488294353489,0,114.768935394926,31.487905954306,0,114.768362108762,31.487498947716,0,114.767661586726,31.487153677175,0,114.767005379534,31.487050961845,0,114.766064133278,31.487098846701,0,114.765504735583,31.487389540009,0,114.765060182356,31.487665641317,0,114.764539496354,31.488132812314,0,114.763727305652,31.488531100651,0,114.763199090479,31.488854737117,0,114.762734690546,31.488888490815,0,114.761975134889,31.488751992607,0,114.761244541560,31.488484689545,0,114.760635911742,31.488181408298,0,114.760234644626,31.487913800332,0,114.759828837355,31.487563720311,0,114.759473191863,31.487191324281,0,114.759251133740,31.486895064542,0,114.759026257838,31.486393729872,0,114.758827763330,31.485932869242,0,114.758656368660,31.485465675262,0,114.758463586225,31.484935807407,0,114.758205860719,31.484308533067,0,114.757971257265,31.483807104140,0,114.757696522762,31.483200461807,0,114.757367707446,31.482572286909,0,114.756936964998,31.481554638684,0,114.756164743809,31.480400978513,0,114.755306799670,31.479234360987,0,114.754334581175,31.478184811513,0,114.752884914737,31.477305690432,0,114.751356294966,31.476889094684,0,114.749825341787,31.476576021187,0,114.748759755309,31.476358520548,0,114.748624923910,31.476365378289,0,114.747917395784,31.475877714882,0,114.747676406537,31.475396193008,0,114.747245361488,31.474572877083,0,114.746947267727,31.474032426805,0,114.746801214204,31.473950695995,0,114.746525634203,31.474168367285,0,114.746353543987,31.474227604441,0,114.746274616603,31.473673602312,0,114.749088380452,31.473702673256,0,114.749035314136,31.474296337955,0,114.748980036510,31.474842010637,0,114.749262427538,31.475470078752,0,114.749635325745,31.475803404856,0,114.750385967768,31.475864896561,0,114.751297991140,31.475854450400,0,114.751919187831,31.475724373243,0,114.752118766543,31.475485927396,0,114.752513468469,31.475501886394,0,114.752994373444,31.475959993440,0,114.753574358378,31.476367949580,0,114.754481441398,31.476790567878,0,114.755136808060,31.477103288475,0,114.755884301996,31.477828953431,0,114.756278699614,31.477941379596,0,114.756453708835,31.478210893965,0,114.756973900800,31.478800677211,0,114.757447392104,31.479307217367,0,114.757574930192,31.479438420631,0,114.757894966034,31.479486988950,0,114.758125806078,31.480036854412,0,114.758389439620,31.480442931451,0,114.758634851290,31.481072213516,0,114.758752294812,31.481807692724,0,114.759084607305,31.482859876538,0,114.759431903842,31.483922968409,0,114.759689395068,31.484833584848,0,
|
|
|
|
|
|
114.759803485080,31.485489330410,0,114.760166208160,31.486423478087,0,114.760751378145,31.487317936866,0,114.761613876843,31.487706765075,0,114.762797556240,31.487736392669,0,114.763799072883,31.487433085090,0,114.764843436447,31.486876857968,0,114.765602684547,31.486379802920,0,114.766822648705,31.486292198194,0,114.768149211064,31.486277785077,0,114.769378612088,31.487153736417,0,114.770170158651,31.487931502097,0,114.770815038617,31.489215858636,0,114.771000896049,31.490551626451,0,114.770838729230,31.492233921346,0,114.770616218105,31.493645318965,0,114.770745872144,31.494316168021,0,114.771105436525,31.494820124832,0,114.771718032453,31.495478912236,0,114.772242901661,31.496027098012,0,114.772885420840,31.496596950405,0,114.773346642861,31.497215213241,0,114.773822456131,31.498004226197,0,114.774372720395,31.498808650010,0,114.774888708567,31.499532260043,0,114.775462836609,31.500248960717,0,114.776013477748,31.500987529632,0,114.776366073005,31.501532092879,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:12Z/2000-01-01T00:00:13Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.776196427090,31.501514063355,0,114.775857790981,31.501157896814,0,114.775515788329,31.500814032138,0,114.775207182958,31.500459149416,0,114.774832722247,31.500025643756,0,114.774471628590,31.499605623245,0,114.774189759542,31.499216007668,0,114.773827478266,31.498817744306,0,114.773489564372,31.498498553125,0,114.773232904656,31.498178312176,0,114.772934273532,31.497763965913,0,114.772608315829,31.497304339064,0,114.772240479547,31.496917903038,0,114.771917165337,31.496478963199,0,114.771553551163,31.495991824588,0,114.771044824584,31.495492091626,0,114.770597499574,31.495126852781,0,114.770244772990,31.494795110924,0,114.769926456857,31.494548673437,0,114.769734937087,31.494529070301,0,
|
|
|
|
|
|
114.769501038306,31.494599833600,0,114.769383328601,31.494706875275,0,114.769264553519,31.494823261481,0,114.769134862255,31.494935364613,0,114.769074997575,31.494996677761,0,114.768964872072,31.495120310991,0,114.768888011670,31.495240909231,0,114.768796770433,31.495388214977,0,114.768731820858,31.495502097094,0,114.768665855622,31.495666636403,0,114.768633059787,31.495873500982,0,114.768578227328,31.496029679091,0,114.768501416066,31.496212968382,0,114.768440187191,31.496272989468,0,114.768361977728,31.496348285231,0,114.768142885040,31.496562634569,0,114.767951461712,31.496752186709,0,114.767793862094,31.496922622162,0,114.767714432192,31.496987296134,0,114.767579943979,31.497086008985,0,114.767409257576,31.497178442170,0,114.767184883067,31.497251763817,0,114.767025968606,31.497254852248,0,114.766622524326,31.497239998291,0,114.766334565206,31.497208077090,0,114.766023483778,31.497174942626,0,114.765808813377,31.497167387390,0,114.765742927467,31.497157317578,0,114.765610393751,31.497219209924,0,114.765483226029,31.497293187846,0,114.765384263521,31.497368234824,0,114.765178038170,31.497534761637,0,114.764986440386,31.497685675884,0,114.764637797713,31.497944160202,0,114.764450478442,31.498083882896,0,114.763852102481,31.498755857824,0,114.763702103330,31.498886219964,0,114.763336628632,31.498505811142,0,114.763516746020,31.498395694030,0,114.764346859232,31.497970047521,0,114.764472573311,31.497878701158,0,114.764963556368,31.497512749359,0,114.765287324353,31.497267466340,0,114.765444489511,31.497134334438,0,114.765690029719,31.496957871202,0,114.765867123312,31.496877193953,0,114.766014314713,31.496820827377,0,114.766256619428,31.496820175478,0,114.766358478778,31.496850972754,0,114.766771385502,31.496977625383,0,114.766980065381,31.497014831617,0,114.767141920665,31.496996537282,0,114.767423211058,31.496909488682,0,114.767623003736,31.496805221952,0,114.767884223549,31.496629633216,0,114.768003951205,31.496504987686,0,114.768041480235,31.496468106004,0,114.768129608836,31.496364104072,0,114.768215248759,31.496228302150,0,114.768356167693,31.495996055037,0,114.768543319774,31.495659232866,0,114.768705542039,31.495385607825,0,114.768800422909,31.495224726512,0,114.769016844789,31.494971684424,0,114.769245018797,31.494712604420,0,114.769333876187,31.494593447609,0,114.769510057000,31.494326983048,0,
|
|
|
|
|
|
114.769597841208,31.494085854619,0,114.769655244668,31.493816307249,0,114.769620568615,31.493405450065,0,114.769693389070,31.492716187271,0,114.769764955629,31.492099165830,0,114.769833437463,31.491161850959,0,114.769890980671,31.490419656481,0,114.769852339952,31.489740800306,0,114.769872012440,31.489410013447,0,114.769865135122,31.489240757530,0,114.769647921292,31.488775417254,0,114.769328475025,31.488294353489,0,114.768935394926,31.487905954306,0,
|
|
|
|
|
|
114.768151170571,31.487527385952,0,114.767468326010,31.487457397728,0,114.766487236798,31.487420828682,0,114.765525080807,31.487848882203,0,114.764867365673,31.488284834706,0,114.764228942576,31.488640401675,0,114.763378625634,31.488847458993,0,
|
|
|
|
|
|
114.761975134889,31.488751992607,0,114.761244541560,31.488484689545,0,114.760635911742,31.488181408298,0,114.760234644626,31.487913800332,0,114.759828837355,31.487563720311,0,114.759473191863,31.487191324281,0,114.759251133740,31.486895064542,0,114.759026257838,31.486393729872,0,114.758827763330,31.485932869242,0,114.758656368660,31.485465675262,0,114.758463586225,31.484935807407,0,114.758205860719,31.484308533067,0,114.757971257265,31.483807104140,0,114.757696522762,31.483200461807,0,114.757014754039,31.482354754562,0,114.756548264492,31.481747522274,0,114.755751559192,31.481256822995,0,114.754826950221,31.480503515586,0,114.754147257012,31.480028935072,0,114.753864458548,31.479496201432,0,114.753167477138,31.478786441847,0,114.752698901673,31.478137299121,0,114.752264736925,31.477636934127,0,114.749054740462,31.476701011789,0,114.748624923910,31.476365378289,0,114.747917395784,31.475877714882,0,114.747676406537,31.475396193008,0,114.747245361488,31.474572877083,0,114.746947267727,31.474032426805,0,114.746801214204,31.473950695995,0,114.746525634203,31.474168367285,0,114.746353543987,31.474227604441,0,114.746274616603,31.473673602312,0,114.749088380452,31.473702673256,0,114.749035314136,31.474296337955,0,114.748980036510,31.474842010637,0,114.749262427538,31.475470078752,0,114.749635325745,31.475803404856,0,114.750385967768,31.475864896561,0,114.751297991140,31.475854450400,0,114.751919187831,31.475724373243,0,114.752118766543,31.475485927396,0,114.752513468469,31.475501886394,0,114.752994373444,31.475959993440,0,114.753574358378,31.476367949580,0,114.754481441398,31.476790567878,0,114.755136808060,31.477103288475,0,114.755884301996,31.477828953431,0,114.756278699614,31.477941379596,0,114.756453708835,31.478210893965,0,114.756973900800,31.478800677211,0,114.757447392104,31.479307217367,0,114.757659405986,31.479476390902,0,114.757891107283,31.479225014095,0,114.758894609093,31.479176252997,0,114.759406387369,31.479479374777,0,114.758933779236,31.480714180914,0,114.759213790949,31.481749316322,0,114.759606592856,31.483365239699,0,114.759963921030,31.484330496262,0,114.759803485080,31.485489330410,0,114.760166208160,31.486423478087,0,114.760751378145,31.487317936866,0,114.761613876843,31.487706765075,0,114.762797556240,31.487736392669,0,114.763799072883,31.487433085090,0,114.764843436447,31.486876857968,0,114.765602684547,31.486379802920,0,114.766822648705,31.486292198194,0,114.768149211064,31.486277785077,0,114.769378612088,31.487153736417,0,114.770170158651,31.487931502097,0,114.770815038617,31.489215858636,0,114.771000896049,31.490551626451,0,114.770838729230,31.492233921346,0,114.770616218105,31.493645318965,0,114.770745872144,31.494316168021,0,114.771105436525,31.494820124832,0,114.771718032453,31.495478912236,0,114.772242901661,31.496027098012,0,114.772885420840,31.496596950405,0,114.773346642861,31.497215213241,0,114.773822456131,31.498004226197,0,114.774372720395,31.498808650010,0,114.774888708567,31.499532260043,0,114.775462836609,31.500248960717,0,114.776013477748,31.500987529632,0,114.776366073005,31.501532092879,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:13Z/2000-01-01T00:00:15Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.780366659698,31.504141426046,0,114.779534478738,31.503827697727,0,114.778672419434,31.503380063571,0,114.777939227289,31.503018767692,0,114.777357420404,31.502564350829,0,114.776582793215,31.501947988491,0,114.776196427090,31.501514063355,0,114.775857790981,31.501157896814,0,114.775515788329,31.500814032138,0,114.775207182958,31.500459149416,0,114.774832722247,31.500025643756,0,114.774471628590,31.499605623245,0,114.774189759542,31.499216007668,0,114.773827478266,31.498817744306,0,114.773489564372,31.498498553125,0,114.773232904656,31.498178312176,0,114.772934273532,31.497763965913,0,114.772608315829,31.497304339064,0,114.772240479547,31.496917903038,0,114.771917165337,31.496478963199,0,114.771553551163,31.495991824588,0,114.771044824584,31.495492091626,0,114.770597499574,31.495126852781,0,114.770244772990,31.494795110924,0,114.769926456857,31.494548673437,0,114.769734937087,31.494529070301,0,
|
|
|
|
|
|
114.769501038306,31.494599833600,0,114.769383328601,31.494706875275,0,114.769264553519,31.494823261481,0,114.769134862255,31.494935364613,0,114.769074997575,31.494996677761,0,114.768964872072,31.495120310991,0,114.768888011670,31.495240909231,0,114.768796770433,31.495388214977,0,114.768731820858,31.495502097094,0,114.768665855622,31.495666636403,0,114.768633059787,31.495873500982,0,114.768578227328,31.496029679091,0,114.768501416066,31.496212968382,0,114.768440187191,31.496272989468,0,114.768361977728,31.496348285231,0,114.768142885040,31.496562634569,0,114.767951461712,31.496752186709,0,114.767793862094,31.496922622162,0,114.767714432192,31.496987296134,0,114.767579943979,31.497086008985,0,114.767409257576,31.497178442170,0,114.767184883067,31.497251763817,0,114.767025968606,31.497254852248,0,114.766622524326,31.497239998291,0,114.766334565206,31.497208077090,0,114.766023483778,31.497174942626,0,114.765808813377,31.497167387390,0,114.765742927467,31.497157317578,0,114.765610393751,31.497219209924,0,114.765483226029,31.497293187846,0,114.765384263521,31.497368234824,0,114.765178038170,31.497534761637,0,114.764986440386,31.497685675884,0,114.764637797713,31.497944160202,0,114.764450478442,31.498083882896,0,114.763852102481,31.498755857824,0,114.763702103330,31.498886219964,0,114.763336628632,31.498505811142,0,114.763516746020,31.498395694030,0,114.764346859232,31.497970047521,0,114.764472573311,31.497878701158,0,114.764963556368,31.497512749359,0,114.765287324353,31.497267466340,0,114.765444489511,31.497134334438,0,114.765690029719,31.496957871202,0,114.765867123312,31.496877193953,0,114.766014314713,31.496820827377,0,114.766256619428,31.496820175478,0,114.766358478778,31.496850972754,0,114.766771385502,31.496977625383,0,114.766980065381,31.497014831617,0,114.767141920665,31.496996537282,0,114.767423211058,31.496909488682,0,114.767623003736,31.496805221952,0,114.767884223549,31.496629633216,0,114.768003951205,31.496504987686,0,114.768041480235,31.496468106004,0,114.768129608836,31.496364104072,0,114.768215248759,31.496228302150,0,114.768356167693,31.495996055037,0,114.768543319774,31.495659232866,0,114.768705542039,31.495385607825,0,114.768800422909,31.495224726512,0,114.769016844789,31.494971684424,0,114.769245018797,31.494712604420,0,114.769333876187,31.494593447609,0,114.769510057000,31.494326983048,0,
|
|
|
|
|
|
114.769591782115,31.494050249487,0,114.769626035643,31.493721431464,0,114.769598099168,31.493326544081,0,114.769661769995,31.492298860915,0,114.769673432253,31.491394424634,0,114.769731021105,31.490517315096,0,114.769679796944,31.489760801264,0,114.769618326795,31.489078099870,0,114.769342166657,31.488524955719,0,114.769011843649,31.488066208919,0,114.768534949759,31.487801139456,0,114.768219588455,31.487711283302,0,114.767203528545,31.487766788804,0,114.766153004587,31.487985356748,0,114.765267675674,31.488483645847,0,114.765343019905,31.488898483898,0,114.764639121071,31.489062875767,0,114.763770678935,31.489165677787,0,114.763099811681,31.488979937443,0,114.762248680963,31.488850267540,0,114.761531628620,31.488612980596,0,114.760548655769,31.488183353812,0,114.759871684271,31.487744759034,0,114.759335742824,31.487055575105,0,114.758863126328,31.486416465994,0,114.758477837768,31.485568534777,0,114.758136111079,31.484609611532,0,114.757612421934,31.483444493044,0,114.756983788669,31.482528454316,0,114.756280915787,31.481740405150,0,114.755330570960,31.481230154239,0,114.754570572164,31.480871159346,0,114.754119906530,31.480440791111,0,114.753697269348,31.479968517953,0,114.753288207520,31.479288162040,0,114.752726497395,31.478764127934,0,114.752141753737,31.478235436185,0,114.751473539754,31.477780406142,0,114.750634113747,31.477502143207,0,114.749744089166,31.477437178614,0,114.749230464310,31.477199104382,0,114.748900324813,31.476832212059,0,114.748422538960,31.476343733566,0,114.747950462938,31.475882435834,0,114.747577287011,31.475139841206,0,114.747193783393,31.474424182722,0,114.746916530883,31.474028026466,0,114.746707351206,31.474068580987,0,114.746235402417,31.474227077731,0,114.745970876901,31.474115043744,0,114.745732130035,31.473649024214,0,114.749302280719,31.473627893636,0,114.749314414215,31.474622617209,0,114.749535335692,31.475242144664,0,114.749783507452,31.475667117753,0,114.750364518584,31.475840415373,0,114.751153529640,31.475839455047,0,114.751697458410,31.475756869647,0,114.752089135696,31.475506288893,0,114.752514017829,31.475549352963,0,114.753035647965,31.475972787942,0,114.753580770367,31.476411289860,0,114.754598890642,31.476897226674,0,114.755527454410,31.477445793812,0,114.756029730521,31.477778462242,0,114.756612297245,31.478396336229,0,114.757337181331,31.479166979867,0,114.757627530417,31.479367509483,0,114.757913281058,31.479274997090,0,114.758476110103,31.479158159063,0,114.759097379174,31.479322085460,0,114.759487609137,31.479566992339,0,114.759065085397,31.480263555416,0,114.758945689844,31.480835558195,0,114.759372230867,31.482339022950,0,114.759695375031,31.483329778100,0,114.760143336797,31.484189583890,0,114.760553425164,31.485298474125,0,114.761054705362,31.486296674031,0,114.761368485493,31.487040983605,0,114.761865246972,31.487603213605,0,114.762794892950,31.487690971903,0,114.763781355548,31.487390471841,0,114.764817405557,31.486850977207,0,114.765393405982,31.486467364162,0,114.765792461820,31.486240628853,0,114.767046218812,31.486162852051,0,114.768319684475,31.486219855375,0,114.769211139127,31.486962607444,0,114.770121845344,31.487808902501,0,114.770930171593,31.488835072261,0,114.771246182566,31.489988293023,0,114.771455185925,31.490420748248,0,114.771549154736,31.491394170308,0,114.771375379856,31.492536381247,0,114.771083481691,31.493725679884,0,114.771018723830,31.494468347205,0,114.771487682060,31.495157686704,0,114.772272323710,31.495885481781,0,114.772900376237,31.496499262235,0,114.773313256844,31.496764719333,0,114.774051947412,31.497839193728,0,114.774743103758,31.498734180662,0,114.775189617775,31.499620053268,0,114.775828144066,31.500487155302,0,114.776322883714,31.501198738238,0,114.776855471001,31.501825075894,0,114.777697437299,31.502620432968,0,114.778453176808,31.503022090917,0,114.779514201268,31.503501172201,0,114.780667433655,31.504059408456,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
material: {
|
|
|
|
|
|
solidColor: {
|
|
|
|
|
|
color: [
|
|
|
|
|
|
{
|
|
|
|
|
|
rgba: [255, 255, 60, 125],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: "redRiverRight",
|
|
|
|
|
|
name: "redRiverRightName",
|
|
|
|
|
|
availability: "2000-01-01T00:00:00Z/2000-01-01T00:00:14Z",
|
|
|
|
|
|
polygon: {
|
|
|
|
|
|
positions: [
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:07Z/2000-01-01T00:00:08Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.769950689610,31.494366093330,0,114.769679233106,31.494397528444,0,114.769576927192,31.494476429394,0,
|
|
|
|
|
|
114.769371487522,31.494688505397,0,114.769250256011,31.494810067165,0,114.769139943231,31.494908072353,0,114.768998052753,31.495064806547,0,114.768944143543,31.495136163334,0,114.768833647090,31.495301894274,0,114.768727334709,31.495480159260,0,114.768658251103,31.495642954089,0,114.768617025532,31.495851906870,0,114.768565102323,31.496026072876,0,114.768477929608,31.496204904061,0,114.768418186795,31.496271731582,0,114.768257217452,31.496431964686,0,114.768104893929,31.496583059575,0,114.767953840273,31.496734363437,0,114.767793858275,31.496905295936,0,114.767618288622,31.497040598528,0,114.767423296449,31.497156008342,0,114.767220625200,31.497226785466,0,114.767071207159,31.497239842780,0,114.766777557613,31.497229460190,0,114.766639840427,31.497217393411,0,114.766250645414,31.497184791669,0,114.766075803330,31.497169033986,0,114.765858238810,31.497161670402,0,114.765749087369,31.497149789852,0,114.765578802644,31.497228955090,0,114.765473361890,31.497294544899,0,114.765136517774,31.497558773072,0,114.764843659345,31.497784893972,0,114.764453222739,31.498073043344,0,114.764148696635,31.498412741926,0,114.763850462189,31.498749625751,0,114.763700896817,31.498874329774,0,114.763348732120,31.498506694451,0,114.763521873571,31.498402125341,0,114.763800571985,31.498256877886,0,114.764373752997,31.497957064267,0,114.764714094725,31.497706094535,0,114.765033444991,31.497468743145,0,114.765426774993,31.497161865682,0,114.765690653071,31.496975842302,0,114.766029434881,31.496834579067,0,114.766262913406,31.496828772717,0,114.766783688310,31.496990033626,0,114.766980599700,31.497020245661,0,114.767143919965,31.497006201167,0,114.767431251284,31.496922081537,0,114.767628864841,31.496820407098,0,114.767890148508,31.496638503274,0,114.767931257165,31.496598442293,0,114.768144070759,31.496377983952,0,114.768217574009,31.496257284286,0,114.768262430136,31.496190717202,0,114.768376910300,31.496001449135,0,114.768524559972,31.495721557074,0,114.768677039301,31.495461253826,0,114.768812797476,31.495225802142,0,114.768936192096,31.495080413086,0,114.769135416269,31.494852552184,0,114.769306034785,31.494680644473,0,
|
|
|
|
|
|
114.769850726393,31.494027467094,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:08Z/2000-01-01T00:00:09Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.771321884904,31.495346062296,0,114.771231244526,31.495299880951,0,114.771093003964,31.495226956749,0,114.770926998741,31.495127419823,0,114.770761101114,31.495007306607,0,114.770692927217,31.494930014850,0,114.770485900658,31.494679255957,0,114.770284218161,31.494483023097,0,114.770136594007,31.494380594626,0,
|
|
|
|
|
|
114.769950689610,31.494366093330,0,114.769679233106,31.494397528444,0,114.769576927192,31.494476429394,0,
|
|
|
|
|
|
114.769371487522,31.494688505397,0,114.769250256011,31.494810067165,0,114.769139943231,31.494908072353,0,114.768998052753,31.495064806547,0,114.768944143543,31.495136163334,0,114.768833647090,31.495301894274,0,114.768727334709,31.495480159260,0,114.768658251103,31.495642954089,0,114.768617025532,31.495851906870,0,114.768565102323,31.496026072876,0,114.768477929608,31.496204904061,0,114.768418186795,31.496271731582,0,114.768257217452,31.496431964686,0,114.768104893929,31.496583059575,0,114.767953840273,31.496734363437,0,114.767793858275,31.496905295936,0,114.767618288622,31.497040598528,0,114.767423296449,31.497156008342,0,114.767220625200,31.497226785466,0,114.767071207159,31.497239842780,0,114.766777557613,31.497229460190,0,114.766639840427,31.497217393411,0,114.766250645414,31.497184791669,0,114.766075803330,31.497169033986,0,114.765858238810,31.497161670402,0,114.765749087369,31.497149789852,0,114.765578802644,31.497228955090,0,114.765473361890,31.497294544899,0,114.765136517774,31.497558773072,0,114.764843659345,31.497784893972,0,114.764453222739,31.498073043344,0,114.764148696635,31.498412741926,0,114.763850462189,31.498749625751,0,114.763700896817,31.498874329774,0,114.763348732120,31.498506694451,0,114.763521873571,31.498402125341,0,114.763800571985,31.498256877886,0,114.764373752997,31.497957064267,0,114.764714094725,31.497706094535,0,114.765033444991,31.497468743145,0,114.765426774993,31.497161865682,0,114.765690653071,31.496975842302,0,114.766029434881,31.496834579067,0,114.766262913406,31.496828772717,0,114.766783688310,31.496990033626,0,114.766980599700,31.497020245661,0,114.767143919965,31.497006201167,0,114.767431251284,31.496922081537,0,114.767628864841,31.496820407098,0,114.767890148508,31.496638503274,0,114.767931257165,31.496598442293,0,114.768144070759,31.496377983952,0,114.768217574009,31.496257284286,0,114.768262430136,31.496190717202,0,114.768376910300,31.496001449135,0,114.768524559972,31.495721557074,0,114.768677039301,31.495461253826,0,114.768812797476,31.495225802142,0,114.768936192096,31.495080413086,0,114.769135416269,31.494852552184,0,114.769306034785,31.494680644473,0,
|
|
|
|
|
|
114.769850726393,31.494027467094,0,
|
|
|
|
|
|
114.769904636952,31.493950209203,0,114.770036207358,31.493632353975,0,114.770104976428,31.493136601721,0,114.770089906713,31.492328608179,0,114.770123677513,31.491625427048,0,114.770179987566,31.490971613182,0,114.770263171155,31.490321399529,0,114.770364052239,31.490177762773,0,114.770442598471,31.490189697791,0,114.770486130447,31.490430929600,0,114.770519247418,31.491063612725,0,114.770541664084,31.491520158671,0,114.770490997684,31.492217906682,0,114.770484948723,31.492977168883,0,114.770475938211,31.493713145916,0,114.770491921167,31.494252767879,0,114.770519663829,31.494468653205,0,114.770677345125,31.494632007683,0,114.770878676783,31.494843545512,0,114.771051170723,31.494990314721,0,114.771242948314,31.495195467693,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:09Z/2000-01-01T00:00:10Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.772051359223,31.496165916540,0,114.771939677371,31.496040631747,0,114.771691881559,31.495777267358,0,114.771474298763,31.495549804629,0,114.771327751788,31.495387873543,0,114.771034175554,31.495235978034,0,114.770753776715,31.495068554903,0,114.770661881710,31.494951466254,0,114.770521920729,31.494715636109,0,114.770322973648,31.494541940844,0,114.770159109680,31.494392694554,0,114.770033718313,31.494361831942,0,114.769801707311,31.494389980016,0,114.769641880903,31.494455001612,0,114.769413839153,31.494660505942,0,
|
|
|
|
|
|
114.769371487522,31.494688505397,0,114.769250256011,31.494810067165,0,114.769139943231,31.494908072353,0,114.768998052753,31.495064806547,0,114.768944143543,31.495136163334,0,114.768833647090,31.495301894274,0,114.768727334709,31.495480159260,0,114.768658251103,31.495642954089,0,114.768617025532,31.495851906870,0,114.768565102323,31.496026072876,0,114.768477929608,31.496204904061,0,114.768418186795,31.496271731582,0,114.768257217452,31.496431964686,0,114.768104893929,31.496583059575,0,114.767953840273,31.496734363437,0,114.767793858275,31.496905295936,0,114.767618288622,31.497040598528,0,114.767423296449,31.497156008342,0,114.767220625200,31.497226785466,0,114.767071207159,31.497239842780,0,114.766777557613,31.497229460190,0,114.766639840427,31.497217393411,0,114.766250645414,31.497184791669,0,114.766075803330,31.497169033986,0,114.765858238810,31.497161670402,0,114.765749087369,31.497149789852,0,114.765578802644,31.497228955090,0,114.765473361890,31.497294544899,0,114.765136517774,31.497558773072,0,114.764843659345,31.497784893972,0,114.764453222739,31.498073043344,0,114.764148696635,31.498412741926,0,114.763850462189,31.498749625751,0,114.763700896817,31.498874329774,0,114.763348732120,31.498506694451,0,114.763521873571,31.498402125341,0,114.763800571985,31.498256877886,0,114.764373752997,31.497957064267,0,114.764714094725,31.497706094535,0,114.765033444991,31.497468743145,0,114.765426774993,31.497161865682,0,114.765690653071,31.496975842302,0,114.766029434881,31.496834579067,0,114.766262913406,31.496828772717,0,114.766783688310,31.496990033626,0,114.766980599700,31.497020245661,0,114.767143919965,31.497006201167,0,114.767431251284,31.496922081537,0,114.767628864841,31.496820407098,0,114.767890148508,31.496638503274,0,114.767931257165,31.496598442293,0,114.768144070759,31.496377983952,0,114.768217574009,31.496257284286,0,114.768262430136,31.496190717202,0,114.768376910300,31.496001449135,0,114.768524559972,31.495721557074,0,114.768677039301,31.495461253826,0,114.768812797476,31.495225802142,0,114.768936192096,31.495080413086,0,114.769135416269,31.494852552184,0,114.769819712764,31.494055848091,0,
|
|
|
|
|
|
114.769868736273,31.493862453206,0,114.769935716443,31.493510456746,0,114.769963286073,31.493067708813,0,114.769996557578,31.492474246587,0,114.770035067434,31.491737398317,0,114.770095289599,31.491035674727,0,114.770175597263,31.490221683264,0,114.770114486301,31.489490273070,0,114.770050176367,31.488946684890,0,114.769836324518,31.488467138980,0,114.769523279901,31.488009305502,0,114.768946336664,31.487472401110,0,114.768312665562,31.487074964870,0,114.767394589941,31.486776452893,0,114.766981259049,31.486717854774,0,114.766084336555,31.486853861714,0,114.764497336221,31.487614792752,0,114.763621099308,31.488019485713,0,114.762929971703,31.488288100310,0,114.762179721549,31.488426462219,0,114.761850269059,31.488285289673,0,
|
|
|
|
|
|
114.762131782023,31.488182614346,0,114.762663764599,31.488123564679,0,114.763153450102,31.487889905665,0,114.763946639735,31.487520579585,0,114.764560661334,31.487194356729,0,114.765159071454,31.486842811133,0,114.765619151420,31.486611173687,0,114.766404940154,31.486498010908,0,114.767170014601,31.486444304628,0,114.768092631985,31.486537655652,0,114.768819547097,31.486919010945,0,114.769544090181,31.487518120751,0,114.770106422891,31.488169947215,0,114.770458878838,31.488865874237,0,114.770744040706,31.489610948518,0,114.770802207105,31.490426203404,0,114.770785091207,31.491138282977,0,114.770626520667,31.492105838764,0,114.770531922823,31.493030578688,0,114.770479603320,31.493825826134,0,114.770573796379,31.494355134151,0,114.770845944643,31.494802585443,0,114.771368574747,31.495279034286,0,114.771825684735,31.495709413855,0,114.772019084518,31.495908097205,0,114.772120316075,31.496165982772,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:10Z/2000-01-01T00:00:11Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.773228142774,31.497537688857,0,114.772852762944,31.497273106071,0,114.772490015124,31.496856737534,0,114.772173283248,31.496516891692,0,114.772056682629,31.496232361748,0,114.771774586829,31.495909847733,0,114.771429304918,31.495534812934,0,114.771300319622,31.495396333050,0,114.770703600695,31.495072968566,0,114.770476570694,31.494733671947,0,114.770157453862,31.494446620329,0,114.770030533208,31.494402628743,0,114.769819791381,31.494412074438,0,114.769662384360,31.494443233238,0,
|
|
|
|
|
|
114.769371487522,31.494688505397,0,114.769250256011,31.494810067165,0,114.769139943231,31.494908072353,0,114.768998052753,31.495064806547,0,114.768944143543,31.495136163334,0,114.768833647090,31.495301894274,0,114.768727334709,31.495480159260,0,114.768658251103,31.495642954089,0,114.768617025532,31.495851906870,0,114.768565102323,31.496026072876,0,114.768477929608,31.496204904061,0,114.768418186795,31.496271731582,0,114.768257217452,31.496431964686,0,114.768104893929,31.496583059575,0,114.767953840273,31.496734363437,0,114.767793858275,31.496905295936,0,114.767618288622,31.497040598528,0,114.767423296449,31.497156008342,0,114.767220625200,31.497226785466,0,114.767071207159,31.497239842780,0,114.766777557613,31.497229460190,0,114.766639840427,31.497217393411,0,114.766250645414,31.497184791669,0,114.766075803330,31.497169033986,0,114.765858238810,31.497161670402,0,114.765749087369,31.497149789852,0,114.765578802644,31.497228955090,0,114.765473361890,31.497294544899,0,114.765136517774,31.497558773072,0,114.764843659345,31.497784893972,0,114.764453222739,31.498073043344,0,114.764148696635,31.498412741926,0,114.763850462189,31.498749625751,0,114.763700896817,31.498874329774,0,114.763348732120,31.498506694451,0,114.763521873571,31.498402125341,0,114.763800571985,31.498256877886,0,114.764373752997,31.497957064267,0,114.764714094725,31.497706094535,0,114.765033444991,31.497468743145,0,114.765426774993,31.497161865682,0,114.765690653071,31.496975842302,0,114.766029434881,31.496834579067,0,114.766262913406,31.496828772717,0,114.766783688310,31.496990033626,0,114.766980599700,31.497020245661,0,114.767143919965,31.497006201167,0,114.767431251284,31.496922081537,0,114.767628864841,31.496820407098,0,114.767890148508,31.496638503274,0,114.767931257165,31.496598442293,0,114.768144070759,31.496377983952,0,114.768217574009,31.496257284286,0,114.768262430136,31.496190717202,0,114.768376910300,31.496001449135,0,114.768524559972,31.495721557074,0,114.768677039301,31.495461253826,0,114.768812797476,31.495225802142,0,114.768936192096,31.495080413086,0,114.769135416269,31.494852552184,0,
|
|
|
|
|
|
114.769768581984,31.494130514197,0,114.769780297567,31.493934875244,0,114.769773798269,31.493541891460,0,114.769754955677,31.493067959568,0,114.769820543079,31.492566501519,0,114.769887485147,31.492081200446,0,114.769930862485,31.491695364264,0,114.769973483806,31.490957376495,0,114.770045603985,31.490382213218,0,114.770030176310,31.490101970009,0,114.770016502865,31.489687384897,0,114.769967973705,31.489255113528,0,114.769923211422,31.488979013035,0,114.769719514786,31.488563094385,0,114.769546964659,31.488273130401,0,114.769354922061,31.488015039497,0,114.769024337931,31.487702448971,0,114.768735368302,31.487486663645,0,114.768273735878,31.487212731000,0,114.767762951773,31.486948698819,0,114.767345677187,31.486841165422,0,114.766705011846,31.486875120607,0,114.765998449666,31.486940931774,0,114.765348152926,31.487293236010,0,114.764867477540,31.487581675254,0,114.764075370005,31.487930703063,0,114.763255549294,31.488310020616,0,114.762624636898,31.488491891805,0,114.762021250748,31.488566151010,0,114.761377370877,31.488385779914,0,114.760807784154,31.488145904906,0,114.760325820053,31.487815056945,0,114.759894766903,31.487417987735,0,114.759445704627,31.486737190110,0,114.758984879711,31.485468538554,0,114.758547481408,31.484189713217,0,114.758154657126,31.483079179190,0,114.757861242367,31.481748726564,0,114.757584062495,31.480982492527,0,114.757644686151,31.480763030721,0,114.757934787487,31.481184718234,0,114.758278742070,31.482043345949,0,114.758393271932,31.482678385265,0,114.758831675317,31.483767983400,0,114.759237883236,31.484954010782,0,114.759531884306,31.485801147568,0,114.759808578183,31.486417414476,0,114.759995805691,31.486646033900,0,114.760385717221,31.487264645050,0,114.760737214008,31.487663461515,0,114.761286972173,31.487937829471,0,114.761715967556,31.488058318630,0,114.762340334280,31.488065189039,0,114.762840139011,31.487962723142,0,114.763557169616,31.487658342607,0,114.764346026870,31.487234737520,0,114.765135711435,31.486769293082,0,114.765599768272,31.486481187840,0,114.766496589514,31.486389476274,0,114.767440323412,31.486385909993,0,114.768038346262,31.486474224055,0,114.768762833345,31.486815749886,0,114.769466787158,31.487363361587,0,114.770028667925,31.488030099605,0,114.770460833837,31.488736901755,0,114.770777840824,31.489610359324,0,114.770885523904,31.490429058975,0,114.770827762233,31.491415581181,0,114.770694950612,31.492372452522,0,114.770562176663,31.493388551953,0,114.770561280904,31.493913083746,0,114.770783543700,31.494553424421,0,114.771077916520,31.495009862539,0,114.771636099392,31.495492231626,0,114.771999158512,31.495848574037,0,114.772159129652,31.496164764235,0,114.772203788905,31.496275734611,0,114.772668394613,31.496732069057,0,114.772891403797,31.497188436014,0,114.773285161940,31.497538772471,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:11Z/2000-01-01T00:00:15Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.773228142774,31.497537688857,0,114.772852762944,31.497273106071,0,114.772490015124,31.496856737534,0,114.772173283248,31.496516891692,0,114.772056682629,31.496232361748,0,114.771774586829,31.495909847733,0,114.771429304918,31.495534812934,0,114.771300319622,31.495396333050,0,114.770703600695,31.495072968566,0,114.770476570694,31.494733671947,0,114.770157453862,31.494446620329,0,114.770030533208,31.494402628743,0,114.769819791381,31.494412074438,0,114.769662384360,31.494443233238,0,
|
|
|
|
|
|
114.769371487522,31.494688505397,0,114.769250256011,31.494810067165,0,114.769139943231,31.494908072353,0,114.768998052753,31.495064806547,0,114.768944143543,31.495136163334,0,114.768833647090,31.495301894274,0,114.768727334709,31.495480159260,0,114.768658251103,31.495642954089,0,114.768617025532,31.495851906870,0,114.768565102323,31.496026072876,0,114.768477929608,31.496204904061,0,114.768418186795,31.496271731582,0,114.768257217452,31.496431964686,0,114.768104893929,31.496583059575,0,114.767953840273,31.496734363437,0,114.767793858275,31.496905295936,0,114.767618288622,31.497040598528,0,114.767423296449,31.497156008342,0,114.767220625200,31.497226785466,0,114.767071207159,31.497239842780,0,114.766777557613,31.497229460190,0,114.766639840427,31.497217393411,0,114.766250645414,31.497184791669,0,114.766075803330,31.497169033986,0,114.765858238810,31.497161670402,0,114.765749087369,31.497149789852,0,114.765578802644,31.497228955090,0,114.765473361890,31.497294544899,0,114.765136517774,31.497558773072,0,114.764843659345,31.497784893972,0,114.764453222739,31.498073043344,0,114.764148696635,31.498412741926,0,114.763850462189,31.498749625751,0,114.763700896817,31.498874329774,0,114.763348732120,31.498506694451,0,114.763521873571,31.498402125341,0,114.763800571985,31.498256877886,0,114.764373752997,31.497957064267,0,114.764714094725,31.497706094535,0,114.765033444991,31.497468743145,0,114.765426774993,31.497161865682,0,114.765690653071,31.496975842302,0,114.766029434881,31.496834579067,0,114.766262913406,31.496828772717,0,114.766783688310,31.496990033626,0,114.766980599700,31.497020245661,0,114.767143919965,31.497006201167,0,114.767431251284,31.496922081537,0,114.767628864841,31.496820407098,0,114.767890148508,31.496638503274,0,114.767931257165,31.496598442293,0,114.768144070759,31.496377983952,0,114.768217574009,31.496257284286,0,114.768262430136,31.496190717202,0,114.768376910300,31.496001449135,0,114.768524559972,31.495721557074,0,114.768677039301,31.495461253826,0,114.768812797476,31.495225802142,0,114.768936192096,31.495080413086,0,114.769135416269,31.494852552184,0,
|
|
|
|
|
|
114.769768581984,31.494130514197,0,114.769780297567,31.493934875244,0,114.769773798269,31.493541891460,0,114.769754955677,31.493067959568,0,114.769820543079,31.492566501519,0,114.769887485147,31.492081200446,0,114.769930862485,31.491695364264,0,114.769973483806,31.490957376495,0,114.770045603985,31.490382213218,0,114.770030176310,31.490101970009,0,114.770016502865,31.489687384897,0,114.769967973705,31.489255113528,0,114.769923211422,31.488979013035,0,114.769719514786,31.488563094385,0,114.769546964659,31.488273130401,0,114.769354922061,31.488015039497,0,114.769024337931,31.487702448971,0,114.768735368302,31.487486663645,0,114.768273735878,31.487212731000,0,114.767762951773,31.486948698819,0,114.767345677187,31.486841165422,0,114.766705011846,31.486875120607,0,114.765998449666,31.486940931774,0,114.765348152926,31.487293236010,0,114.764867477540,31.487581675254,0,114.764075370005,31.487930703063,0,114.763255549294,31.488310020616,0,114.762624636898,31.488491891805,0,114.762021250748,31.488566151010,0,114.761377370877,31.488385779914,0,114.760807784154,31.488145904906,0,
|
|
|
|
|
|
114.760695606225,31.488065332207,0,114.760274406904,31.487754478935,0,114.759867158124,31.487377593267,0,114.759593264245,31.487107300335,0,114.759350966769,31.486758348408,0,114.759193996845,31.486430346118,0,114.759040180333,31.486014776723,0,114.758878838854,31.485583680861,0,114.758715090979,31.485151992925,0,114.758542841902,31.484683993463,0,114.758378445859,31.484265312961,0,114.758220100205,31.483867128907,0,114.758045812150,31.483347613236,0,114.757861537481,31.482904623788,0,114.757674044250,31.482386998333,0,114.757404232534,31.481724168173,0,114.757088477716,31.481050179910,0,114.756887642790,31.480669821951,0,114.756616439953,31.480159580377,0,114.756314851438,31.479615044696,0,114.756042929898,31.479175727014,0,114.755669726786,31.478718736572,0,114.755381282367,31.478365456312,0,114.754802576096,31.477990688914,0,114.754246357217,31.477613690232,0,114.753631357283,31.477240546668,0,114.752991370595,31.476952039651,0,114.752226295682,31.476685967096,0,114.751378597801,31.476545820534,0,114.750415724544,31.476409022312,0,114.749550847181,31.476325779964,0,114.748942521142,31.476210876567,0,114.748374297530,31.475935180947,0,114.748071229548,31.475734521710,0,114.747827084220,31.475368862838,0,114.747605506770,31.474981823972,0,114.747330222398,31.474455238266,0,114.747052814310,31.473927726611,0,114.746864035654,31.473685488766,0,114.747492344516,31.473670076149,0,114.747844990640,31.474212666981,0,114.748099084560,31.474732744098,0,114.748535576861,31.475315428256,0,114.749004742163,31.475676346834,0,114.749431224614,31.475938834942,0,114.750037401868,31.476059616317,0,114.750717688328,31.476039658299,0,114.751350526229,31.476018295316,0,114.751803053326,31.475936652337,0,114.752317880333,31.476013774137,0,114.752887562199,31.476164979387,0,114.753420355243,31.476359386255,0,114.754003132082,31.476645266081,0,114.754542751836,31.476900313535,0,114.755063082517,31.477222253666,0,114.755464158860,31.477598628942,0,114.755846660936,31.477886572214,0,114.756147021680,31.478201148526,0,114.756558158497,31.478543669754,0,114.756996196107,31.478960828985,0,114.757333793955,31.479359042200,0,114.757572714058,31.479811192997,0,114.757800322052,31.480500152967,0,114.757987547819,31.480946262026,0,114.758207745885,31.481466671930,0,114.758386737786,31.482051699275,0,114.758509763330,31.482480848789,0,114.758681623774,31.482978055268,0,114.758851678302,31.483474689890,0,114.759030088711,31.484004630680,0,114.759204334659,31.484536789749,0,114.759419405939,31.485131381953,0,114.759656079705,31.485695622572,0,114.759853796436,31.486244466803,0,114.760087858916,31.486708629188,0,114.760243713504,31.487054172243,0,114.760560850914,31.487484198170,0,114.760743843298,31.487641547350,0,114.761185716778,31.487893990249,0,114.761638364875,31.488000419310,0,
|
|
|
|
|
|
114.762840139011,31.487962723142,0,114.763557169616,31.487658342607,0,114.764346026870,31.487234737520,0,114.765135711435,31.486769293082,0,114.765599768272,31.486481187840,0,114.766496589514,31.486389476274,0,114.767440323412,31.486385909993,0,114.768038346262,31.486474224055,0,114.768762833345,31.486815749886,0,114.769466787158,31.487363361587,0,114.770028667925,31.488030099605,0,114.770460833837,31.488736901755,0,114.770777840824,31.489610359324,0,114.770885523904,31.490429058975,0,114.770827762233,31.491415581181,0,114.770694950612,31.492372452522,0,114.770562176663,31.493388551953,0,114.770561280904,31.493913083746,0,114.770783543700,31.494553424421,0,114.771077916520,31.495009862539,0,114.771636099392,31.495492231626,0,114.771999158512,31.495848574037,0,114.772159129652,31.496164764235,0,114.772203788905,31.496275734611,0,114.772668394613,31.496732069057,0,114.772891403797,31.497188436014,0,114.773285161940,31.497538772471,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
material: {
|
|
|
|
|
|
solidColor: {
|
|
|
|
|
|
color: [
|
|
|
|
|
|
{
|
|
|
|
|
|
rgba: [250, 84 ,28, 185],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
id: "blueRiverLeft",
|
|
|
|
|
|
name: "blueRiverLeftName",
|
|
|
|
|
|
availability: "2000-01-01T00:00:00Z/2000-01-01T00:00:20Z",
|
|
|
|
|
|
polygon: {
|
|
|
|
|
|
positions: [
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:00Z/2000-01-01T00:00:01Z",
|
|
|
|
|
|
cartographicDegrees: [114.764343609558,31.497970879112,0,114.763523104586,31.498389593209,0,114.763320509135,31.498504083568,0,114.763696563861,31.498901437277,0,114.763847652486,31.498768261710,0,114.764456795692,31.498083670026,0],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:01Z/2000-01-01T00:00:02Z",
|
|
|
|
|
|
cartographicDegrees: [114.765300941005,31.497253234353,0,114.764704640241,31.497705996156,0,114.764343609558,31.497970879112,0,114.763523104586,31.498389593209,0,114.763320509135,31.498504083568,0,114.763696563861,31.498901437277,0,114.763847652486,31.498768261710,0,114.764456795692,31.498083670026,0,114.764811799805,31.497819418592,0,114.765088118109,31.497612620664,0,114.765426420234,31.497340041037,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:02Z/2000-01-01T00:00:03Z",
|
|
|
|
|
|
cartographicDegrees: [114.766968285019,31.497002153879,0,114.766743127459,31.496956751422,0,114.766505169942,31.496885276054,0,114.766262864961,31.496808755998,0,114.765991606096,31.496807502277,0,114.765691848227,31.496945644425,0,114.765457241294,31.497111707597,0,114.765300941005,31.497253234353,0,114.764704640241,31.497705996156,0,114.764343609558,31.497970879112,0,114.763523104586,31.498389593209,0,114.763320509135,31.498504083568,0,114.763696563861,31.498901437277,0,114.763847652486,31.498768261710,0,114.764456795692,31.498083670026,0,114.764811799805,31.497819418592,0,114.765088118109,31.497612620664,0,114.765426420234,31.497340041037,0,114.765604898922,31.497230413223,0,114.765737719524,31.497170522450,0,114.765859330437,31.497169985144,0,114.766155357845,31.497196601877,0,114.766613343506,31.497262377062,0,114.766969074326,31.497276485648,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:03Z/2000-01-01T00:00:04Z",
|
|
|
|
|
|
cartographicDegrees: [114.768030327634,31.496468271835,0,114.767876829604,31.496629108081,0,114.767605455206,31.496800727336,0,114.767392446891,31.496908116352,0,114.767162213510,31.496979933169,0,114.766968285019,31.497002153879,0,114.766743127459,31.496956751422,0,114.766505169942,31.496885276054,0,114.766262864961,31.496808755998,0,114.765991606096,31.496807502277,0,114.765691848227,31.496945644425,0,114.765457241294,31.497111707597,0,114.765300941005,31.497253234353,0,114.764704640241,31.497705996156,0,114.764343609558,31.497970879112,0,114.763523104586,31.498389593209,0,114.763320509135,31.498504083568,0,114.763696563861,31.498901437277,0,114.763847652486,31.498768261710,0,114.764456795692,31.498083670026,0,114.764811799805,31.497819418592,0,114.765088118109,31.497612620664,0,114.765426420234,31.497340041037,0,114.765604898922,31.497230413223,0,114.765737719524,31.497170522450,0,114.765859330437,31.497169985144,0,114.766155357845,31.497196601877,0,114.766613343506,31.497262377062,0,114.766969074326,31.497276485648,0,114.767171936264,31.497274524930,0,114.767390228694,31.497208113820,0,114.767589903460,31.497098322368,0,114.767794509919,31.496939557089,0,114.767968342919,31.496747582608,0,114.768187438743,31.496530324662,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:04Z/2000-01-01T00:00:05Z",
|
|
|
|
|
|
cartographicDegrees: [114.768718437214,31.495333547632,0,114.768534878508,31.495652979641,0,114.768389266219,31.495910708036,0,114.768230060041,31.496189296008,0,114.768125047164,31.496355711463,0,114.768030327634,31.496468271835,0,114.767876829604,31.496629108081,0,114.767605455206,31.496800727336,0,114.767392446891,31.496908116352,0,114.767162213510,31.496979933169,0,114.766968285019,31.497002153879,0,114.766743127459,31.496956751422,0,114.766505169942,31.496885276054,0,114.766262864961,31.496808755998,0,114.765991606096,31.496807502277,0,114.765691848227,31.496945644425,0,114.765457241294,31.497111707597,0,114.765300941005,31.497253234353,0,114.764704640241,31.497705996156,0,114.764343609558,31.497970879112,0,114.763523104586,31.498389593209,0,114.763320509135,31.498504083568,0,114.763696563861,31.498901437277,0,114.763847652486,31.498768261710,0,114.764456795692,31.498083670026,0,114.764811799805,31.497819418592,0,114.765088118109,31.497612620664,0,114.765426420234,31.497340041037,0,114.765604898922,31.497230413223,0,114.765737719524,31.497170522450,0,114.765859330437,31.497169985144,0,114.766155357845,31.497196601877,0,114.766613343506,31.497262377062,0,114.766969074326,31.497276485648,0,114.767171936264,31.497274524930,0,114.767390228694,31.497208113820,0,114.767589903460,31.497098322368,0,114.767794509919,31.496939557089,0,114.767968342919,31.496747582608,0,114.768187438743,31.496530324662,0,114.768267417015,31.496451070348,0,114.768396942420,31.496329801911,0,114.768505207694,31.496224506522,0,114.768571231379,31.496064854954,0,114.768639459185,31.495889370575,0,114.768673167961,31.495682298621,0,114.768744220516,31.495492559041,0,114.768840772537,31.495338825801,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:05Z/2000-01-01T00:00:06Z",
|
|
|
|
|
|
cartographicDegrees: [114.769367014494,31.494526308011,0,114.769158677371,31.494794976068,0,114.768855129154,31.495136620653,0,114.768755786397,31.495264204448,0,114.768718437214,31.495333547632,0,114.768534878508,31.495652979641,0,114.768389266219,31.495910708036,0,114.768230060041,31.496189296008,0,114.768125047164,31.496355711463,0,114.768030327634,31.496468271835,0,114.767876829604,31.496629108081,0,114.767605455206,31.496800727336,0,114.767392446891,31.496908116352,0,114.767162213510,31.496979933169,0,114.766968285019,31.497002153879,0,114.766743127459,31.496956751422,0,114.766505169942,31.496885276054,0,114.766262864961,31.496808755998,0,114.765991606096,31.496807502277,0,114.765691848227,31.496945644425,0,114.765457241294,31.497111707597,0,114.765300941005,31.497253234353,0,114.764704640241,31.497705996156,0,114.764343609558,31.497970879112,0,114.763523104586,31.498389593209,0,114.763320509135,31.498504083568,0,114.763696563861,31.498901437277,0,114.763847652486,31.498768261710,0,114.764456795692,31.498083670026,0,114.764811799805,31.497819418592,0,114.765088118109,31.497612620664,0,114.765426420234,31.497340041037,0,114.765604898922,31.497230413223,0,114.765737719524,31.497170522450,0,114.765859330437,31.497169985144,0,114.766155357845,31.497196601877,0,114.766613343506,31.497262377062,0,114.766969074326,31.497276485648,0,114.767171936264,31.497274524930,0,114.767390228694,31.497208113820,0,114.767589903460,31.497098322368,0,114.767794509919,31.496939557089,0,114.767968342919,31.496747582608,0,114.768187438743,31.496530324662,0,114.768267417015,31.496451070348,0,114.768396942420,31.496329801911,0,114.768505207694,31.496224506522,0,114.768571231379,31.496064854954,0,114.768639459185,31.495889370575,0,114.768673167961,31.495682298621,0,114.768744220516,31.495492559041,0,114.768840772537,31.495338825801,0,114.768889820061,31.495259179104,0,114.768969710318,31.495126840215,0,114.769105378548,31.494972992749,0,114.769294180228,31.494811088845,0,114.769458551759,31.494648735858,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:06Z/2000-01-01T00:00:07Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
// 114.769901372697,31.493814460244,0,
|
|
|
|
|
|
114.769731492444,31.494096530802,0,114.769519192505,31.494336728045,0,114.769367014494,31.494526308011,0,114.769158677371,31.494794976068,0,114.768855129154,31.495136620653,0,114.768755786397,31.495264204448,0,114.768718437214,31.495333547632,0,114.768534878508,31.495652979641,0,114.768389266219,31.495910708036,0,114.768230060041,31.496189296008,0,114.768125047164,31.496355711463,0,114.768030327634,31.496468271835,0,114.767876829604,31.496629108081,0,114.767605455206,31.496800727336,0,114.767392446891,31.496908116352,0,114.767162213510,31.496979933169,0,114.766968285019,31.497002153879,0,114.766743127459,31.496956751422,0,114.766505169942,31.496885276054,0,114.766262864961,31.496808755998,0,114.765991606096,31.496807502277,0,114.765691848227,31.496945644425,0,114.765457241294,31.497111707597,0,114.765300941005,31.497253234353,0,114.764704640241,31.497705996156,0,114.764343609558,31.497970879112,0,114.763523104586,31.498389593209,0,114.763320509135,31.498504083568,0,114.763696563861,31.498901437277,0,114.763847652486,31.498768261710,0,114.764456795692,31.498083670026,0,114.764811799805,31.497819418592,0,114.765088118109,31.497612620664,0,114.765426420234,31.497340041037,0,114.765604898922,31.497230413223,0,114.765737719524,31.497170522450,0,114.765859330437,31.497169985144,0,114.766155357845,31.497196601877,0,114.766613343506,31.497262377062,0,114.766969074326,31.497276485648,0,114.767171936264,31.497274524930,0,114.767390228694,31.497208113820,0,114.767589903460,31.497098322368,0,114.767794509919,31.496939557089,0,114.767968342919,31.496747582608,0,114.768187438743,31.496530324662,0,114.768267417015,31.496451070348,0,114.768396942420,31.496329801911,0,114.768505207694,31.496224506522,0,114.768571231379,31.496064854954,0,114.768639459185,31.495889370575,0,114.768673167961,31.495682298621,0,114.768744220516,31.495492559041,0,114.768840772537,31.495338825801,0,114.768889820061,31.495259179104,0,114.768969710318,31.495126840215,0,114.769105378548,31.494972992749,0,114.769294180228,31.494811088845,0,114.769458551759,31.494648735858,0,114.769699112937,31.494465534460,0,114.769905606973,31.494453660476,0,
|
|
|
|
|
|
// 114.770009689093,31.494461785233,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
// holes: [
|
|
|
|
|
|
// // {
|
|
|
|
|
|
// // interval: "2000-01-01T00:00:00Z/2000-01-01T00:00:01Z",
|
|
|
|
|
|
// // cartographicDegrees: [[114.764089105775,31.498198829139,0,114.763397954013,31.498580765881,0,114.763606588175,31.498796903870,0,114.764185743973,31.498256058798,0,]],
|
|
|
|
|
|
// // },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:01Z/2000-01-01T00:00:02Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.764933853619,31.497600262145,0,114.764679757552,31.497743773777,0,114.764374643196,31.497960612437,0,114.764174521106,31.498068422656,0,114.763674863624,31.498321461295,0,114.763334501145,31.498508227326,0,114.763689179061,31.498870456130,0,114.763855028023,31.498725929628,0,114.764129876847,31.498421359723,0,114.764381020872,31.498135728389,0,114.764480756923,31.498043809160,0,114.764712136663,31.497865677726,0,114.764919781825,31.497695614524,0,114.764957627013,31.497648508205,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:02Z/2000-01-01T00:00:03Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.766107460300,31.496990796185,0,114.765786912100,31.496958146946,0,114.765462605421,31.497140570408,0,114.765272005640,31.497290416128,0,114.764917748048,31.497557263923,0,114.764572132064,31.497810818959,0,114.764365337645,31.497958087120,0,114.764347981132,31.497972791246,0,114.764319365058,31.497990483859,0,114.764085056189,31.498107873164,0,114.763816924512,31.498241815155,0,114.763333477851,31.498503131946,0,114.763696143313,31.498885680264,0,114.763855867736,31.498750457411,0,114.764162570729,31.498408285490,0,114.764322486986,31.498227873070,0,114.764458475568,31.498075024844,0,114.764725368887,31.497875719476,0,114.764924103766,31.497725212546,0,114.765189092786,31.497520110610,0,114.765415684940,31.497335764235,0,114.765604125090,31.497223572947,0,114.765733656985,31.497153843485,0,114.766001126439,31.497096262394,0,114.766285805869,31.497084860726,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:03Z/2000-01-01T00:00:04Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.767759449278,31.496799304976,0,114.767466421337,31.496965850575,0,114.767126993945,31.497052328215,0,114.766906943240,31.497062177156,0,114.766660571151,31.497002984225,0,114.766328649204,31.496889547627,0,114.766095376363,31.496839607939,0,114.765994830954,31.496844299788,0,114.765713986663,31.496963724463,0,114.765444489511,31.497134334438,0,114.765287324353,31.497267466340,0,114.764963556368,31.497512749359,0,114.764677819182,31.497728950604,0,114.764472573311,31.497878701158,0,114.764369848715,31.497953685356,0,114.764347429463,31.497972970713,0,114.764049907106,31.498125119951,0,114.763516746020,31.498395694030,0,114.763336628632,31.498505811142,0,114.763702103330,31.498886219964,0,114.763852102481,31.498755857824,0,114.764450478442,31.498083882896,0,114.764637797713,31.497944160202,0,114.764986440386,31.497685675884,0,114.765178038170,31.497534761637,0,114.765384263521,31.497368234824,0,114.765433681537,31.497331877625,0,114.765602559324,31.497227169852,0,114.765744821849,31.497163354557,0,114.766005364930,31.497155724716,0,114.766389447026,31.497190590317,0,114.766694261002,31.497221224259,0,114.767158772785,31.497213599004,0,114.767441340754,31.497128444948,0,114.767682080035,31.496985357429,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:04Z/2000-01-01T00:00:05Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.768454124108,31.495874436846,0,114.768253762433,31.496184255033,0,114.768091226123,31.496431926266,0,114.767948194064,31.496581937151,0,114.767874890052,31.496649824375,0,114.767623003736,31.496805221952,0,114.767423211058,31.496909488682,0,114.767141920665,31.496996537282,0,114.766980065381,31.497014831617,0,114.766771385502,31.496977625383,0,114.766358478778,31.496850972754,0,114.766256619428,31.496820175478,0,114.766014314713,31.496820827377,0,114.765867123312,31.496877193953,0,114.765690029719,31.496957871202,0,114.765444489511,31.497134334438,0,114.765287324353,31.497267466340,0,114.764963556368,31.497512749359,0,114.764472573311,31.497878701158,0,114.764346859232,31.497970047521,0,114.763516746020,31.498395694030,0,114.763336628632,31.498505811142,0,114.763702103330,31.498886219964,0,114.763852102481,31.498755857824,0,114.764450478442,31.498083882896,0,114.764637797713,31.497944160202,0,114.764986440386,31.497685675884,0,114.765178038170,31.497534761637,0,114.765384263521,31.497368234824,0,114.765483226029,31.497293187846,0,114.765610393751,31.497219209924,0,114.765742927467,31.497157317578,0,114.765808813377,31.497167387390,0,114.766023483778,31.497174942626,0,114.766334565206,31.497208077090,0,114.766622524326,31.497239998291,0,114.767025968606,31.497254852248,0,114.767184883067,31.497251763817,0,114.767409257576,31.497178442170,0,114.767579943979,31.497086008985,0,114.767714432192,31.496987296134,0,114.767793862094,31.496922622162,0,114.767939233491,31.496742967932,0,114.768106929202,31.496567110477,0,114.768295010849,31.496379061067,0,114.768425512003,31.496250653585,0,114.768478391702,31.496181727404,0,114.768545019688,31.496010681624,0,114.768563070388,31.495898204823,0,114.768604185775,31.495764062694,0,114.768634545976,31.495644255959,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:05Z/2000-01-01T00:00:06Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.769056378855,31.494951099426,0,114.768810940681,31.495223271313,0,114.768640339115,31.495503803999,0,114.768445106610,31.495847746949,0,114.768238633669,31.496190781811,0,114.768132711420,31.496357552171,0,114.768003951205,31.496504987686,0,114.767884223549,31.496629633216,0,114.767623003736,31.496805221952,0,114.767423211058,31.496909488682,0,114.767141920665,31.496996537282,0,114.766980065381,31.497014831617,0,114.766771385502,31.496977625383,0,114.766358478778,31.496850972754,0,114.766256619428,31.496820175478,0,114.766014314713,31.496820827377,0,114.765867123312,31.496877193953,0,114.765690029719,31.496957871202,0,114.765444489511,31.497134334438,0,114.765287324353,31.497267466340,0,114.764963556368,31.497512749359,0,114.764472573311,31.497878701158,0,114.764346859232,31.497970047521,0,114.763516746020,31.498395694030,0,114.763336628632,31.498505811142,0,114.763702103330,31.498886219964,0,114.763852102481,31.498755857824,0,114.764450478442,31.498083882896,0,114.764637797713,31.497944160202,0,114.764986440386,31.497685675884,0,114.765178038170,31.497534761637,0,114.765384263521,31.497368234824,0,114.765483226029,31.497293187846,0,114.765610393751,31.497219209924,0,114.765742927467,31.497157317578,0,114.765808813377,31.497167387390,0,114.766023483778,31.497174942626,0,114.766334565206,31.497208077090,0,114.766622524326,31.497239998291,0,114.767025968606,31.497254852248,0,114.767184883067,31.497251763817,0,114.767409257576,31.497178442170,0,114.767579943979,31.497086008985,0,114.767714432192,31.496987296134,0,114.767793862094,31.496922622162,0,114.767951461712,31.496752186709,0,114.768142885040,31.496562634569,0,114.768361977728,31.496348285231,0,114.768498794424,31.496209829141,0,114.768580725925,31.495995278810,0,114.768635622123,31.495779563641,0,114.768669973313,31.495660359098,0,114.768728408299,31.495510454126,0,114.768751552797,31.495462687440,0,114.768868910743,31.495260937369,0,114.768929440329,31.495158489231,0,114.769007148728,31.495048163611,0,114.769046112965,31.494983056751,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:06Z/2000-01-01T00:00:07Z",
|
|
|
|
|
|
// cartographicDegrees: [[
|
|
|
|
|
|
// 114.769562499453,31.494370505566,0,114.769245018797,31.494712604420,0,114.769016844789,31.494971684424,0,114.768800422909,31.495224726512,0,114.768705542039,31.495385607825,0,114.768543319774,31.495659232866,0,114.768356167693,31.495996055037,0,114.768215248759,31.496228302150,0,114.768129608836,31.496364104072,0,114.768041480235,31.496468106004,0,
|
|
|
|
|
|
// 114.768003951205,31.496504987686,0,114.767884223549,31.496629633216,0,114.767623003736,31.496805221952,0,114.767423211058,31.496909488682,0,114.767141920665,31.496996537282,0,114.766980065381,31.497014831617,0,114.766771385502,31.496977625383,0,114.766358478778,31.496850972754,0,114.766256619428,31.496820175478,0,114.766014314713,31.496820827377,0,114.765867123312,31.496877193953,0,114.765690029719,31.496957871202,0,114.765444489511,31.497134334438,0,114.765287324353,31.497267466340,0,114.764963556368,31.497512749359,0,114.764472573311,31.497878701158,0,114.764346859232,31.497970047521,0,114.763516746020,31.498395694030,0,114.763336628632,31.498505811142,0,114.763702103330,31.498886219964,0,114.763852102481,31.498755857824,0,114.764450478442,31.498083882896,0,114.764637797713,31.497944160202,0,114.764986440386,31.497685675884,0,114.765178038170,31.497534761637,0,114.765384263521,31.497368234824,0,114.765483226029,31.497293187846,0,114.765610393751,31.497219209924,0,114.765742927467,31.497157317578,0,114.765808813377,31.497167387390,0,114.766023483778,31.497174942626,0,114.766334565206,31.497208077090,0,114.766622524326,31.497239998291,0,114.767025968606,31.497254852248,0,114.767184883067,31.497251763817,0,114.767409257576,31.497178442170,0,114.767579943979,31.497086008985,0,114.767714432192,31.496987296134,0,114.767793862094,31.496922622162,0,114.767951461712,31.496752186709,0,114.768142885040,31.496562634569,0,114.768361977728,31.496348285231,0,
|
|
|
|
|
|
// 114.768440187191,31.496272989468,0,114.768501416066,31.496212968382,0,114.768578227328,31.496029679091,0,114.768633059787,31.495873500982,0,114.768665855622,31.495666636403,0,114.768731820858,31.495502097094,0,114.768796770433,31.495388214977,0,114.768888011670,31.495240909231,0,114.768964872072,31.495120310991,0,114.769074997575,31.494996677761,0,114.769134862255,31.494935364613,0,114.769264553519,31.494823261481,0,114.769383328601,31.494706875275,0,114.769480493274,31.494596309941,0,114.769585666783,31.494488251423,0,
|
|
|
|
|
|
// ]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// ],
|
|
|
|
|
|
material: {
|
|
|
|
|
|
solidColor: {
|
|
|
|
|
|
color: [
|
|
|
|
|
|
{
|
|
|
|
|
|
rgba: [85, 119, 243, 125],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: "yellowRiverLeft",
|
|
|
|
|
|
name: "yellowRiverLeftName",
|
|
|
|
|
|
availability: "2000-01-01T00:00:00Z/2000-01-01T00:00:20Z",
|
|
|
|
|
|
polygon: {
|
|
|
|
|
|
positions: [
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:00Z/2000-01-01T00:00:01Z",
|
|
|
|
|
|
// cartographicDegrees: [114.764089105775,31.498198829139,0,114.763397954013,31.498580765881,0,114.763606588175,31.498796903870,0,114.764185743973,31.498256058798,0,],
|
|
|
|
|
|
// },
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:01Z/2000-01-01T00:00:02Z",
|
|
|
|
|
|
cartographicDegrees: [114.764933853619,31.497600262145,0,114.764679757552,31.497743773777,0,114.764374643196,31.497960612437,0,114.764174521106,31.498068422656,0,114.763674863624,31.498321461295,0,114.763334501145,31.498508227326,0,114.763689179061,31.498870456130,0,114.763855028023,31.498725929628,0,114.764129876847,31.498421359723,0,114.764381020872,31.498135728389,0,114.764480756923,31.498043809160,0,114.764712136663,31.497865677726,0,114.764919781825,31.497695614524,0,114.764957627013,31.497648508205,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:02Z/2000-01-01T00:00:03Z",
|
|
|
|
|
|
cartographicDegrees: [114.766107460300,31.496990796185,0,114.765786912100,31.496958146946,0,114.765462605421,31.497140570408,0,114.765272005640,31.497290416128,0,114.764917748048,31.497557263923,0,114.764572132064,31.497810818959,0,114.764365337645,31.497958087120,0,114.764347981132,31.497972791246,0,114.764319365058,31.497990483859,0,114.764085056189,31.498107873164,0,114.763816924512,31.498241815155,0,114.763333477851,31.498503131946,0,114.763696143313,31.498885680264,0,114.763855867736,31.498750457411,0,114.764162570729,31.498408285490,0,114.764322486986,31.498227873070,0,114.764458475568,31.498075024844,0,114.764725368887,31.497875719476,0,114.764924103766,31.497725212546,0,114.765189092786,31.497520110610,0,114.765415684940,31.497335764235,0,114.765604125090,31.497223572947,0,114.765733656985,31.497153843485,0,114.766001126439,31.497096262394,0,114.766285805869,31.497084860726,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:03Z/2000-01-01T00:00:04Z",
|
|
|
|
|
|
cartographicDegrees: [114.767759449278,31.496799304976,0,114.767466421337,31.496965850575,0,114.767126993945,31.497052328215,0,114.766906943240,31.497062177156,0,114.766660571151,31.497002984225,0,114.766328649204,31.496889547627,0,114.766095376363,31.496839607939,0,114.765994830954,31.496844299788,0,114.765713986663,31.496963724463,0,114.765444489511,31.497134334438,0,114.765287324353,31.497267466340,0,114.764963556368,31.497512749359,0,114.764677819182,31.497728950604,0,114.764472573311,31.497878701158,0,114.764369848715,31.497953685356,0,114.764347429463,31.497972970713,0,114.764049907106,31.498125119951,0,114.763516746020,31.498395694030,0,114.763336628632,31.498505811142,0,114.763702103330,31.498886219964,0,114.763852102481,31.498755857824,0,114.764450478442,31.498083882896,0,114.764637797713,31.497944160202,0,114.764986440386,31.497685675884,0,114.765178038170,31.497534761637,0,114.765384263521,31.497368234824,0,114.765433681537,31.497331877625,0,114.765602559324,31.497227169852,0,114.765744821849,31.497163354557,0,114.766005364930,31.497155724716,0,114.766389447026,31.497190590317,0,114.766694261002,31.497221224259,0,114.767158772785,31.497213599004,0,114.767441340754,31.497128444948,0,114.767682080035,31.496985357429,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:04Z/2000-01-01T00:00:05Z",
|
|
|
|
|
|
cartographicDegrees: [114.768454124108,31.495874436846,0,114.768253762433,31.496184255033,0,114.768091226123,31.496431926266,0,114.767948194064,31.496581937151,0,114.767874890052,31.496649824375,0,114.767623003736,31.496805221952,0,114.767423211058,31.496909488682,0,114.767141920665,31.496996537282,0,114.766980065381,31.497014831617,0,114.766771385502,31.496977625383,0,114.766358478778,31.496850972754,0,114.766256619428,31.496820175478,0,114.766014314713,31.496820827377,0,114.765867123312,31.496877193953,0,114.765690029719,31.496957871202,0,114.765444489511,31.497134334438,0,114.765287324353,31.497267466340,0,114.764963556368,31.497512749359,0,114.764472573311,31.497878701158,0,114.764346859232,31.497970047521,0,114.763516746020,31.498395694030,0,114.763336628632,31.498505811142,0,114.763702103330,31.498886219964,0,114.763852102481,31.498755857824,0,114.764450478442,31.498083882896,0,114.764637797713,31.497944160202,0,114.764986440386,31.497685675884,0,114.765178038170,31.497534761637,0,114.765384263521,31.497368234824,0,114.765483226029,31.497293187846,0,114.765610393751,31.497219209924,0,114.765742927467,31.497157317578,0,114.765808813377,31.497167387390,0,114.766023483778,31.497174942626,0,114.766334565206,31.497208077090,0,114.766622524326,31.497239998291,0,114.767025968606,31.497254852248,0,114.767184883067,31.497251763817,0,114.767409257576,31.497178442170,0,114.767579943979,31.497086008985,0,114.767714432192,31.496987296134,0,114.767793862094,31.496922622162,0,114.767939233491,31.496742967932,0,114.768106929202,31.496567110477,0,114.768295010849,31.496379061067,0,114.768425512003,31.496250653585,0,114.768478391702,31.496181727404,0,114.768545019688,31.496010681624,0,114.768563070388,31.495898204823,0,114.768604185775,31.495764062694,0,114.768634545976,31.495644255959,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:05Z/2000-01-01T00:00:06Z",
|
|
|
|
|
|
cartographicDegrees: [114.769056378855,31.494951099426,0,114.768810940681,31.495223271313,0,114.768640339115,31.495503803999,0,114.768445106610,31.495847746949,0,114.768238633669,31.496190781811,0,114.768132711420,31.496357552171,0,114.768003951205,31.496504987686,0,114.767884223549,31.496629633216,0,114.767623003736,31.496805221952,0,114.767423211058,31.496909488682,0,114.767141920665,31.496996537282,0,114.766980065381,31.497014831617,0,114.766771385502,31.496977625383,0,114.766358478778,31.496850972754,0,114.766256619428,31.496820175478,0,114.766014314713,31.496820827377,0,114.765867123312,31.496877193953,0,114.765690029719,31.496957871202,0,114.765444489511,31.497134334438,0,114.765287324353,31.497267466340,0,114.764963556368,31.497512749359,0,114.764472573311,31.497878701158,0,114.764346859232,31.497970047521,0,114.763516746020,31.498395694030,0,114.763336628632,31.498505811142,0,114.763702103330,31.498886219964,0,114.763852102481,31.498755857824,0,114.764450478442,31.498083882896,0,114.764637797713,31.497944160202,0,114.764986440386,31.497685675884,0,114.765178038170,31.497534761637,0,114.765384263521,31.497368234824,0,114.765483226029,31.497293187846,0,114.765610393751,31.497219209924,0,114.765742927467,31.497157317578,0,114.765808813377,31.497167387390,0,114.766023483778,31.497174942626,0,114.766334565206,31.497208077090,0,114.766622524326,31.497239998291,0,114.767025968606,31.497254852248,0,114.767184883067,31.497251763817,0,114.767409257576,31.497178442170,0,114.767579943979,31.497086008985,0,114.767714432192,31.496987296134,0,114.767793862094,31.496922622162,0,114.767951461712,31.496752186709,0,114.768142885040,31.496562634569,0,114.768361977728,31.496348285231,0,114.768498794424,31.496209829141,0,114.768580725925,31.495995278810,0,114.768635622123,31.495779563641,0,114.768669973313,31.495660359098,0,114.768728408299,31.495510454126,0,114.768751552797,31.495462687440,0,114.768868910743,31.495260937369,0,114.768929440329,31.495158489231,0,114.769007148728,31.495048163611,0,114.769046112965,31.494983056751,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:06Z/2000-01-01T00:00:07Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.769631256010,31.494282209772,0,114.769562499453,31.494370505566,0,114.769245018797,31.494712604420,0,114.769016844789,31.494971684424,0,114.768800422909,31.495224726512,0,114.768705542039,31.495385607825,0,114.768543319774,31.495659232866,0,114.768356167693,31.495996055037,0,114.768215248759,31.496228302150,0,114.768129608836,31.496364104072,0,114.768041480235,31.496468106004,0,
|
|
|
|
|
|
114.768003951205,31.496504987686,0,114.767884223549,31.496629633216,0,114.767623003736,31.496805221952,0,114.767423211058,31.496909488682,0,114.767141920665,31.496996537282,0,114.766980065381,31.497014831617,0,114.766771385502,31.496977625383,0,114.766358478778,31.496850972754,0,114.766256619428,31.496820175478,0,114.766014314713,31.496820827377,0,114.765867123312,31.496877193953,0,114.765690029719,31.496957871202,0,114.765444489511,31.497134334438,0,114.765287324353,31.497267466340,0,114.764963556368,31.497512749359,0,114.764472573311,31.497878701158,0,114.764346859232,31.497970047521,0,114.763516746020,31.498395694030,0,114.763336628632,31.498505811142,0,114.763702103330,31.498886219964,0,114.763852102481,31.498755857824,0,114.764450478442,31.498083882896,0,114.764637797713,31.497944160202,0,114.764986440386,31.497685675884,0,114.765178038170,31.497534761637,0,114.765384263521,31.497368234824,0,114.765483226029,31.497293187846,0,114.765610393751,31.497219209924,0,114.765742927467,31.497157317578,0,114.765808813377,31.497167387390,0,114.766023483778,31.497174942626,0,114.766334565206,31.497208077090,0,114.766622524326,31.497239998291,0,114.767025968606,31.497254852248,0,114.767184883067,31.497251763817,0,114.767409257576,31.497178442170,0,114.767579943979,31.497086008985,0,114.767714432192,31.496987296134,0,114.767793862094,31.496922622162,0,114.767951461712,31.496752186709,0,114.768142885040,31.496562634569,0,114.768361977728,31.496348285231,0,
|
|
|
|
|
|
114.768440187191,31.496272989468,0,114.768501416066,31.496212968382,0,114.768578227328,31.496029679091,0,114.768633059787,31.495873500982,0,114.768665855622,31.495666636403,0,114.768731820858,31.495502097094,0,114.768796770433,31.495388214977,0,114.768888011670,31.495240909231,0,114.768964872072,31.495120310991,0,114.769074997575,31.494996677761,0,114.769134862255,31.494935364613,0,114.769264553519,31.494823261481,0,114.769383328601,31.494706875275,0,114.769480493274,31.494596309941,0,114.769585666783,31.494488251423,0,114.769678546956,31.494426071628,0
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
// holes:[
|
|
|
|
|
|
// // {
|
|
|
|
|
|
// // interval: "2000-01-01T00:00:00Z/2000-01-01T00:00:01Z",
|
|
|
|
|
|
// // cartographicDegrees: [114.763939387170,31.498342917005,0,114.763438657610,31.498623092879,0,114.763570952798,31.498753987128,0,114.763997888724,31.498364657256,0,],
|
|
|
|
|
|
// // },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:01Z/2000-01-01T00:00:02Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.764313201666,31.498046493681,0,114.764039711477,31.498185140822,0,114.763704781215,31.498360000446,0,114.763363817279,31.498531492152,0,114.763672938401,31.498836365736,0,114.763828658465,31.498688634114,0,114.764050477179,31.498456985639,0,114.764273777680,31.498211706819,0,114.764418020627,31.498055297440,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:02Z/2000-01-01T00:00:03Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.765365854278,31.497270788697,0,114.765017830184,31.497513599981,0,114.764700268294,31.497744038594,0,114.764390118584,31.497972537379,0,114.764096115808,31.498130590428,0,114.763656917026,31.498359623694,0,114.763353695267,31.498517045914,0,114.763693277336,31.498847164283,0,114.763842029589,31.498729019605,0,114.764087278011,31.498457690135,0,114.764305977059,31.498210058440,0,114.764454694287,31.498050654493,0,114.764732734194,31.497838098172,0,114.764970490843,31.497651404167,0,114.765212436034,31.497472545878,0,114.765328255617,31.497346837708,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:03Z/2000-01-01T00:00:04Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.766795135723,31.497090004892,0,114.766607316248,31.497029727978,0,114.766349029195,31.496942675971,0,114.766108182875,31.496893881369,0,114.765951339203,31.496909482180,0,114.765688168327,31.497011278918,0,114.765448609255,31.497162849694,0,114.765098009074,31.497437043336,0,114.764659974834,31.497762589780,0,114.764377647131,31.497965650967,0,114.763893880223,31.498217108129,0,114.763350658911,31.498509055588,0,114.763693774617,31.498869810936,0,114.763826864867,31.498753532605,0,114.764005508217,31.498562226015,0,114.764237448654,31.498304002740,0,114.764458523699,31.498065920285,0,114.764709140312,31.497873815842,0,114.765003982773,31.497651127671,0,114.765229720533,31.497478407362,0,114.765450113492,31.497303907986,0,114.765659484197,31.497185992423,0,114.765764462646,31.497137756151,0,114.766033487480,31.497130567483,0,114.766402997148,31.497159819939,0,114.766717969740,31.497170184975,0,114.766821734209,31.497151220374,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:04Z/2000-01-01T00:00:05Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.767856572904,31.496713212517,0,114.767532163868,31.496892788661,0,114.767301587232,31.496986733911,0,114.767071098710,31.497034001224,0,114.766828758574,31.497013973412,0,114.766529259222,31.496916243396,0,114.766261693021,31.496841856763,0,114.766029434881,31.496834579067,0,114.765690653071,31.496975842302,0,114.765426774993,31.497161865682,0,114.765033444991,31.497468743145,0,114.764714094725,31.497706094535,0,114.764373752997,31.497957064267,0,114.763800571985,31.498256877886,0,114.763521873571,31.498402125341,0,114.763348732120,31.498506694451,0,114.763700896817,31.498874329774,0,114.763850462189,31.498749625751,0,114.764148696635,31.498412741926,0,114.764453222739,31.498073043344,0,114.764843659345,31.497784893972,0,114.765136517774,31.497558773072,0,114.765473361890,31.497294544899,0,114.765578802644,31.497228955090,0,114.765749087369,31.497149789852,0,114.765858238810,31.497161670402,0,114.766075803330,31.497169033986,0,114.766250645414,31.497184791669,0,114.766639840427,31.497217393411,0,114.767025805804,31.497227152446,0,114.767210777019,31.497215754930,0,114.767438985547,31.497133407709,0,114.767642936213,31.497012070119,0,114.767852524713,31.496815687431,0,114.768017014539,31.496627444161,0,114.768211856665,31.496420008805,0,114.768390768580,31.496237134444,0,114.768496392251,31.496033230777,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:05Z/2000-01-01T00:00:06Z",
|
|
|
|
|
|
// cartographicDegrees: [[114.768631311783,31.495578294780,0,114.768521085186,31.495762528422,0,114.768400026983,31.495960750728,0,114.768217574009,31.496257284286,0,114.768144070759,31.496377983952,0,114.767931257165,31.496598442293,0,114.767890148508,31.496638503274,0,114.767628864841,31.496820407098,0,114.767431251284,31.496922081537,0,114.767143919965,31.497006201167,0,114.766980599700,31.497020245661,0,114.766783688310,31.496990033626,0,114.766262913406,31.496828772717,0,114.766029434881,31.496834579067,0,114.765690653071,31.496975842302,0,114.765426774993,31.497161865682,0,114.765033444991,31.497468743145,0,114.764714094725,31.497706094535,0,114.764373752997,31.497957064267,0,114.763800571985,31.498256877886,0,114.763521873571,31.498402125341,0,114.763348732120,31.498506694451,0,114.763700896817,31.498874329774,0,114.763850462189,31.498749625751,0,114.764148696635,31.498412741926,0,114.764453222739,31.498073043344,0,114.764843659345,31.497784893972,0,114.765136517774,31.497558773072,0,114.765473361890,31.497294544899,0,114.765578802644,31.497228955090,0,114.765749087369,31.497149789852,0,114.765858238810,31.497161670402,0,114.766075803330,31.497169033986,0,114.766250645414,31.497184791669,0,114.766639840427,31.497217393411,0,114.766777557613,31.497229460190,0,114.767071207159,31.497239842780,0,114.767220625200,31.497226785466,0,114.767423296449,31.497156008342,0,114.767618288622,31.497040598528,0,114.767793858275,31.496905295936,0,114.767953840273,31.496734363437,0,114.768104893929,31.496583059575,0,114.768257217452,31.496431964686,0,114.768418186795,31.496271731582,0,114.768491303038,31.496193620180,0,114.768564408615,31.496006597717,0,114.768607808219,31.495843528781,0,114.768658716226,31.495660756360,0,]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:06Z/2000-01-01T00:00:07Z",
|
|
|
|
|
|
// cartographicDegrees: [[
|
|
|
|
|
|
// 114.769306034785,31.494680644473,0,114.769135416269,31.494852552184,0,114.768936192096,31.495080413086,0,114.768812797476,31.495225802142,0,114.768677039301,31.495461253826,0,114.768524559972,31.495721557074,0,114.768376910300,31.496001449135,0,114.768262430136,31.496190717202,0,
|
|
|
|
|
|
// 114.768217574009,31.496257284286,0,114.768144070759,31.496377983952,0,114.767931257165,31.496598442293,0,114.767890148508,31.496638503274,0,114.767628864841,31.496820407098,0,114.767431251284,31.496922081537,0,114.767143919965,31.497006201167,0,114.766980599700,31.497020245661,0,114.766783688310,31.496990033626,0,114.766262913406,31.496828772717,0,114.766029434881,31.496834579067,0,114.765690653071,31.496975842302,0,114.765426774993,31.497161865682,0,114.765033444991,31.497468743145,0,114.764714094725,31.497706094535,0,114.764373752997,31.497957064267,0,114.763800571985,31.498256877886,0,114.763521873571,31.498402125341,0,114.763348732120,31.498506694451,0,114.763700896817,31.498874329774,0,114.763850462189,31.498749625751,0,114.764148696635,31.498412741926,0,114.764453222739,31.498073043344,0,114.764843659345,31.497784893972,0,114.765136517774,31.497558773072,0,114.765473361890,31.497294544899,0,114.765578802644,31.497228955090,0,114.765749087369,31.497149789852,0,114.765858238810,31.497161670402,0,114.766075803330,31.497169033986,0,114.766250645414,31.497184791669,0,114.766639840427,31.497217393411,0,114.766777557613,31.497229460190,0,114.767071207159,31.497239842780,0,114.767220625200,31.497226785466,0,114.767423296449,31.497156008342,0,114.767618288622,31.497040598528,0,114.767793858275,31.496905295936,0,114.767953840273,31.496734363437,0,114.768104893929,31.496583059575,0,114.768257217452,31.496431964686,0,114.768418186795,31.496271731582,0,
|
|
|
|
|
|
// 114.768477929608,31.496204904061,0,114.768565102323,31.496026072876,0,114.768617025532,31.495851906870,0,114.768658251103,31.495642954089,0,114.768727334709,31.495480159260,0,114.768833647090,31.495301894274,0,114.768944143543,31.495136163334,0,114.768998052753,31.495064806547,0,114.769139943231,31.494908072353,0,114.769250256011,31.494810067165,0,114.769371487522,31.494688505397,0,
|
|
|
|
|
|
// ]],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// ],
|
|
|
|
|
|
material: {
|
|
|
|
|
|
solidColor: {
|
|
|
|
|
|
color: [
|
|
|
|
|
|
{
|
|
|
|
|
|
rgba: [255, 255, 60, 125],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: "redRiverLeft",
|
|
|
|
|
|
name: "redRiverLeftName",
|
|
|
|
|
|
availability: "2000-01-01T00:00:00Z/2000-01-01T00:00:20Z",
|
|
|
|
|
|
polygon: {
|
|
|
|
|
|
positions: [
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:00Z/2000-01-01T00:00:01Z",
|
|
|
|
|
|
// cartographicDegrees: [114.763939387170,31.498342917005,0,114.763438657610,31.498623092879,0,114.763570952798,31.498753987128,0,114.763997888724,31.498364657256,0,],
|
|
|
|
|
|
// },
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:01Z/2000-01-01T00:00:02Z",
|
|
|
|
|
|
cartographicDegrees: [114.764313201666,31.498046493681,0,114.764039711477,31.498185140822,0,114.763704781215,31.498360000446,0,114.763363817279,31.498531492152,0,114.763672938401,31.498836365736,0,114.763828658465,31.498688634114,0,114.764050477179,31.498456985639,0,114.764273777680,31.498211706819,0,114.764418020627,31.498055297440,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:02Z/2000-01-01T00:00:03Z",
|
|
|
|
|
|
cartographicDegrees: [114.765365854278,31.497270788697,0,114.765017830184,31.497513599981,0,114.764700268294,31.497744038594,0,114.764390118584,31.497972537379,0,114.764096115808,31.498130590428,0,114.763656917026,31.498359623694,0,114.763353695267,31.498517045914,0,114.763693277336,31.498847164283,0,114.763842029589,31.498729019605,0,114.764087278011,31.498457690135,0,114.764305977059,31.498210058440,0,114.764454694287,31.498050654493,0,114.764732734194,31.497838098172,0,114.764970490843,31.497651404167,0,114.765212436034,31.497472545878,0,114.765328255617,31.497346837708,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:03Z/2000-01-01T00:00:04Z",
|
|
|
|
|
|
cartographicDegrees: [114.766795135723,31.497090004892,0,114.766607316248,31.497029727978,0,114.766349029195,31.496942675971,0,114.766108182875,31.496893881369,0,114.765951339203,31.496909482180,0,114.765688168327,31.497011278918,0,114.765448609255,31.497162849694,0,114.765098009074,31.497437043336,0,114.764659974834,31.497762589780,0,114.764377647131,31.497965650967,0,114.763893880223,31.498217108129,0,114.763350658911,31.498509055588,0,114.763693774617,31.498869810936,0,114.763826864867,31.498753532605,0,114.764005508217,31.498562226015,0,114.764237448654,31.498304002740,0,114.764458523699,31.498065920285,0,114.764709140312,31.497873815842,0,114.765003982773,31.497651127671,0,114.765229720533,31.497478407362,0,114.765450113492,31.497303907986,0,114.765659484197,31.497185992423,0,114.765764462646,31.497137756151,0,114.766033487480,31.497130567483,0,114.766402997148,31.497159819939,0,114.766717969740,31.497170184975,0,114.766821734209,31.497151220374,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:04Z/2000-01-01T00:00:05Z",
|
|
|
|
|
|
cartographicDegrees: [114.767856572904,31.496713212517,0,114.767532163868,31.496892788661,0,114.767301587232,31.496986733911,0,114.767071098710,31.497034001224,0,114.766828758574,31.497013973412,0,114.766529259222,31.496916243396,0,114.766261693021,31.496841856763,0,114.766029434881,31.496834579067,0,114.765690653071,31.496975842302,0,114.765426774993,31.497161865682,0,114.765033444991,31.497468743145,0,114.764714094725,31.497706094535,0,114.764373752997,31.497957064267,0,114.763800571985,31.498256877886,0,114.763521873571,31.498402125341,0,114.763348732120,31.498506694451,0,114.763700896817,31.498874329774,0,114.763850462189,31.498749625751,0,114.764148696635,31.498412741926,0,114.764453222739,31.498073043344,0,114.764843659345,31.497784893972,0,114.765136517774,31.497558773072,0,114.765473361890,31.497294544899,0,114.765578802644,31.497228955090,0,114.765749087369,31.497149789852,0,114.765858238810,31.497161670402,0,114.766075803330,31.497169033986,0,114.766250645414,31.497184791669,0,114.766639840427,31.497217393411,0,114.767025805804,31.497227152446,0,114.767210777019,31.497215754930,0,114.767438985547,31.497133407709,0,114.767642936213,31.497012070119,0,114.767852524713,31.496815687431,0,114.768017014539,31.496627444161,0,114.768211856665,31.496420008805,0,114.768390768580,31.496237134444,0,114.768496392251,31.496033230777,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:05Z/2000-01-01T00:00:06Z",
|
|
|
|
|
|
cartographicDegrees: [114.768631311783,31.495578294780,0,114.768521085186,31.495762528422,0,114.768400026983,31.495960750728,0,114.768217574009,31.496257284286,0,114.768144070759,31.496377983952,0,114.767931257165,31.496598442293,0,114.767890148508,31.496638503274,0,114.767628864841,31.496820407098,0,114.767431251284,31.496922081537,0,114.767143919965,31.497006201167,0,114.766980599700,31.497020245661,0,114.766783688310,31.496990033626,0,114.766262913406,31.496828772717,0,114.766029434881,31.496834579067,0,114.765690653071,31.496975842302,0,114.765426774993,31.497161865682,0,114.765033444991,31.497468743145,0,114.764714094725,31.497706094535,0,114.764373752997,31.497957064267,0,114.763800571985,31.498256877886,0,114.763521873571,31.498402125341,0,114.763348732120,31.498506694451,0,114.763700896817,31.498874329774,0,114.763850462189,31.498749625751,0,114.764148696635,31.498412741926,0,114.764453222739,31.498073043344,0,114.764843659345,31.497784893972,0,114.765136517774,31.497558773072,0,114.765473361890,31.497294544899,0,114.765578802644,31.497228955090,0,114.765749087369,31.497149789852,0,114.765858238810,31.497161670402,0,114.766075803330,31.497169033986,0,114.766250645414,31.497184791669,0,114.766639840427,31.497217393411,0,114.766777557613,31.497229460190,0,114.767071207159,31.497239842780,0,114.767220625200,31.497226785466,0,114.767423296449,31.497156008342,0,114.767618288622,31.497040598528,0,114.767793858275,31.496905295936,0,114.767953840273,31.496734363437,0,114.768104893929,31.496583059575,0,114.768257217452,31.496431964686,0,114.768418186795,31.496271731582,0,114.768491303038,31.496193620180,0,114.768564408615,31.496006597717,0,114.768607808219,31.495843528781,0,114.768658716226,31.495660756360,0,],
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
interval: "2000-01-01T00:00:06Z/2000-01-01T00:00:07Z",
|
|
|
|
|
|
cartographicDegrees: [
|
|
|
|
|
|
114.769306034785,31.494680644473,0,114.769135416269,31.494852552184,0,114.768936192096,31.495080413086,0,114.768812797476,31.495225802142,0,114.768677039301,31.495461253826,0,114.768524559972,31.495721557074,0,114.768376910300,31.496001449135,0,114.768262430136,31.496190717202,0,
|
|
|
|
|
|
114.768217574009,31.496257284286,0,114.768144070759,31.496377983952,0,114.767931257165,31.496598442293,0,114.767890148508,31.496638503274,0,114.767628864841,31.496820407098,0,114.767431251284,31.496922081537,0,114.767143919965,31.497006201167,0,114.766980599700,31.497020245661,0,114.766783688310,31.496990033626,0,114.766262913406,31.496828772717,0,114.766029434881,31.496834579067,0,114.765690653071,31.496975842302,0,114.765426774993,31.497161865682,0,114.765033444991,31.497468743145,0,114.764714094725,31.497706094535,0,114.764373752997,31.497957064267,0,114.763800571985,31.498256877886,0,114.763521873571,31.498402125341,0,114.763348732120,31.498506694451,0,114.763700896817,31.498874329774,0,114.763850462189,31.498749625751,0,114.764148696635,31.498412741926,0,114.764453222739,31.498073043344,0,114.764843659345,31.497784893972,0,114.765136517774,31.497558773072,0,114.765473361890,31.497294544899,0,114.765578802644,31.497228955090,0,114.765749087369,31.497149789852,0,114.765858238810,31.497161670402,0,114.766075803330,31.497169033986,0,114.766250645414,31.497184791669,0,114.766639840427,31.497217393411,0,114.766777557613,31.497229460190,0,114.767071207159,31.497239842780,0,114.767220625200,31.497226785466,0,114.767423296449,31.497156008342,0,114.767618288622,31.497040598528,0,114.767793858275,31.496905295936,0,114.767953840273,31.496734363437,0,114.768104893929,31.496583059575,0,114.768257217452,31.496431964686,0,114.768418186795,31.496271731582,0,
|
|
|
|
|
|
114.768477929608,31.496204904061,0,114.768565102323,31.496026072876,0,114.768617025532,31.495851906870,0,114.768658251103,31.495642954089,0,114.768727334709,31.495480159260,0,114.768833647090,31.495301894274,0,114.768944143543,31.495136163334,0,114.768998052753,31.495064806547,0,114.769139943231,31.494908072353,0,114.769250256011,31.494810067165,0,114.769371487522,31.494688505397,0,
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
material: {
|
|
|
|
|
|
solidColor: {
|
|
|
|
|
|
color: [
|
|
|
|
|
|
{
|
|
|
|
|
|
rgba: [250, 84 ,28, 185],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// const czml = [
|
|
|
|
|
|
// {
|
|
|
|
|
|
// id: "document",
|
|
|
|
|
|
// name: "CZML Polygon - Intervals and Availability",
|
|
|
|
|
|
// version: "1.0",
|
|
|
|
|
|
// clock: {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:00Z/2000-01-01T00:00:02Z",
|
|
|
|
|
|
// currentTime: "2000-01-01T00:00:12Z",
|
|
|
|
|
|
// multiplier: 1,
|
|
|
|
|
|
// // range:'CLAMPED'
|
|
|
|
|
|
// },
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// id: "blueRiverRight",
|
|
|
|
|
|
// name: "blueRiverRightName",
|
|
|
|
|
|
// availability: "2000-01-01T00:00:00Z/2000-01-01T00:00:14Z",
|
|
|
|
|
|
// polygon: {
|
|
|
|
|
|
// positions: [
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:00Z/2000-01-01T00:00:01Z",
|
|
|
|
|
|
// cartographicDegrees: [
|
|
|
|
|
|
// 114.783551451219,31.505432945988,80,
|
|
|
|
|
|
// 114.782956879057,31.505116255788,75,
|
|
|
|
|
|
// 114.781892213916,31.504914405850,70,
|
|
|
|
|
|
// 114.781157359053,31.504636741222,60,
|
|
|
|
|
|
// 114.780745721874,31.504325618018,60,
|
|
|
|
|
|
// 114.780212874098,31.504512397056,60,
|
|
|
|
|
|
// 114.779408140669,31.504317896297,60,
|
|
|
|
|
|
// 114.778706035963,31.503755212927,60,
|
|
|
|
|
|
|
|
|
|
|
|
// 114.779390892782,31.503920292944,60,
|
|
|
|
|
|
// 114.779897537800,31.504217938631,60,
|
|
|
|
|
|
// 114.780613891771,31.504189821141,60,
|
|
|
|
|
|
// 114.781129433998,31.504145193492,60,
|
|
|
|
|
|
// 114.781906501107,31.504529518304,70,
|
|
|
|
|
|
// 114.782778529129,31.504685509343,75,
|
|
|
|
|
|
// 114.783339602099,31.504773152014,80
|
|
|
|
|
|
// ],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// {
|
|
|
|
|
|
// interval: "2000-01-01T00:00:01Z/2000-01-01T00:00:02Z",
|
|
|
|
|
|
// cartographicDegrees: [
|
|
|
|
|
|
// 114.783551451219,31.505432945988,60,
|
|
|
|
|
|
// 114.782956879057,31.505116255788,60,
|
|
|
|
|
|
// 114.781892213916,31.504914405850,60,
|
|
|
|
|
|
// 114.781157359053,31.504636741222,60,
|
|
|
|
|
|
// 114.780745721874,31.504325618018,60,
|
|
|
|
|
|
// 114.780212874098,31.504512397056,60,
|
|
|
|
|
|
// 114.779408140669,31.504317896297,60,
|
|
|
|
|
|
// 114.778706035963,31.503755212927,60,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 114.778671438258,31.503393234354,60,
|
|
|
|
|
|
// 114.779390892782,31.503920292944,60,
|
|
|
|
|
|
// 114.779897537800,31.504217938631,60,
|
|
|
|
|
|
// 114.780613891771,31.504189821141,60,
|
|
|
|
|
|
// 114.781129433998,31.504145193492,60,
|
|
|
|
|
|
// 114.781906501107,31.504529518304,60,
|
|
|
|
|
|
// 114.782778529129,31.504685509343,60,
|
|
|
|
|
|
// 114.783339602099,31.504773152014,60,
|
|
|
|
|
|
// ],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// ],
|
|
|
|
|
|
// material: {
|
|
|
|
|
|
// solidColor: {
|
|
|
|
|
|
// color: [
|
|
|
|
|
|
// {
|
|
|
|
|
|
// rgba: [85, 119, 243, 125],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// ],
|
|
|
|
|
|
// },
|
|
|
|
|
|
// },
|
|
|
|
|
|
// extrudedHeight: 50,
|
|
|
|
|
|
// perPositionHeight: true,
|
|
|
|
|
|
// },
|
|
|
|
|
|
// },
|
|
|
|
|
|
// ];
|
|
|
|
|
|
|
|
|
|
|
|
viewer.dataSources.add(Cesium.CzmlDataSource.load(czml));
|
|
|
|
|
|
// viewer.clock.shouldAnimate = false; // 暂停动画
|
|
|
|
|
|
// var specificTime = Cesium.JulianDate.fromIso8601('2000-01-01T00:00:04Z');
|
|
|
|
|
|
// viewer.clock.currentTime = '2000-01-01T00:00:05Z'; // 跳转到指定时间
|
|
|
|
|
|
}
|
2025-09-10 16:12:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-08-07 11:28:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|