Questions tagged [geoplot]

29 questions
0
votes
0 answers

How to utilize matlab to plot a zoomed in map of a region?

Here is a code I have come across that can plot the map of a country in latitude-longitude coordinate system using matlab: GT = readgeotable("landareas.shp"); australia = GT(GT.Name == "Australia",:); shape = australia.Shape; cities =…
Rebel
  • 472
  • 8
  • 25
0
votes
1 answer

Geoplot Choropleth map - AttributeError: 'Point' object has no attribute 'exterior'

I am trying to create a choropleth map using Geoplot. The data comes in the form of a CSV and I am trying to create a choropleth map of a grid created over a specific area, in this case over the Tampa Florida region. I am wanting the final map to…
Sven D
  • 11
  • 2
0
votes
1 answer

Getting NameError: name 'GL_POINT_SMOOTH' is not defined error while creating plot using Geoplotlib

I am trying to create a Dot Map using geoplotlib and getting the following error: Traceback (most recent call last): File "/Users/abc/opt/anaconda3/lib/python3.9/site-packages/geoplotlib/__init__.py", line 32, in _runapp app.start() File…
0
votes
1 answer

use `sf` to plot state map (of Germany) according to variable

I'm new to geoplotting and I want to use sf to plot a map of Germany on the state level, with state values colored by a variable in a separate data set. How do I best go about this? I have loaded the data and the sf object like…
Ivo
  • 3,890
  • 5
  • 22
  • 53
0
votes
0 answers

Embedding KDE plot on PyQt5 though Geoplot library

I want to embed Kernel Density Estimation plot on PyQt5 GUI using Geoplot library. I found out how to embed simple matplot through canvas and followed same steps for KDE plot but all in vain. GUI opens but doesn't embed KDE. When I close qt GUI, the…
B B
  • 1
  • 2
0
votes
0 answers

How can I add two columns of data to the 'hue' section on Geoplot-Geopandas for a cartogram map?

Having trouble selecting 'male' and 'female' for hue when creating a cartogram with geoplot (using geopandas). I have only managed to select the total population but I would like to compare the state populations of male to female. I understand that…
0
votes
1 answer

Issues Using geoplot.kdeplot with geopandas

Im trying to make a kdeplot using geopandas. this is my code: Downloading shape file URL = "https://data.sfgov.org/api/geospatial/wkhw-cjsf?method=export&format=Shapefile" response = requests.get(URL) open('pd_data.zip',…
0
votes
0 answers

Plot terrain deformation over geomap

I'm trying to plot the deformation of the terrain like in this image floor deformation I've tried with geoplot but I only get the map and none of the data. The deformation is in matrix form. I'm fairly new to Matlab so I would appreciate any advice…
Gero
  • 1
0
votes
1 answer

How to display groundtrackplotter's plot like widget with QT library in Python

We develop app which should display earth map with satellite and satellite track. That's how plot looks like We are using python and PySide6.QT for UI manipulation, for earth map plot with satellite we are using GroundTrackPotter. That library…
Treskow43
  • 3
  • 2
0
votes
1 answer

Can't install geoplot package

I'm trying to install geoplot package for a few hours now but I can't understand why I can't do it. I saw several links in here just saying "only use conda and it will work" but neither conda install -c conda-forge geoplot or pip install geoplot are…
Pedro de Sá
  • 760
  • 6
  • 19
0
votes
2 answers

Geoplot not displaying x,y axis python

I'm trying to use geoplot to draw a heatmap of crime distribution in San Francisco county. The problem is when I used the dataset from geoplot to draw the map of SF, the x,y axes do not appear. I'm using this map for my final presentation, so I…
Kosher
  • 23
  • 4
0
votes
1 answer

Nice geospatial plot in python

Would anyone know how the following plot was generated, and if there's any way to do it in python? I couldn't find anything like this in geoplot or geopandas. local US pop density as peaks
tarquaeron
  • 21
  • 3
0
votes
1 answer

What is the ratio of plotly marker size to the area of a plotly geoplot?

geoplot with constant marker size data table I have data of wild fires in the US with co-ordinates and their respective size in ACRES. So far I have been able to plot this with a constant marker size, say equal to 1. The problem is, some of the…
Ciaran101
  • 1
  • 1
0
votes
2 answers

how to install geoplot on google colab

How can we install geoplot in google colab? !pip install geoplot The above gives Collecting geoplot Using cached…
1
2