Questions tagged [kepler.gl]

Kepler.gl is a powerful open source geospatial analysis tool for large-scale data sets. It's also a React component on npm that leverages Redux to store state.

Find out more over at http://kepler.gl or by the engineering blog post.

Please use this tag to ask questions about kepler.gl .

81 questions
0
votes
1 answer

Kepler.GL: support for raster tile layer

My requirement is to render both the vector data (CSV, geoJson) and the raster images (WMS or png) on the map. User would then be able to annotate such data with point or polygons. Such rendering should work as jupyter-lab extension and…
Sandeep G B
  • 3,957
  • 4
  • 26
  • 43
0
votes
1 answer

Can Kepler.gl be used with Angular.js?

I was planning to use Kepler.gl in my Angular.js project. However, I haven't been able to find any supporting documents, tutorials or any other material to use Kepler.gl along with Angular.js. Can Kepler.gl be used with Angular.js? If yes, can you…
Akhil Kintali
  • 496
  • 2
  • 11
  • 27
0
votes
1 answer

Trying to create a control panel (radius, upper percentile...) for deckgl hexagon layer

Im using the hexagon layer example from deck.gl as my base and trying to find a way to include a control panel similar to their online website https://deck.gl/examples/hexagon-layer/ import React from 'react'; import {render} from…
divy
  • 1
0
votes
1 answer

Interactive graphs in python

I just had to move from R to Python due to in Python there is a powerful library that I need. However, these days have been a nightmare with python. The topic of the libraries, see the functions, the bunch of IDEs and the visualization is by far…
Orlando G
  • 307
  • 3
  • 11
0
votes
1 answer

How to toggle layer visibilty in kepler.gl react.js?

I have added a layer in my React app with kepler.gl. But the visibility of the layer is turned off. I can manually toggle the visibility in the map but not able to do so using React. This is my config which I am passing in addDataToMap: …
Abhishek Balani
  • 3,827
  • 2
  • 24
  • 34
0
votes
1 answer

changing state of kepler.gl on a button click

I am working on kepler.gl . i am trying to add another point on map and change the state of kepler.gl on a button click . I mean when i click the button another point is mapped on keppler.gl map . wright now i am having 4 point on the kepler.gl map…
Ali Raza
  • 148
  • 2
  • 12
0
votes
2 answers

how to read data from json file an plot it in kepler.gl using React

I am working on kepler.gl .... wright now i am reading data from an api and plot that data in keplr.gl and that's working fine here is the code ... import keplerGlReducer from "kepler.gl/reducers"; import { createStore, combineReducers,…
Ali Raza
  • 148
  • 2
  • 12
0
votes
1 answer

How create a HexagonLayer with log size scale

I've created a layer in 3D that render and works perfectly. I want to create a HexagonLayer where his elevation will be based on SUM of all volumes that I think I'm doing correctly. But I don't know do that size scale should by log as you can see…
Javier
  • 1,975
  • 3
  • 24
  • 46
0
votes
2 answers

H3 index (resolution 8) and kepler.gl maping issue

I am trying to map the attached h3index dataset in kepler.gl. I've used the following scala function to generate these at a resolution index of 8. val geoToH3 = udf{ (latitude: Double, longitude: Double, resolution: Int) => …
0
votes
1 answer

Discrepancy between Kepler GL coordinates and Google Maps

I'm trying to create a map layer with a point in https://kepler.gl/demo, but I'm facing that the coordinates that I'm using are rendering differently in Google Maps and in Kepler GL. This is the geojson that I am loading in kepler gl: { "type":…
Gonzalo Santiago
  • 338
  • 3
  • 16
0
votes
1 answer

how to mapbox-gl expressions unique ID style settings

I have a question about what is wrong with the Mapbox-gl vector tile style configuration. I want to express 5 colors uniquely for the ID column. example Data structure id : 0 => 2 data id : 1 => 7 data id : 2 => 10 data ... The value of this ID is…
이승현
  • 3
  • 2
0
votes
1 answer

How to remove all map layers from kepler.gl dynamically?

I have added a div and dropdwn, on each option I have uploaded geojson data using addDatatoMap in reactjs . On each time I selected the option , this uploaded the respective layer , But I am not able to remove the previous layers, So any code or…
0
votes
1 answer

Converting CSV to Geojson with LineStrings

I'm new to geospatial data and need a way to get data out of a CSV in this format: Latitude, Longitude, Altitude, Timestamp, Trip Identifier and into a geojson suitable for kepler.gl with their specified format: { "type": "FeatureCollection", …
JamesE
  • 1
  • 2
0
votes
1 answer

How to set a custom mapbox token for Kepler in python/jupyter notebook?

My kepler maps stopped rendering in Jupyter notebooks, and I suspect it's because I ran out of requests for the free public mapbox token - I think so because if I try to use mapbox tiles from folium I get an empty map, but if I use OSM tiles…
Alexvonrass
  • 330
  • 2
  • 12
0
votes
1 answer

request rendering of new frames in kepler.gl

how can I request the rendering of a new frame in kepler.gl? I created an animated deck.gl layer, like the one in the vis.academy tutorial: http://vis.academy/#/custom-layers/5-custom-uniform and I also successfully integrated that layer with…
jaronimoe
  • 595
  • 1
  • 6
  • 12