StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
630 B
18 lines
630 B
// @flow
|
|
|
|
/**
|
|
* The maximum value of a coordinate in the internal tile coordinate system. Coordinates of
|
|
* all source features normalized to this extent upon load.
|
|
*
|
|
* The value is a consequence of the following:
|
|
*
|
|
* * Vertex buffer store positions as signed 16 bit integers.
|
|
* * One bit is lost for signedness to support tile buffers.
|
|
* * One bit is lost because the line vertex buffer used to pack 1 bit of other data into the int.
|
|
* * One bit is lost to support features extending past the extent on the right edge of the tile.
|
|
* * This leaves us with 2^13 = 8192
|
|
*
|
|
* @private
|
|
* @readonly
|
|
*/
|
|
export default 8192;
|
|
|