-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathconvert.js
240 lines (205 loc) · 6.62 KB
/
convert.js
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
114
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
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
/**
* Copyright 2012-2020, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
var isNumeric = require('fast-isnumeric');
var Lib = require('../../lib');
var BADNUM = require('../../constants/numerical').BADNUM;
var geoJsonUtils = require('../../lib/geojson_utils');
var Colorscale = require('../../components/colorscale');
var Drawing = require('../../components/drawing');
var makeBubbleSizeFn = require('../scatter/make_bubble_size_func');
var subTypes = require('../scatter/subtypes');
module.exports = function convert(gd, calcTrace) {
var trace = calcTrace[0].trace;
var isVisible = trace.visible === true && trace._length !== 0;
var hasMarkers = subTypes.hasMarkers(trace);
var hasCircles = hasMarkers && trace.marker.symbol === 'circle';
var circle = initContainer();
var circleCluster = initClusterContainer();
var circleClusterCount = initClusterCountContainer();
var opts = {
circle: {
circle: circle,
cluster: circleCluster,
clusterCount: circleClusterCount,
},
};
// early return if not visible or placeholder
if(!isVisible) return opts;
if(hasCircles) {
var circleOpts = makeCircleOpts(calcTrace);
circle.geojson = circleOpts.geojson;
circle.layout.visibility = 'visible';
circleCluster.maxZoom = trace.cluster.maxZoom;
circleCluster.radius = trace.cluster.radius;
circleCluster.steps = trace.cluster.steps;
circleCluster.stepColors = trace.cluster.stepColors;
circleCluster.stepSize = trace.cluster.stepSize;
circleCluster.layout.visibility = 'visible';
circleClusterCount.layout.visibility = 'visible';
Lib.extendFlat(circle.paint, {
'circle-color': circleOpts.mcc,
'circle-radius': circleOpts.mrc,
'circle-opacity': circleOpts.mo,
});
Lib.extendFlat(circleCluster.paint, {
'circle-color': createCircleColor(
circleCluster.steps,
circleCluster.stepColors
),
'circle-radius': createRadius(
circleCluster.steps,
circleCluster.stepSize
),
});
}
return opts;
};
function initContainer() {
return {
geojson: geoJsonUtils.makeBlank(),
layout: { visibility: 'none' },
paint: {},
filter: ['!', ['has', 'point_count']],
};
}
function initClusterContainer() {
return {
maxZoom: 14,
radius: 50,
paint: {
'circle-color': '#51bbd6',
'circle-radius': 20,
},
filter: ['has', 'point_count'],
layout: { visibility: 'none' },
};
}
function initClusterCountContainer() {
return {
filter: ['has', 'point_count'],
layout: {
'text-field': '{point_count_abbreviated}',
'text-font': ['DIN Offc Pro Medium', 'Arial Unicode MS Bold'],
'text-size': 12,
visibility: 'none',
},
};
}
function createCircleColor(steps, stepColors) {
var isArray =
Lib.isArrayOrTypedArray(steps) && Lib.isArrayOrTypedArray(stepColors);
if(isArray) {
var colorArray = ['step', ['get', 'point_count'], stepColors[0]];
for(var idx = 1; idx < stepColors.length; idx++) {
colorArray.push(steps[idx - 1], stepColors[idx]);
}
return colorArray;
} else {
return stepColors;
}
}
function createRadius(steps, stepSize) {
var isArray =
Lib.isArrayOrTypedArray(steps) && Lib.isArrayOrTypedArray(stepSize);
if(isArray) {
var sizeArray = ['step', ['get', 'point_count'], stepSize[0]];
for(var idx = 1; idx < stepSize.length; idx++) {
sizeArray.push(steps[idx - 1], stepSize[idx]);
}
return sizeArray;
} else {
return stepSize;
}
}
function makeCircleOpts(calcTrace) {
var trace = calcTrace[0].trace;
var marker = trace.marker;
var selectedpoints = trace.selectedpoints;
var arrayColor = Lib.isArrayOrTypedArray(marker.color);
var arraySize = Lib.isArrayOrTypedArray(marker.size);
var arrayOpacity = Lib.isArrayOrTypedArray(marker.opacity);
var i;
function addTraceOpacity(o) {
return trace.opacity * o;
}
function size2radius(s) {
return s / 2;
}
var colorFn;
if(arrayColor) {
if(Colorscale.hasColorscale(trace, 'marker')) {
colorFn = Colorscale.makeColorScaleFuncFromTrace(marker);
} else {
colorFn = Lib.identity;
}
}
var sizeFn;
if(arraySize) {
sizeFn = makeBubbleSizeFn(trace);
}
var opacityFn;
if(arrayOpacity) {
opacityFn = function(mo) {
var mo2 = isNumeric(mo) ? +Lib.constrain(mo, 0, 1) : 0;
return addTraceOpacity(mo2);
};
}
var features = [];
for(i = 0; i < calcTrace.length; i++) {
var calcPt = calcTrace[i];
var lonlat = calcPt.lonlat;
if(isBADNUM(lonlat)) continue;
var props = {};
if(colorFn) props.mcc = calcPt.mcc = colorFn(calcPt.mc);
if(sizeFn) props.mrc = calcPt.mrc = sizeFn(calcPt.ms);
if(opacityFn) props.mo = opacityFn(calcPt.mo);
if(selectedpoints) props.selected = calcPt.selected || 0;
features.push({
id: i,
type: 'Feature',
geometry: { type: 'Point', coordinates: lonlat },
properties: props,
});
}
var fns;
if(selectedpoints) {
fns = Drawing.makeSelectedPointStyleFns(trace);
for(i = 0; i < features.length; i++) {
var d = features[i].properties;
if(fns.selectedOpacityFn) {
d.mo = addTraceOpacity(fns.selectedOpacityFn(d));
}
if(fns.selectedColorFn) {
d.mcc = fns.selectedColorFn(d);
}
if(fns.selectedSizeFn) {
d.mrc = fns.selectedSizeFn(d);
}
}
}
return {
geojson: { type: 'FeatureCollection', features: features },
mcc:
arrayColor || (fns && fns.selectedColorFn) ?
{ type: 'identity', property: 'mcc' } :
marker.color,
mrc:
arraySize || (fns && fns.selectedSizeFn) ?
{ type: 'identity', property: 'mrc' } :
size2radius(marker.size),
mo:
arrayOpacity || (fns && fns.selectedOpacityFn) ?
{ type: 'identity', property: 'mo' } :
addTraceOpacity(marker.opacity),
};
}
// only need to check lon (OR lat)
function isBADNUM(lonlat) {
return lonlat[0] === BADNUM;
}