polylineStreams.js 11.5 KB
Newer Older
Sven Schneider's avatar
Sven Schneider committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
$(function () {	
	Cesium.Ion.defaultAccessToken = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI5ODI4ZTYyZS1mMTg2LTQ5NGEtYjdiOS02ODg2NzVhNjc0MTAiLCJpZCI6MjkwNCwiaWF0IjoxNTM1MTA5OTAzfQ.kyDX_0ScvJBkYnvXI0DW5NfZbiaRL5ezwtAUhxYnk1Y';
	var imageryViewModels = [];
	imageryViewModels.push(new Cesium.ProviderViewModel({
		name: 'Sentinel-2',
		iconUrl: Cesium.buildModuleUrl('Widgets/Images/ImageryProviders/sentinel-2.png'),
		tooltip: 'Sentinel-2 cloudless.',
		creationFunction: function () {
			return new Cesium.IonImageryProvider({ assetId: 3954 });
		}
	}));
	
	imageryViewModels.push(new Cesium.ProviderViewModel({
		name: 'Blue Marble',
		iconUrl: Cesium.buildModuleUrl('Widgets/Images/ImageryProviders/blueMarble.png'),
		tooltip: 'Blue Marble Next Generation July, 2004 imagery from NASA.',
		creationFunction: function () {
			return new Cesium.IonImageryProvider({ assetId: 3845 });
		}
	}));

    var viewer = new Cesium.Viewer('cesiumContainer',
		{
			imageryProvider: new Cesium.IonImageryProvider({ assetId: 3954 }),
				
			terrainProvider : new Cesium.CesiumTerrainProvider({
					url: Cesium.IonResource.fromAssetId(1)
				}),
			scene3DOnly: false,
			shouldAnimate: true,
			animation: true,
			infoBox: true,
			baseLayerPicker: true,
			fullscreenButton: false,
			timeline: false,
			navigationHelpButton: true,
			navigationInstructionsInitiallyVisible: false,
			homeButton: false,
			selectionIndicator: true,
			geocoder: true,
			// imageryProviderViewModels: imageryViewModels
		});

		// var layer = viewer.imageryLayers.addImageryProvider(
		// 	new Cesium.IonImageryProvider({ assetId: 3 })
		// );

		var imageryLayer = viewer.imageryLayers.addImageryProvider(
			new Cesium.IonImageryProvider({ assetId: 3954 })
		  );

	var canvas = viewer.canvas;
	canvas.setAttribute('tabindex', '0'); // needed to put focus on the canvas
	canvas.addEventListener('click', function() {
		canvas.focus();
	});
	canvas.focus();
	var scene = viewer.scene;

	
	var tileset = viewer.scene.primitives.add(new Cesium.Cesium3DTileset({			
		url: 'buildingTiles/StoeckachLOD1/tileset.json',		
		show: true		
	}));

	tileset.readyPromise.then(function (tileset) {
		return zoomAll(tileset);
	});
	

	tileset.readyPromise.then(function (tileset) {

		var R = 0;      // roll
		var P = 0; 	 // pitch
		var Yaw = 0;		 // yaw
		var height =53;  
		var cartographic = Cesium.Cartographic.fromCartesian(tileset.boundingSphere.center);
		var surface = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, 0.0);
		var offset = Cesium.Cartesian3.fromRadians(cartographic.longitude, cartographic.latitude, height);
		var translation = Cesium.Cartesian3.subtract(offset, surface, new Cesium.Cartesian3());	
		
		//var rotMat = new Cesium.Matrix3();
		var rotation = new Cesium.Matrix3.fromHeadingPitchRoll(new Cesium.HeadingPitchRoll(Yaw, P, R));
		
		tileset.modelMatrix = Cesium.Matrix4.fromRotationTranslation(rotation,translation);
		
		return zoomAll(tileset);
	});
	
	

	viewer.scene.globe.enableLighting = true; // set lighting to true

	
	var zoomAll = function (tileset) {
		return new Promise(function (resolve, reject) {
			if (!tileset) { reject("Tileset is undifined"); }
			viewer.camera.viewBoundingSphere(tileset.boundingSphere, new Cesium.HeadingPitchRange(0, -0.5, 1500));
			viewer.camera.lookAtTransform(Cesium.Matrix4.IDENTITY);
			resolve();
		});
	}



//////////////////////////////////////////
// load streamline data from text file and parse it to polyline with multiple colors.

var pos=[];
var cols = [];
var streamID = [];

d3.dsv(",", "results/polylines.csv").then(function(text) {  
114
//	console.log(text); // Hello, world!
Sven Schneider's avatar
Sven Schneider committed
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
	// var temp = text.split(',');
	
	var temp = text;	
	for(var i = 0; i < temp.length; i++) {  // use i+=7 when parsed as d3.text(...)
		pos.push([parseFloat(text[i].x), parseFloat(text[i].y), parseFloat(text[i].z)]);
		cols.push([parseInt(text[i].R), parseInt(text[i].G), parseInt(text[i].B)]);
		streamID.push(parseInt(text[i].ID));
		// use these lines if parsed as text. i.e. using d3.text(...)
		//pos.push([parseFloat(temp[i+0]), parseFloat(temp[i+1]), parseFloat(temp[i+2])]);
		//colors.push([parseFloat(temp[i+3]),parseFloat(temp[i+4]),parseFloat(temp[i+5])])
		//streamID.push([parseFloat(temp[i+6])]);
	}

	const maxID = streamID.reduce(function(a, b) {
		return Math.max(a, b);
	});

	//find out the unique ids within the streamID array
	const uniqueStreamID = [...new Set(streamID)];

	//get index of each unique id, first element of those
	let sIDidx = [];
	for (var i =0; i<=maxID; i++){
		var tmpIdx = streamID.indexOf(i);
		if (tmpIdx !== -1)
			sIDidx.push(tmpIdx);
	}
	

	for (var line=1; line < uniqueStreamID.length; line++){
	// Create and draw a polyline with per vertex colors
	positions = [];
	colors = [];
	for (i = sIDidx[line-1]; i < sIDidx[line]-1; ++i) {
	  positions.push(Cesium.Cartesian3.fromDegrees(pos[i][0],pos[i][1],pos[i][2]+120));
	  colors.push(Cesium.Color.fromBytes(cols[i][0], cols[i][1], cols[i][2], 180));
	
	}
	// For per segment coloring, supply the colors option with
	// an array of colors for each vertex.  Also set the
	// colorsPerVertex option to true.
	viewer.scene.primitives.add(
	  new Cesium.Primitive({
		geometryInstances: new Cesium.GeometryInstance({
		  geometry: new Cesium.PolylineGeometry({
			positions: positions,
			width: 5.0,
			vertexFormat: Cesium.PolylineColorAppearance.VERTEX_FORMAT,
163
			colors: colors,			
Sven Schneider's avatar
Sven Schneider committed
164
165
166
167
168
169
170
171
172
173
174
			colorsPerVertex: true,
		  }),
		}),
		appearance: new Cesium.PolylineColorAppearance(),
	  })
	);
	}


	})

175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
	// This adds a large arrow to the viewer. Works fine. for testing

	// var purpleArrow = viewer.entities.add({
	// 	name: "Purple straight arrow at height",
	// 	polyline: {
	// 	  positions: Cesium.Cartesian3.fromDegreesArrayHeights([
	// 		9.187290, 48.784567, 400,
	// 		9.195991, 48.790575, 400
	// 	  ]),
	// 	  width: 50,
	// 	  arcType: Cesium.ArcType.NONE,
	// 	  material: new Cesium.PolylineArrowMaterialProperty(
	// 		Cesium.Color.PURPLE
	// 	  ),
	// 	},
	//   });
	  

Sven Schneider's avatar
Sven Schneider committed
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
// var f = new File([""], "results/singlePolyline.csv", {type: "text/plain", lastModified: Date()})


// var temp = text.split(',');
//   for(var i = 0; i < temp.length; i+=6) {
//     pos.push([parseFloat(temp[i+1]), parseFloat(temp[i+2]), parseFloat(temp[i+3])]);
//     colors.push([parseInt(temp[i+4]),parseInt(temp[i+5]),parseInt(temp[i+6])])
//   }


console.log('Position data imported.');


//// the following codes will actually generate multicolor polylines 
/// just need a away to get the actual data into there...
///
///
// for (var line=0; line < 10; line++){
// 	// Example 2: Draw a polyline with per vertex colors
// 	positions = [];
// 	colors = [];
// 	for (i = 0; i < 12; ++i) {
// 	  positions.push(Cesium.Cartesian3.fromDegrees(-124.0 + line*5 + 5 * i, 35.0+line));
// 	  colors.push(Cesium.Color.fromRandom({ alpha: 1.0 }));
// 	}
// 	// For per segment coloring, supply the colors option with
// 	// an array of colors for each vertex.  Also set the
// 	// colorsPerVertex option to true.
// 	scene.primitives.add(
// 	  new Cesium.Primitive({
// 		geometryInstances: new Cesium.GeometryInstance({
// 		  geometry: new Cesium.PolylineGeometry({
// 			positions: positions,
// 			width: 5.0,
// 			vertexFormat: Cesium.PolylineColorAppearance.VERTEX_FORMAT,
// 			colors: colors,
// 			colorsPerVertex: true,
// 		  }),
// 		}),
// 		appearance: new Cesium.PolylineColorAppearance(),
// 	  })
// 	);
// 	}







	// HTML overlay for showing feature name on mouseover
	var nameOverlay = document.createElement('div');
	viewer.container.appendChild(nameOverlay);
	nameOverlay.className = 'backdrop';
	nameOverlay.style.display = 'none';
	nameOverlay.style.position = 'absolute';
	nameOverlay.style.bottom = '0';
	nameOverlay.style.left = '0';
	nameOverlay.style['pointer-events'] = 'none';
	nameOverlay.style.padding = '4px';
	nameOverlay.style.backgroundColor = 'green';

	
	var scene = viewer.scene;
	var longitude;
	var latitude;
	var fid;
	var featuretype;
	var gmlid;
	var selID = new Array();
	var cnt = 0;
	var lastPickedObject;

	var viewModel = {
		rightClickAction: 'properties',
		middleClickAction: 'hide'
	};

	Cesium.knockout.track(viewModel);

	var handler = new Cesium.ScreenSpaceEventHandler(scene.canvas);

	
	handler.setInputAction(function (movement) {
			// makes camera go to a certain position given by the coordinates below
		
		var feature = viewer.scene.pick(movement.position);
			if (!Cesium.defined(feature)) {
				console.log("no feature defined")
				return;
			}	
		var propertyNames = feature.getPropertyNames();
		var lat = feature.getProperty("Latitude");
		var lon = feature.getProperty("Longitude");
		var tmp = feature.getProperty("YearOfConstruction");

		viewer.camera.flyTo({
			destination: Cesium.Cartesian3.fromDegrees(lon, lat, 900),
			maximumHeight: 1500.0,
			orientation: {
				heading: Cesium.Math.toRadians(0.0),
				pitch: Cesium.Math.toRadians(-90.0),
				roll: Cesium.Math.toRadians(45.0)
			},
			duration: 2
		});		}, Cesium.ScreenSpaceEventType.LEFT_CLICK);
		


		handler.setInputAction(function (movement) {
			var feature = viewer.scene.pick(movement.position);
			if (!Cesium.defined(feature)) {
				return;
			}
			var action = viewModel.rightClickAction;
			action === 'properties'
			printProperties(movement, feature)
		}, Cesium.ScreenSpaceEventType.RIGHT_CLICK);


		function printProperties(movement, feature) {
			console.log('Properties:');
			var propertyNames = feature.getPropertyNames();
			var length = propertyNames.length;
			for (var i = 0; i < length; ++i) {
				var propertyName = propertyNames[i];
				if (propertyName == 'gmlIdALKISLageBezeichnung_1' ||
					propertyName == 'gmlIdALKISLageBezeichnung_2' ||
					propertyName == 'gmlIdALKISLageBezeichnung_3' ||
					propertyName == 'gmlIdALKISLageBezeichnung_4' ||
					propertyName == 'gmlIdALKISLageBezeichnung_5' ||
					propertyName == 'gmlIdALKISLageBezeichnung_6')
					console.log('  ' + propertyName + ': ' + 'zensiert');
				else
					console.log('  ' + propertyName + ': ' + feature.getProperty(propertyName));
			}

			// Evaluate feature description
			//console.log('Description : ' + tileset.style.meta.description.evaluate(scene.frameState, feature));
		}

		handler.setInputAction(function (movement) {
			var feature = viewer.scene.pick(movement.position);
			if (!Cesium.defined(feature)) {
				return;
			}

			var action = viewModel.middleClickAction;
			if (action === 'hide') {
				feature.show = false;
			}
			else{
				feature.show = true;
			}
			
		}, Cesium.ScreenSpaceEventType.MIDDLE_CLICK);
		


  
function showLegend() {
    $("#legend").css("display", "block");
}
function hideLegend() {
    $("#legend").css("display", "none");
}

// Legend - Colour Table
function emptyColourTable() {
    $(".inner").empty();
}



function setHeightTable() {
    $(".inner").append( "<table>" +
        "<tr><td class='outlined' bgcolor='red'>&nbsp;&nbsp;&nbsp;&nbsp;</td><td> > 3.5 </td></tr>" +
        "<tr><td class='outlined' bgcolor='#ff6b21'></td><td> 3 </td></tr>" +
        "<tr><td class='outlined' bgcolor='#ffb400'></td><td> 2.5 </td></tr>" +
		"<tr><td class='outlined' bgcolor='yellow'></td><td> 2</td></tr>" +
        "<tr><td class='outlined' bgcolor='#89FF8F'></td><td> 1.5 </td></tr>" +                
       	"<tr><td class='outlined' bgcolor='cyan'></td><td> 1 </td></tr>" +
        "<tr><td class='outlined' bgcolor='blue'></td><td> 0.5 </td></tr>" +
    "</table>" );
}
	
	return Cesium.when(tileset.readyPromise).then(function (tileset) {
		tileset.style = new Cesium.Cesium3DTileStyle({

			color: "color('white',1)",
			
		});
		showLegend();
		setHeightTable();
	});	

	

391
});