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
1
vote
1 answer

How do I make Kepler GL use a local MBTiles Server for base maps instead of online maps?

I have an MBTile Server running on my local machine as a service for an offline web app. We use this to serve base maps in an offline environment. I'm exploring broadening the scope of the web app to include Kepler GL functionality. What file(s)…
1
vote
1 answer

How to port data from BigQuery into a ReactJS webpack app already deployed on Google App Engine

I have successfully managed to deploy an app based on kepler.gl on Google App Engine with some sample data (based on the vis academy tutorial). What I would like is to be able to get data from Big Query and pass that as the source data. I've tried…
1
vote
1 answer

How to improve performance of keplergl?

Is there a way to improve the performance of keplergl by deactivate some features not required in the use-case? Ideas: Remove the side bar (not just hiding but that it's not loaded at all) Disable object interactivity (hover/click effects) on high…
jofri
  • 131
  • 1
  • 16
1
vote
2 answers

How to hide Side Panel and the add data popup when the map is created?

Trying to create a Kepler.gl map and passing dynamic data and do some actions on the map, I followed this tutorial and added data layers and everything working with the data, but now I need to hide the Side Panel on creating the map how can I do…
Fadi
  • 2,320
  • 8
  • 38
  • 77
1
vote
1 answer

How to use the new H3 layer

I've checked out the newest code in the github master branch of kepler.gl and I'm running the demo. But I don't see the H3HexGrid layer option. How do I use it? The git commits seem to indicate it can be used in the demo app. Also how do I load…
1
vote
2 answers

Is there any examples on how to export the final visualization as a static map or an animated video in kepler-gl?

Using kepler.gl, a user can drag and drop a CSV or GeoJSON file into the browser, visualize it with different map layers, explore it by filtering and aggregating it, and eventually export the final visualization as a static map or an animated…
Alex Kornakov
  • 313
  • 2
  • 14
1
vote
1 answer

Where can I get support or ask questions on kepler.gl?

Bugs and feature requests go to the GitHub repository (https://github.com/uber/kepler.gl), where can I ask questions or get support on kepler.gl?
sirhc
  • 6,097
  • 2
  • 26
  • 29
0
votes
1 answer

Keplergl react duplicates Layers upon adding more datasets got from supabase

I'm trying to visualize data from supabase onto KeplerGl map but KeplerGl keeps on duplicating layers upon adding new data to the map. When I set keepExistingConfig: false it wipes all the existing layers and adds the last fetched datasets. I…
isaac
  • 19
  • 5
0
votes
0 answers

Kepler.gl change text label position

I am adding an icon layer to the keplergl map. Sometimes I have 2 or more icons overlapping. the problem is that the text labels are overlapping too. How can I access the text labels and change its position accordingly? I tried to change the offset…
jana
  • 1
  • 2
0
votes
0 answers

plotting heatmaps with kepler.gl

I have a pandas DataFrame with the following schema: zip_name: string zip_code_geom: string score: double I am attempting to plot a heatmap with score as the scale. How do I modify the following code to produce a heatmap visualization in…
kms
  • 1,810
  • 1
  • 41
  • 92
0
votes
0 answers

Can Kepler.gl be used with Angular?

I've tried to find a solution of using kepler.gl in Angular but have not had the luck of finding one that works. I'm curious if anyone can link me to a working demo/example. I found this: Can Kepler.gl be used with Angular.js? and I know the…
0
votes
2 answers

Convert KeplerGl html file to iframe

I have created a map using KeplerGl in Databricks. I saved the file using: map_1._repr_html_().decode("utf-8") I opened the html file in a text editor to find the iframe information, but it didn't exist. I then tried some of the src links in the…
0
votes
0 answers

Save KeplerGL to html with data urls instead of embedded data

Let's say I want to export a Kepler map but I don't want the data embedded in the html file, I want the browser to download the layers from alternate URLs. Is that possible? I can put URLs in the data dictionary like…
Dean MacGregor
  • 11,847
  • 9
  • 34
  • 72
0
votes
0 answers

what are the parameters required to dispatch onLayerHover action in Kepler.gl

I have a list with name of places that are displayed as icons in kepler.gl.When user hover over the list i want to change color of that property like we hover over icon the color changes. I tried dispatch(onLayerClick({ info: property)), but it…
0
votes
0 answers

Is it possible to use keplergl without Mapbox?

I want to do some spatiotemporal data analysis with kepler. As the data is confidential and also huge, I cannot upload it to the demo site. I tried installing keplergl locally but it needs a Mapbox Access Token (which I think is paid). Is there a…