Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lixun910 committed Oct 17, 2023
1 parent 69ffe31 commit 1988d6e
Show file tree
Hide file tree
Showing 16 changed files with 666 additions and 433 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -887,6 +887,10 @@ export default function LayerConfiguratorFactory(
);
}

_renderGeoarrowLayerConfig(props) {
return this._renderGeojsonLayerConfig(props);
}

_render3DLayerConfig({layer, visConfiguratorProps}) {
return (
<Fragment>
Expand Down
1 change: 1 addition & 0 deletions src/constants/src/layers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,7 @@ export const LAYER_TYPES = keyMirror({
grid: null,
hexagon: null,
geojson: null,
geoarrow: null,
cluster: null,
icon: null,
heatmap: null,
Expand Down
215 changes: 215 additions & 0 deletions src/layers/src/arrow-layer/arrow-layer.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
// Copyright (c) 2023 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import uniq from 'lodash.uniq';
import {DATA_TYPES} from 'type-analyzer';
import {Feature} from 'geojson';

import {BinaryFeatures} from '@loaders.gl/schema';
import {GeoJsonLayer as DeckGLGeoJsonLayer} from '@deck.gl/layers';
import {
GEOJSON_FIELDS,
HIGHLIGH_COLOR_3D,
CHANNEL_SCALES,
ColorRange,
LAYER_VIS_CONFIGS
} from '@kepler.gl/constants';
import {
VisConfigNumber,
VisConfigColorSelect,
VisConfigColorRange,
VisConfigRange,
VisConfigBoolean,
Merge,
RGBColor
} from '@kepler.gl/types';
import {KeplerTable} from '@kepler.gl/table';
import { DataContainerInterface, getBinaryGeometriesFromGeoArrowPolygon } from '@kepler.gl/utils';

import Layer, {
colorMaker,
LayerBaseConfig,
LayerBaseConfigPartial,
LayerColorConfig,
LayerColumn,
LayerHeightConfig,
LayerRadiusConfig,
LayerSizeConfig,
LayerStrokeColorConfig
} from '../base-layer';
import {
getGeojsonDataMaps,
getGeojsonBounds,
getGeojsonFeatureTypes,
GeojsonDataMaps
} from '../geojson-layer/geojson-utils';
import GeoJsonLayer, {SUPPORTED_ANALYZER_TYPES} from '../geojson-layer/geojson-layer';

export default class ArrowLayer extends GeoJsonLayer {
dataToFeature: BinaryFeatures[];

// constructor
constructor(props) {
super(props);

this.dataToFeature = [];
}

static findDefaultLayerProps({label, metadata, fields = []}: KeplerTable) {
const geojsonColumns = fields
.filter(f => f.type === 'geojson' && SUPPORTED_ANALYZER_TYPES[f.analyzerType])
.map(f => f.name);

const defaultColumns = {
geojson: uniq([...GEOJSON_FIELDS.geojson, ...geojsonColumns])
};

const foundColumns = this.findDefaultColumnField(defaultColumns, fields);
if (!foundColumns || !foundColumns.length || metadata.format !== 'arrow') {
return {props: []};
}

return {
props: foundColumns.map(columns => ({
label: (typeof label === 'string' && label.replace(/\.[^/.]+$/, '')) || this.type,
columns,
isVisible: true
}))
};
}

get type() {
return ArrowLayer.type;
}
static get type() {
return 'geoarrow';
}

get name() {
return 'GeoArrow';
}

calculateDataAttribute({dataContainer, filteredIndex}, getPosition) {
// TODO: filter arrow table using predicate
// filteredIndex.map(i => this.dataToFeature[i]).filter(d => d);
return this.dataToFeature;
}

updateLayerMeta(dataContainer: DataContainerInterface) {
const {geojson} = this.config.columns;
const geoColumn = dataContainer.getColumn(geojson.fieldIdx);

// create binary data from arrow data for GeoJsonLayer
const {binaryGeometries, bounds, featureTypes} = getBinaryGeometriesFromGeoArrowPolygon(
geoColumn
);
this.dataToFeature = binaryGeometries;

const fixedRadius = false;
this.updateMeta({bounds, fixedRadius, featureTypes});
}

renderLayer(opts) {
const {data, gpuFilter, objectHovered, mapState, interactionConfig} = opts;

const {fixedRadius, featureTypes} = this.meta;
const radiusScale = this.getRadiusScaleByZoom(mapState, fixedRadius);
const zoomFactor = this.getZoomFactor(mapState);
const eleZoomFactor = this.getElevationZoomFactor(mapState);

const {visConfig} = this.config;

const layerProps = {
lineWidthScale: visConfig.thickness * zoomFactor * 8,
elevationScale: visConfig.elevationScale * eleZoomFactor,
pointRadiusScale: radiusScale,
lineMiterLimit: 4
};

const updateTriggers = {
...this.getVisualChannelUpdateTriggers(),
getFilterValue: gpuFilter.filterValueUpdateTriggers
};

const defaultLayerProps = this.getDefaultDeckLayerProps(opts);
const opaOverwrite = {
opacity: visConfig.strokeOpacity
};

const pickable = interactionConfig.tooltip.enabled;
const hoveredObject = this.hasHoveredObject(objectHovered);

const deckLayers = data.data.map((d, i) => {
return new DeckGLGeoJsonLayer({
...defaultLayerProps,
...layerProps,
...data,
data: d,
id: `${this.id}-${i}`,
pickable,
highlightColor: HIGHLIGH_COLOR_3D,
autoHighlight: visConfig.enable3d && pickable,
stroked: visConfig.stroked,
filled: visConfig.filled,
extruded: visConfig.enable3d,
wireframe: visConfig.wireframe,
wrapLongitude: false,
lineMiterLimit: 2,
capRounded: true,
jointRounded: true,
updateTriggers,
_subLayerProps: {
...(featureTypes?.polygon ? {'polygons-stroke': opaOverwrite} : {}),
...(featureTypes?.line ? {linestrings: opaOverwrite} : {}),
...(featureTypes?.point
? {
points: {
lineOpacity: visConfig.strokeOpacity
}
}
: {})
}
});
});
return [
...deckLayers,
// hover layer
...(hoveredObject && !visConfig.enable3d
? [
new DeckGLGeoJsonLayer({
...this.getDefaultHoverLayerProps(),
...layerProps,
visible: defaultLayerProps.visible,
wrapLongitude: false,
data: [hoveredObject],
getLineWidth: data.getLineWidth,
getPointRadius: data.getPointRadius,
getElevation: data.getElevation,
getLineColor: this.config.highlightColor,
getFillColor: this.config.highlightColor,
// always draw outline
stroked: true,
filled: false
})
]
: [])
];
}
}
Loading

0 comments on commit 1988d6e

Please sign in to comment.