@pirireis/webglobeplugins 0.9.7 → 0.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Math/angle-calculation.js +15 -0
- package/dist/Math/arc.js +65 -0
- package/dist/Math/bounds/line-bbox.js +188 -0
- package/dist/Math/constants.js +9 -0
- package/dist/Math/frustum/camera.js +24 -0
- package/dist/Math/frustum/from-globeinfo.js +48 -0
- package/dist/Math/frustum/types.js +2 -0
- package/dist/Math/globe-util/horizon-plane.js +112 -0
- package/dist/Math/index.js +1 -0
- package/dist/Math/juction/arc-plane.js +83 -0
- package/dist/Math/juction/line-sphere.js +25 -0
- package/dist/Math/juction/plane-plane.js +58 -0
- package/dist/Math/line.js +56 -0
- package/dist/Math/matrix4.js +1 -0
- package/dist/Math/methods.js +201 -0
- package/dist/Math/plane.js +60 -0
- package/dist/Math/quaternion.js +104 -0
- package/dist/Math/types.js +2 -0
- package/dist/Math/utils.js +4 -0
- package/dist/Math/vec3.js +126 -0
- package/dist/algorithms/search-binary.js +19 -0
- package/dist/altitude-locator/adaptors.js +1 -0
- package/dist/altitude-locator/draw-subset-obj.js +18 -0
- package/dist/altitude-locator/keymethod.js +1 -0
- package/dist/altitude-locator/plugin.js +341 -0
- package/dist/altitude-locator/types.js +23 -0
- package/dist/arrowfield/adaptor.js +14 -0
- package/dist/arrowfield/index.js +10 -0
- package/dist/arrowfield/plugin.js +86 -0
- package/dist/bearing-line/index.js +8 -0
- package/dist/bearing-line/plugin.js +449 -0
- package/dist/circle-line-chain/chain-list-map.js +205 -0
- package/dist/circle-line-chain/init.js +1 -0
- package/dist/circle-line-chain/plugin.js +424 -0
- package/dist/circle-line-chain/util.js +5 -0
- package/dist/compass-rose/compass-rose-padding-flat.js +225 -0
- package/dist/compass-rose/compass-text-writer.js +153 -0
- package/dist/compass-rose/index.js +7 -0
- package/dist/compassrose/compassrose.js +296 -0
- package/dist/compassrose/index.js +8 -0
- package/dist/globe-types.js +1 -0
- package/dist/heatwave/index.js +10 -0
- package/dist/heatwave/isobar/objectarraylabels.js +202 -0
- package/dist/heatwave/isobar/plugin.js +343 -0
- package/dist/heatwave/isobar/quadtreecontours.js +300 -0
- package/dist/heatwave/plugins/heatwaveglobeshell.js +206 -0
- package/dist/index.js +58 -0
- package/dist/jest.config.js +7 -0
- package/dist/partialrings/buffer-manager.js +81 -0
- package/dist/partialrings/index.js +41 -0
- package/dist/partialrings/plugin.js +135 -0
- package/dist/partialrings/program.js +286 -0
- package/dist/pin/pin-object-array.js +305 -0
- package/dist/pin/pin-point-totem.js +60 -0
- package/dist/point-heat-map/adaptors/timetracksplugin-format-to-this.js +66 -0
- package/dist/point-heat-map/index.js +1 -0
- package/dist/point-heat-map/plugin-webworker.js +126 -0
- package/dist/point-heat-map/point-to-heat-map-flow.js +127 -0
- package/dist/point-tracks/key-methods.js +5 -0
- package/dist/point-tracks/plugin.js +338 -0
- package/dist/programs/arrowfield/index.js +7 -0
- package/dist/programs/arrowfield/logic.js +257 -0
- package/dist/programs/arrowfield/object.js +66 -0
- package/dist/programs/data2legend/density-to-legend.js +101 -0
- package/dist/programs/data2legend/point-to-density-texture.js +100 -0
- package/dist/programs/float2legendwithratio/index.js +8 -0
- package/dist/programs/float2legendwithratio/logic.js +171 -0
- package/dist/programs/float2legendwithratio/object.js +110 -0
- package/dist/programs/globe-util/is-globe-moved.js +21 -0
- package/dist/programs/globeshell/index.js +8 -0
- package/dist/programs/globeshell/noise/noises.js +1 -0
- package/dist/programs/globeshell/wiggle/index.js +8 -0
- package/dist/programs/globeshell/wiggle/logic.js +345 -0
- package/dist/programs/globeshell/wiggle/object.js +72 -0
- package/dist/programs/helpers/blender/index.js +1 -0
- package/dist/programs/helpers/blender/program.js +79 -0
- package/dist/programs/helpers/fadeaway/index.js +7 -0
- package/dist/programs/helpers/fadeaway/logic.js +72 -0
- package/dist/programs/helpers/fadeaway/object.js +20 -0
- package/dist/programs/helpers/index.js +8 -0
- package/dist/programs/index.js +58 -0
- package/dist/programs/interface.js +1 -0
- package/dist/programs/line-on-globe/angled-line.js +176 -0
- package/dist/programs/line-on-globe/circle-accurate-3d.js +141 -0
- package/dist/programs/line-on-globe/circle-accurate-flat.js +216 -0
- package/dist/programs/line-on-globe/circle-accurate.js +178 -0
- package/dist/programs/line-on-globe/circle.js +167 -0
- package/dist/programs/line-on-globe/degree-padding-around-circle-3d.js +159 -0
- package/dist/programs/line-on-globe/index.js +1 -0
- package/dist/programs/line-on-globe/lines-color-instanced-flat.js +136 -0
- package/dist/programs/line-on-globe/linestrip.js +171 -0
- package/dist/programs/line-on-globe/naive-accurate-flexible.js +195 -0
- package/dist/programs/line-on-globe/to-the-surface.js +111 -0
- package/dist/programs/line-on-globe/util.js +8 -0
- package/dist/programs/picking/pickable-renderer.js +188 -0
- package/dist/programs/point-on-globe/element-globe-surface-glow.js +142 -0
- package/dist/programs/point-on-globe/element-point-glow.js +153 -0
- package/dist/programs/point-on-globe/square-pixel-point.js +174 -0
- package/dist/programs/programcache.js +131 -0
- package/dist/programs/rings/distancering/circleflatprogram.js +156 -0
- package/dist/programs/rings/distancering/circlepaddingfreeangleprogram.js +369 -0
- package/dist/programs/rings/distancering/circlepaddysharedbuffer.js +357 -0
- package/dist/programs/rings/distancering/index.js +14 -0
- package/dist/programs/rings/distancering/paddyflatprogram.js +172 -0
- package/dist/programs/rings/distancering/paddyflatprogram2d.js +174 -0
- package/dist/programs/rings/distancering/paddyflatprogram3d.js +172 -0
- package/dist/programs/rings/distancering/shader.js +1 -0
- package/dist/programs/rings/index.js +17 -0
- package/dist/programs/rings/partial-ring/piece-of-pie.js +275 -0
- package/dist/programs/totems/camerauniformblock.js +160 -0
- package/dist/programs/totems/canvas-webglobe-info.js +110 -0
- package/dist/programs/totems/gpu-selection-uniform-block.js +108 -0
- package/dist/programs/totems/index.js +40 -0
- package/dist/programs/two-d/pixel-circle.js +1 -0
- package/dist/programs/two-d/pixel-padding-for-compass.js +162 -0
- package/dist/programs/util.js +17 -0
- package/dist/programs/vectorfields/index.js +23 -0
- package/dist/programs/vectorfields/logics/drawrectangleparticles.js +107 -0
- package/dist/programs/vectorfields/logics/index.js +12 -0
- package/dist/programs/vectorfields/logics/pixelbased.js +142 -0
- package/dist/programs/vectorfields/logics/ubo.js +63 -0
- package/dist/programs/vectorfields/pingpongbuffermanager.js +76 -0
- package/dist/rangerings/enum.js +5 -0
- package/dist/rangerings/index.js +15 -0
- package/dist/rangerings/plugin.js +560 -0
- package/dist/rangerings/rangeringangletext.js +329 -0
- package/dist/rangerings/ring-account.js +117 -0
- package/dist/shaders/fragment-toy/firework.js +58 -0
- package/dist/shaders/fragment-toy/singularity.js +59 -0
- package/dist/shape-on-terrain/arc/naive/plugin.js +252 -0
- package/dist/timetracks/adaptors-line-strip.js +71 -0
- package/dist/timetracks/adaptors.js +122 -0
- package/dist/timetracks/index.js +19 -0
- package/dist/timetracks/plugin-line-strip.js +250 -0
- package/dist/timetracks/plugin.js +258 -0
- package/dist/timetracks/program-line-strip.js +611 -0
- package/dist/timetracks/program.js +772 -0
- package/dist/timetracks/programpoint-line-strip.js +154 -0
- package/dist/timetracks/programpoint.js +147 -0
- package/dist/types.js +15 -0
- package/dist/util/account/bufferoffsetmanager.js +179 -0
- package/dist/util/account/index.js +23 -0
- package/dist/util/account/single-attribute-buffer-management/buffer-manager.js +108 -0
- package/dist/util/account/single-attribute-buffer-management/buffer-orchestrator.js +150 -0
- package/dist/util/account/single-attribute-buffer-management/index.js +9 -0
- package/dist/util/account/single-attribute-buffer-management/object-store.js +51 -0
- package/dist/util/account/single-attribute-buffer-management/types.js +2 -0
- package/dist/util/account/util.js +22 -0
- package/dist/util/algorithms/index.js +1 -0
- package/dist/util/algorithms/search-binary.js +28 -0
- package/dist/util/check/get.js +18 -0
- package/dist/util/check/index.js +1 -0
- package/dist/util/check/typecheck.js +49 -0
- package/dist/util/geometry/index.js +51 -0
- package/dist/util/gl-util/buffer/attribute-loader.js +69 -0
- package/dist/util/gl-util/buffer/index.js +6 -0
- package/dist/util/gl-util/buffer/types.js +1 -0
- package/dist/util/gl-util/draw-options/methods.js +38 -0
- package/dist/util/gl-util/draw-options/types.js +15 -0
- package/dist/util/gl-util/uniform-block/manager.js +156 -0
- package/dist/util/gl-util/uniform-block/shader.js +1 -0
- package/dist/util/gl-util/uniform-block/types.js +8 -0
- package/dist/util/heatwavedatamanager/datamanager.js +152 -0
- package/dist/util/heatwavedatamanager/index.js +10 -0
- package/dist/util/heatwavedatamanager/pointcoordinatesdatacalculator.js +122 -0
- package/dist/util/heatwavedatamanager/pointcoordsmeta.js +20 -0
- package/dist/util/index.js +57 -0
- package/dist/util/interpolation/index.js +1 -0
- package/dist/util/interpolation/timetrack/index.js +5 -0
- package/dist/util/interpolation/timetrack/timetrack-interpolator.js +79 -0
- package/dist/util/interpolation/timetrack/web-worker-str.js +183 -0
- package/dist/util/interpolation/timetrack/web-worker.js +48 -0
- package/dist/util/jshelpers/data-filler.js +20 -0
- package/dist/util/jshelpers/equality.js +20 -0
- package/dist/util/jshelpers/index.js +37 -0
- package/dist/util/jshelpers/timefilters.js +32 -0
- package/dist/util/picking/fence.js +46 -0
- package/dist/util/picking/picker-displayer.js +139 -0
- package/dist/util/programs/draw-texture-on-canvas.js +89 -0
- package/dist/util/programs/index.js +17 -0
- package/dist/util/programs/shapesonglobe.js +214 -0
- package/dist/util/programs/supersampletotextures.js +113 -0
- package/dist/util/programs/texturetoglobe.js +182 -0
- package/dist/util/shaderfunctions/geometrytransformations.js +340 -0
- package/dist/util/shaderfunctions/index.js +18 -0
- package/dist/util/shaderfunctions/nodata.js +11 -0
- package/dist/util/shaderfunctions/noisefunctions.js +43 -0
- package/dist/util/surface-line-data/arc-bboxes.js +25 -0
- package/dist/util/surface-line-data/arcs-to-cuts.js +50 -0
- package/dist/util/surface-line-data/cut-arc.js +1 -0
- package/dist/util/surface-line-data/flow.js +28 -0
- package/dist/util/surface-line-data/rbush-manager.js +1 -0
- package/dist/util/surface-line-data/types.js +1 -0
- package/dist/util/surface-line-data/web-worker.js +1 -0
- package/dist/util/webglobe/gldefaultstates.js +7 -0
- package/dist/util/webglobe/index.js +18 -0
- package/dist/util/webglobe/rasteroverlay.js +78 -0
- package/dist/util/webglobjectbuilders.js +388 -0
- package/dist/util/webglobjectbuilders1.js +237 -0
- package/dist/waveparticles/adaptor.js +17 -0
- package/dist/waveparticles/index.js +10 -0
- package/dist/waveparticles/plugin.js +266 -0
- package/dist/wind/imagetovectorfieldandmagnitude.js +35 -0
- package/dist/wind/index.js +14 -0
- package/dist/wind/plugin.js +926 -0
- package/dist/wind/vectorfieldimage.js +25 -0
- package/dist/write-text/attached-text-writer.js +91 -0
- package/dist/write-text/context-text.js +98 -0
- package/dist/write-text/context-text3.js +155 -0
- package/dist/write-text/index.js +5 -0
- package/dist/write-text/writer-plugin.js +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Author: Toprak Nihat Deniz Ozturk
|
|
4
|
+
*/
|
|
5
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
const program_line_strip_1 = __importDefault(require("./program-line-strip"));
|
|
10
|
+
const programpoint_line_strip_1 = __importDefault(require("./programpoint-line-strip"));
|
|
11
|
+
/**
|
|
12
|
+
* @typedef {Float32Array} TimeTrackMultiColorData | A linestring is representation, let A{a1, a2, a3}, B{b1, b2} be the points of the line.
|
|
13
|
+
* TimeTrackMultiColorData is [
|
|
14
|
+
* a1x, a1y, a1z, a1time, a1r, a1g, a1b, a1time, a3time,
|
|
15
|
+
* a2x, a2y, a2z, a2time, a2r, a2g, a2b, a1time, a3time,
|
|
16
|
+
* a3x, a3y, a3z, a3time, a3r, a3g, a3b, a1time, a3time,
|
|
17
|
+
* NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN, NaN,
|
|
18
|
+
* b1x, b1y, b1z, b1time, b1r, b1g, b1b, b1time, b2time,
|
|
19
|
+
* b2x, b2y, b2z, b2time, b2r, b2g, b2b, BstartTime, BendTime
|
|
20
|
+
* ]
|
|
21
|
+
* there is a cutting point between A and B
|
|
22
|
+
*
|
|
23
|
+
* x, y is xy coordinates are in between 0, +1 for -180 to +180 longitude and -90 to +90 latitude
|
|
24
|
+
* z is height in meters
|
|
25
|
+
*/
|
|
26
|
+
/**
|
|
27
|
+
* Access following methods through `plugin.program.` :
|
|
28
|
+
* * setGamma
|
|
29
|
+
* * setExposure
|
|
30
|
+
* * setAlphaThreshold
|
|
31
|
+
* * setWeights
|
|
32
|
+
* * setHeadPercentage
|
|
33
|
+
* * setRouteAlpha
|
|
34
|
+
* * setFinalAlphaRatio
|
|
35
|
+
|
|
36
|
+
uses float32array in a * {@link TimeTrackMultiColorData} format
|
|
37
|
+
|
|
38
|
+
*/
|
|
39
|
+
class TimeTrackMultiColorPlugin {
|
|
40
|
+
/**
|
|
41
|
+
* @param {String} id
|
|
42
|
+
* @param {Object} options
|
|
43
|
+
* @param {TimeTrackMultiColorData} options.data {@link TimeTrackMultiColorData}
|
|
44
|
+
* @param {number} options.headPercentage 0 ~ 1
|
|
45
|
+
* @param {number} options.routeAlpha 0 ~ 1
|
|
46
|
+
* @param {Array.<Number>} options.weights [w1, w2, w3, w4, w5]
|
|
47
|
+
* @param {number} options.alphaThreshold 0 ~ 1
|
|
48
|
+
* @param {number} options.exposure 0 ~ inf
|
|
49
|
+
* @param {number} options.gamma 0 ~ inf
|
|
50
|
+
* @param {number} options.finalAlphaRatio 0 ~ 1
|
|
51
|
+
* @param {number} pointOptions.opacity 0 ~ 1
|
|
52
|
+
* @param {number} pointOptions.pointSize 0 ~ inf
|
|
53
|
+
* @param {boolean} pointOptions.isOn true | false
|
|
54
|
+
*/
|
|
55
|
+
constructor(id, options = {}, { opacity = 1.0, pointSize = 1, isOn = false } = {}) {
|
|
56
|
+
this.id = id;
|
|
57
|
+
this.globe = null;
|
|
58
|
+
this.gl = null;
|
|
59
|
+
this.program = null;
|
|
60
|
+
this._headTime = 0;
|
|
61
|
+
this._tailTime = 0;
|
|
62
|
+
this._data = options.data || null;
|
|
63
|
+
this._options = options;
|
|
64
|
+
this._pointOptions = { opacity, pointSize, isOn };
|
|
65
|
+
this.program = null;
|
|
66
|
+
this._transporArr = new Float32Array(3);
|
|
67
|
+
this._ready = false;
|
|
68
|
+
this.pointProgram = null;
|
|
69
|
+
this._attrBuffer = null;
|
|
70
|
+
}
|
|
71
|
+
// ----------------------------------
|
|
72
|
+
// --- user methods ---
|
|
73
|
+
// ----------------------------------
|
|
74
|
+
setHeadAndTailTime(headTime, tailTime) {
|
|
75
|
+
var _a;
|
|
76
|
+
this._headTime = headTime;
|
|
77
|
+
this._tailTime = tailTime;
|
|
78
|
+
// console.log("setHeadAndTailTime", headTime, tailTime);
|
|
79
|
+
(_a = this.pointProgram) === null || _a === void 0 ? void 0 : _a.setHeadTime(headTime);
|
|
80
|
+
this.globe.DrawRender();
|
|
81
|
+
}
|
|
82
|
+
setBlurWeights(weights) {
|
|
83
|
+
this.program.setBlurWeights(weights);
|
|
84
|
+
this.globe.DrawRender();
|
|
85
|
+
}
|
|
86
|
+
setHeadPercentage(headPercentage) {
|
|
87
|
+
this.program.setHeadPercentage(headPercentage);
|
|
88
|
+
this.globe.DrawRender();
|
|
89
|
+
}
|
|
90
|
+
setRouteAlpha(routeAlpha) {
|
|
91
|
+
this.program.setRouteAlpha(routeAlpha);
|
|
92
|
+
this.globe.DrawRender();
|
|
93
|
+
}
|
|
94
|
+
setFinalAlphaRatio(finalAlphaRatio) {
|
|
95
|
+
this.program.setFinalAlphaRatio(finalAlphaRatio);
|
|
96
|
+
this.globe.DrawRender();
|
|
97
|
+
}
|
|
98
|
+
setGamma(gamma) {
|
|
99
|
+
this.program.setGamma(gamma);
|
|
100
|
+
this.globe.DrawRender();
|
|
101
|
+
}
|
|
102
|
+
setExposure(exposure) {
|
|
103
|
+
this.program.setExposure(exposure);
|
|
104
|
+
this.globe.DrawRender();
|
|
105
|
+
}
|
|
106
|
+
setBlurRepetition(repetition) {
|
|
107
|
+
this.program.setBlurRepetition(repetition);
|
|
108
|
+
this.globe.DrawRender();
|
|
109
|
+
}
|
|
110
|
+
// ---------------point program setters-------------------
|
|
111
|
+
setPointOpacity(opacity) {
|
|
112
|
+
this._pointOptions.opacity = opacity;
|
|
113
|
+
if (this.pointProgram) {
|
|
114
|
+
this.pointProgram.setOpacity(opacity);
|
|
115
|
+
this.globe.DrawRender();
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
setPointSize(size) {
|
|
119
|
+
this._pointOptions.pointSize = size;
|
|
120
|
+
if (this.pointProgram) {
|
|
121
|
+
this.pointProgram.setPointSize(size);
|
|
122
|
+
this.globe.DrawRender();
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
pointSwitch(isOn) {
|
|
126
|
+
if (isOn && !this.pointProgram) {
|
|
127
|
+
this.pointProgram = this._createPointProgram();
|
|
128
|
+
}
|
|
129
|
+
else {
|
|
130
|
+
this._deletePointProgram();
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
// ------------------------------------------------------------
|
|
134
|
+
_createPointProgram() {
|
|
135
|
+
const { gl } = this;
|
|
136
|
+
const program = new programpoint_line_strip_1.default(gl, this.globe, this._attrBuffer, this._pointOptions);
|
|
137
|
+
program.setDrawCount(this._totalSize);
|
|
138
|
+
return program;
|
|
139
|
+
}
|
|
140
|
+
_deletePointProgram() {
|
|
141
|
+
if (this.pointProgram)
|
|
142
|
+
this.pointProgram.free();
|
|
143
|
+
this.pointProgram = null;
|
|
144
|
+
}
|
|
145
|
+
// -------------------------------------------------------------
|
|
146
|
+
isReady() {
|
|
147
|
+
return this._ready;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* @param {TimeTrackMultiColorData} data {@link TimeTrackMultiColorData}
|
|
151
|
+
* Check Class constructor
|
|
152
|
+
*/
|
|
153
|
+
setData(data) {
|
|
154
|
+
if (this.gl) {
|
|
155
|
+
this._ready = false;
|
|
156
|
+
this.setDataAsFloat32Array(data);
|
|
157
|
+
this._ready = true;
|
|
158
|
+
}
|
|
159
|
+
else {
|
|
160
|
+
this._data = data;
|
|
161
|
+
this._ready = false;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* @param {TimeTrackMultiColorData} data {@link TimeTrackMultiColorData}
|
|
166
|
+
* @param {number} totalSize | if not provided, it is calculated from float32Array.length / 9. Use if you want to draw first n points.
|
|
167
|
+
*/
|
|
168
|
+
setDataAsFloat32Array(data, totalSize = null) {
|
|
169
|
+
var _a;
|
|
170
|
+
const { gl, _attrBuffer } = this;
|
|
171
|
+
gl.bindBuffer(gl.ARRAY_BUFFER, _attrBuffer);
|
|
172
|
+
gl.bufferData(gl.ARRAY_BUFFER, data, gl.STATIC_DRAW);
|
|
173
|
+
gl.bindBuffer(gl.ARRAY_BUFFER, null);
|
|
174
|
+
// this.program.setInBuffer(data);
|
|
175
|
+
// this.pointProgram.setData(data);
|
|
176
|
+
if (totalSize) {
|
|
177
|
+
this._totalSize = totalSize;
|
|
178
|
+
}
|
|
179
|
+
else {
|
|
180
|
+
this._totalSize = data.length / 9;
|
|
181
|
+
}
|
|
182
|
+
this.program.setTotalLength(this._totalSize);
|
|
183
|
+
(_a = this.pointProgram) === null || _a === void 0 ? void 0 : _a.setDrawCount(this._totalSize / 2);
|
|
184
|
+
this._ready = true;
|
|
185
|
+
}
|
|
186
|
+
// ------------------------------
|
|
187
|
+
// --- globe Methods ---
|
|
188
|
+
// ------------------------------
|
|
189
|
+
draw3D(projMatrix, modelviewMatrix, transPos) {
|
|
190
|
+
var _a;
|
|
191
|
+
if (!this._ready)
|
|
192
|
+
return;
|
|
193
|
+
const { _headTime, _tailTime, program, _transporArr, globe } = this;
|
|
194
|
+
(_a = this.pointProgram) === null || _a === void 0 ? void 0 : _a.draw();
|
|
195
|
+
_transporArr.set([transPos.x, transPos.y, transPos.z], 0);
|
|
196
|
+
const geomType = globe.api_GetCurrentGeometry();
|
|
197
|
+
if (geomType === 0) {
|
|
198
|
+
program.draw(_headTime, _tailTime, projMatrix, modelviewMatrix, _transporArr);
|
|
199
|
+
}
|
|
200
|
+
else if (geomType === 1) {
|
|
201
|
+
const { width, height } = globe.api_GetCurrentWorldWH();
|
|
202
|
+
program.draw(_headTime, _tailTime, projMatrix, modelviewMatrix, _transporArr, [width, height]);
|
|
203
|
+
}
|
|
204
|
+
else {
|
|
205
|
+
console.error("Unknown geometry type", geomType);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
resize(width, height) {
|
|
209
|
+
const { program, globe } = this;
|
|
210
|
+
width = width || globe.api_ScrW();
|
|
211
|
+
height = height || globe.api_ScrH();
|
|
212
|
+
program.resize(width, height);
|
|
213
|
+
}
|
|
214
|
+
init(globe, gl) {
|
|
215
|
+
var _a;
|
|
216
|
+
this.globe = globe;
|
|
217
|
+
this.gl = gl;
|
|
218
|
+
this._attrBuffer = gl.createBuffer();
|
|
219
|
+
this.program = new program_line_strip_1.default(gl, this._attrBuffer, globe.api_ScrW(), globe.api_ScrH(), this._options);
|
|
220
|
+
if ((_a = this._pointOptions) === null || _a === void 0 ? void 0 : _a.isOn)
|
|
221
|
+
this.pointProgram = new programpoint_line_strip_1.default(gl, globe, this._attrBuffer);
|
|
222
|
+
// this.pointProgram.setAttrBuffer(_attrBuffer);
|
|
223
|
+
this.setGeometry();
|
|
224
|
+
if (this._data) {
|
|
225
|
+
this._ready = true;
|
|
226
|
+
this.setDataAsFloat32Array(this._data);
|
|
227
|
+
this._data = null;
|
|
228
|
+
}
|
|
229
|
+
this.resize();
|
|
230
|
+
}
|
|
231
|
+
free() {
|
|
232
|
+
const { gl, _attrBuffer } = this;
|
|
233
|
+
this.program.free();
|
|
234
|
+
gl.deleteBuffer(_attrBuffer);
|
|
235
|
+
}
|
|
236
|
+
setGeometry() {
|
|
237
|
+
const { globe, program } = this;
|
|
238
|
+
program.setIs3D(globe.api_GetCurrentGeometry() === 0);
|
|
239
|
+
}
|
|
240
|
+
// ----------------------------------
|
|
241
|
+
// --- implicit methods ---
|
|
242
|
+
// ----------------------------------
|
|
243
|
+
_latLongToPixelXY(latitude, longitude) {
|
|
244
|
+
return {
|
|
245
|
+
x: (longitude + 180) / 360,
|
|
246
|
+
y: (90 - latitude) / 180
|
|
247
|
+
};
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
exports.default = TimeTrackMultiColorPlugin;
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Author: Toprak Nihat Deniz Ozturk
|
|
4
|
+
*/
|
|
5
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
7
|
+
};
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
const program_1 = __importDefault(require("./program"));
|
|
10
|
+
const programpoint_1 = __importDefault(require("./programpoint"));
|
|
11
|
+
/**
|
|
12
|
+
* @typedef {Float32Array} TimeTrackMultiColorData | A linestring is representation, let A{a1, a2, a3}, B{b1, b2} be the points of the line.
|
|
13
|
+
* TimeTrackMultiColorData is [
|
|
14
|
+
* a1x, a1y, a1z, a1time, a1r, a1g, a1b, a1time, a3time, a2x, a2y, a2z, a2time, a2r, a2g, a2b, a1time, a3time,
|
|
15
|
+
* a2x, a2y, a2z, a2time, a2r, a2g, a2b, a1time, a3time, a3x, a3y, a3z, a3time, a3r, a3g, a3b, a1time, a3time,
|
|
16
|
+
* b1x, b1y, b1z, b1time, b1r, b1g, b1b, b1time, b2time, b2x, b2y, b2z, b2time, b2r, b2g, b2b, BstartTime, BendTime
|
|
17
|
+
* ]
|
|
18
|
+
* As you can see, the middle points of a line is repeated.
|
|
19
|
+
* Start Time is the first time of the line, End Time is the last time of the line.
|
|
20
|
+
* startTime of A = a1time, endTime time of A = a3time
|
|
21
|
+
* Check Adaptor to create TimeTrackMultiColorData. import {Adaptor} from '.';
|
|
22
|
+
*/
|
|
23
|
+
/**
|
|
24
|
+
* Access following methods through `plugin.program.` :
|
|
25
|
+
* * setGamma
|
|
26
|
+
* * setExposure
|
|
27
|
+
* * setAlphaThreshold
|
|
28
|
+
* * setWeights
|
|
29
|
+
* * setHeadPercentage
|
|
30
|
+
* * setRouteAlpha
|
|
31
|
+
* * setFinalAlphaRatio
|
|
32
|
+
|
|
33
|
+
uses float32array in a * {@link TimeTrackMultiColorData} format
|
|
34
|
+
|
|
35
|
+
*/
|
|
36
|
+
class TimeTrackMultiColorPlugin {
|
|
37
|
+
/**
|
|
38
|
+
* @param {String} id
|
|
39
|
+
* @param {Object} options
|
|
40
|
+
* @param {TimeTrackMultiColorData} options.data {@link TimeTrackMultiColorData}
|
|
41
|
+
* @param {number} options.headPercentage 0 ~ 1
|
|
42
|
+
* @param {number} options.routeAlpha 0 ~ 1
|
|
43
|
+
* @param {Array.<Number>} options.weights [w1, w2, w3, w4, w5]
|
|
44
|
+
* @param {number} options.alphaThreshold 0 ~ 1
|
|
45
|
+
* @param {number} options.exposure 0 ~ inf
|
|
46
|
+
* @param {number} options.gamma 0 ~ inf
|
|
47
|
+
* @param {number} options.finalAlphaRatio 0 ~ 1
|
|
48
|
+
* @param {number} pointOptions.opacity 0 ~ 1
|
|
49
|
+
* @param {number} pointOptions.pointSize 0 ~ inf
|
|
50
|
+
* @param {boolean} pointOptions.isOn true | false
|
|
51
|
+
*/
|
|
52
|
+
constructor(id, options = {}, { opacity = 1.0, pointSize = 1, isOn = false } = {}) {
|
|
53
|
+
this.id = id;
|
|
54
|
+
this.globe = null;
|
|
55
|
+
this.gl = null;
|
|
56
|
+
this.program = null;
|
|
57
|
+
this._headTime = 0;
|
|
58
|
+
this._tailTime = 0;
|
|
59
|
+
this._data = options.data || null;
|
|
60
|
+
this._options = options;
|
|
61
|
+
this._pointOptions = { opacity, pointSize, isOn };
|
|
62
|
+
this.program = null;
|
|
63
|
+
this._transporArr = new Float32Array(3);
|
|
64
|
+
this._ready = false;
|
|
65
|
+
this.pointProgram = null;
|
|
66
|
+
this._attrBuffer = null;
|
|
67
|
+
}
|
|
68
|
+
// ----------------------------------
|
|
69
|
+
// --- user methods ---
|
|
70
|
+
// ----------------------------------
|
|
71
|
+
setHeadAndTailTime(headTime, tailTime) {
|
|
72
|
+
var _a;
|
|
73
|
+
this._headTime = headTime;
|
|
74
|
+
this._tailTime = tailTime;
|
|
75
|
+
(_a = this.pointProgram) === null || _a === void 0 ? void 0 : _a.setHeadTime(headTime);
|
|
76
|
+
this.globe.DrawRender();
|
|
77
|
+
}
|
|
78
|
+
setGlow(isGlow) {
|
|
79
|
+
this.program.setGlow(isGlow);
|
|
80
|
+
this.globe.DrawRender();
|
|
81
|
+
}
|
|
82
|
+
setPremultipliedAlpha(isPremultiplied) {
|
|
83
|
+
this.program.setPremultipliedAlpha(isPremultiplied);
|
|
84
|
+
this.globe.DrawRender();
|
|
85
|
+
}
|
|
86
|
+
setBlurWeights(weights) {
|
|
87
|
+
this.program.setBlurWeights(weights);
|
|
88
|
+
this.globe.DrawRender();
|
|
89
|
+
}
|
|
90
|
+
setHeadPercentage(headPercentage) {
|
|
91
|
+
this.program.setHeadPercentage(headPercentage);
|
|
92
|
+
this.globe.DrawRender();
|
|
93
|
+
}
|
|
94
|
+
setRouteAlpha(routeAlpha) {
|
|
95
|
+
this.program.setRouteAlpha(routeAlpha);
|
|
96
|
+
this.globe.DrawRender();
|
|
97
|
+
}
|
|
98
|
+
setFinalAlphaRatio(finalAlphaRatio) {
|
|
99
|
+
this.program.setFinalAlphaRatio(finalAlphaRatio);
|
|
100
|
+
this.globe.DrawRender();
|
|
101
|
+
}
|
|
102
|
+
setGamma(gamma) {
|
|
103
|
+
this.program.setGamma(gamma);
|
|
104
|
+
this.globe.DrawRender();
|
|
105
|
+
}
|
|
106
|
+
setExposure(exposure) {
|
|
107
|
+
this.program.setExposure(exposure);
|
|
108
|
+
this.globe.DrawRender();
|
|
109
|
+
}
|
|
110
|
+
setBlurRepetition(repetition) {
|
|
111
|
+
this.program.setBlurRepetition(repetition);
|
|
112
|
+
this.globe.DrawRender();
|
|
113
|
+
}
|
|
114
|
+
setAlphaThreshold(alphaThreshold) {
|
|
115
|
+
this.program.setAlphaThreshold(alphaThreshold);
|
|
116
|
+
this.globe.DrawRender();
|
|
117
|
+
}
|
|
118
|
+
// ---------------point program setters-------------------
|
|
119
|
+
setPointOpacity(opacity) {
|
|
120
|
+
this._pointOptions.opacity = opacity;
|
|
121
|
+
if (this.pointProgram) {
|
|
122
|
+
this.pointProgram.setOpacity(opacity);
|
|
123
|
+
this.globe.DrawRender();
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
setPointSize(size) {
|
|
127
|
+
this._pointOptions.pointSize = size;
|
|
128
|
+
if (this.pointProgram) {
|
|
129
|
+
this.pointProgram.setPointSize(size);
|
|
130
|
+
this.globe.DrawRender();
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
pointSwitch(isOn) {
|
|
134
|
+
if (isOn && !this.pointProgram) {
|
|
135
|
+
this.pointProgram = this._createPointProgram();
|
|
136
|
+
}
|
|
137
|
+
else {
|
|
138
|
+
this._deletePointProgram();
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
// ------------------------------------------------------------
|
|
142
|
+
_createPointProgram() {
|
|
143
|
+
const { gl } = this;
|
|
144
|
+
const program = new programpoint_1.default(gl, this.globe, this._attrBuffer, this._pointOptions);
|
|
145
|
+
program.setDrawCount(this._totalSize / 2);
|
|
146
|
+
return program;
|
|
147
|
+
}
|
|
148
|
+
_deletePointProgram() {
|
|
149
|
+
if (this.pointProgram)
|
|
150
|
+
this.pointProgram.free();
|
|
151
|
+
this.pointProgram = null;
|
|
152
|
+
}
|
|
153
|
+
// -------------------------------------------------------------
|
|
154
|
+
isReady() {
|
|
155
|
+
return this._ready;
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* @param {TimeTrackMultiColorData} data {@link TimeTrackMultiColorData}
|
|
159
|
+
* Check Class constructor
|
|
160
|
+
*/
|
|
161
|
+
setData(data) {
|
|
162
|
+
if (this.gl) {
|
|
163
|
+
this._ready = false;
|
|
164
|
+
this.setDataAsFloat32Array(data);
|
|
165
|
+
this._ready = true;
|
|
166
|
+
}
|
|
167
|
+
else {
|
|
168
|
+
this._data = data;
|
|
169
|
+
this._ready = false;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* @param {TimeTrackMultiColorData} data {@link TimeTrackMultiColorData}
|
|
174
|
+
* @param {number} totalSize | if not provided, it is calculated from float32Array.length / 9. Use if you want to draw first n points.
|
|
175
|
+
*/
|
|
176
|
+
setDataAsFloat32Array(data, totalSize = null) {
|
|
177
|
+
var _a;
|
|
178
|
+
const { gl, _attrBuffer } = this;
|
|
179
|
+
gl.bindBuffer(gl.ARRAY_BUFFER, _attrBuffer);
|
|
180
|
+
gl.bufferData(gl.ARRAY_BUFFER, data, gl.STATIC_DRAW);
|
|
181
|
+
gl.bindBuffer(gl.ARRAY_BUFFER, null);
|
|
182
|
+
// this.program.setInBuffer(data);
|
|
183
|
+
// this.pointProgram.setData(data);
|
|
184
|
+
if (totalSize) {
|
|
185
|
+
this._totalSize = totalSize;
|
|
186
|
+
}
|
|
187
|
+
else {
|
|
188
|
+
this._totalSize = data.length / 9;
|
|
189
|
+
}
|
|
190
|
+
this.program.setTotalLength(this._totalSize);
|
|
191
|
+
(_a = this.pointProgram) === null || _a === void 0 ? void 0 : _a.setDrawCount(this._totalSize / 2);
|
|
192
|
+
this._ready = true;
|
|
193
|
+
}
|
|
194
|
+
// ------------------------------
|
|
195
|
+
// --- globe Methods ---
|
|
196
|
+
// ------------------------------
|
|
197
|
+
draw3D(projMatrix, modelviewMatrix, transPos) {
|
|
198
|
+
var _a;
|
|
199
|
+
if (!this._ready)
|
|
200
|
+
return;
|
|
201
|
+
const { _headTime, _tailTime, program, _transporArr, globe } = this;
|
|
202
|
+
(_a = this.pointProgram) === null || _a === void 0 ? void 0 : _a.draw();
|
|
203
|
+
_transporArr.set([transPos.x, transPos.y, transPos.z], 0);
|
|
204
|
+
const geomType = globe.api_GetCurrentGeometry();
|
|
205
|
+
if (geomType === 0) {
|
|
206
|
+
program.draw(_headTime, _tailTime, projMatrix, modelviewMatrix, _transporArr);
|
|
207
|
+
}
|
|
208
|
+
else if (geomType === 1) {
|
|
209
|
+
const { width, height } = globe.api_GetCurrentWorldWH();
|
|
210
|
+
program.draw(_headTime, _tailTime, projMatrix, modelviewMatrix, _transporArr, [width, height]);
|
|
211
|
+
}
|
|
212
|
+
else {
|
|
213
|
+
console.error("Unknown geometry type", geomType);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
resize(width, height) {
|
|
217
|
+
const { program, globe } = this;
|
|
218
|
+
width = width || globe.api_ScrW();
|
|
219
|
+
height = height || globe.api_ScrH();
|
|
220
|
+
program.resize(width, height);
|
|
221
|
+
}
|
|
222
|
+
init(globe, gl) {
|
|
223
|
+
var _a;
|
|
224
|
+
this.globe = globe;
|
|
225
|
+
this.gl = gl;
|
|
226
|
+
this._attrBuffer = gl.createBuffer();
|
|
227
|
+
this.program = new program_1.default(gl, this._attrBuffer, globe.api_ScrW(), globe.api_ScrH(), this._options);
|
|
228
|
+
if ((_a = this._pointOptions) === null || _a === void 0 ? void 0 : _a.isOn)
|
|
229
|
+
this.pointProgram = new programpoint_1.default(gl, globe, this._attrBuffer);
|
|
230
|
+
// this.pointProgram.setAttrBuffer(_attrBuffer);
|
|
231
|
+
this.setGeometry();
|
|
232
|
+
if (this._data) {
|
|
233
|
+
this._ready = true;
|
|
234
|
+
this.setDataAsFloat32Array(this._data);
|
|
235
|
+
this._data = null;
|
|
236
|
+
}
|
|
237
|
+
this.resize();
|
|
238
|
+
}
|
|
239
|
+
free() {
|
|
240
|
+
const { gl, _attrBuffer } = this;
|
|
241
|
+
this.program.free();
|
|
242
|
+
gl.deleteBuffer(_attrBuffer);
|
|
243
|
+
}
|
|
244
|
+
setGeometry() {
|
|
245
|
+
const { globe, program } = this;
|
|
246
|
+
program.setIs3D(globe.api_GetCurrentGeometry() === 0);
|
|
247
|
+
}
|
|
248
|
+
// ----------------------------------
|
|
249
|
+
// --- implicit methods ---
|
|
250
|
+
// ----------------------------------
|
|
251
|
+
_latLongToPixelXY(latitude, longitude) {
|
|
252
|
+
return {
|
|
253
|
+
x: (longitude + 180) / 360,
|
|
254
|
+
y: (90 - latitude) / 180
|
|
255
|
+
};
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
exports.default = TimeTrackMultiColorPlugin;
|