Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gallery example showing usage of polygon objects from a geopandas.GeoDataFrame (choropleth map) #2796

Merged
merged 19 commits into from
Nov 10, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions examples/gallery/lines/polygons.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
"""
Filled polygons
michaelgrund marked this conversation as resolved.
Show resolved Hide resolved
===============

The :meth:`pygmt.Figure.plot` method allows us to plot geographical data such
as polygons which are stored in a :class:`geopandas.GeoDataFrame` object. Use
:func:`geopandas.read_file` to load data from any supported OGR format such as
a shapefile (.shp), GeoJSON (.geojson), geopackage (.gpkg), etc. You can also
use a full URL pointing to your desired data source. Then, pass the
:class:`geopandas.GeoDataFrame` as an argument to the ``data`` parameter in
michaelgrund marked this conversation as resolved.
Show resolved Hide resolved
:meth:`pygmt.Figure.plot`, and style the geometry using the ``pen`` parameter.
To fill the polygons based on a corresponding column you need to set
``fill="+z"```as well as select the appropriate column using the ``aspatial``
michaelgrund marked this conversation as resolved.
Show resolved Hide resolved
parameter as shown in the example below.
"""

import geopandas as gpd
import numpy as np
import pygmt

# Read polygon data using geopandas
gdf = gpd.read_file("https://geodacenter.github.io/data-and-lab//data/airbnb.zip")
# Automatically get min/max coordinates of polygon set
bounds = gdf.total_bounds
# Define an edge in degrees to add in each direction to the min/max coordinates
edge = 0.02

fig = pygmt.Figure()

fig.coast(
region=[bounds[0] - edge, bounds[2] + edge, bounds[1] - edge, bounds[3] + edge],
projection="M10c",
frame=["af", "+tPopulation of Chicago"],
water="lightblue",
land="gray70",
shorelines="1/1p,gray70",
)
michaelgrund marked this conversation as resolved.
Show resolved Hide resolved

# The dataset contains different parameters, here we select
# the "population" column to plot.

# First, we define the colormap to fill the polygons based on
# only the "population" column.
michaelgrund marked this conversation as resolved.
Show resolved Hide resolved
pygmt.makecpt(
cmap="acton",
series=[np.min(gdf["population"]), np.max(gdf["population"]), 10],
michaelgrund marked this conversation as resolved.
Show resolved Hide resolved
continuous=True,
reverse=True,
)

# Next, we plot the polygons and fill them using the defined
# colormap. The target column is defined by the aspatial
# parameter.
fig.plot(
data=gdf[["population", "geometry"]],
pen="0.3p,gray10",
close=True,
fill="+z",
cmap=True,
aspatial="Z=population",
)


# Add colorbar legend
fig.colorbar(frame="x+lPopulation")

fig.show()