Mapping Tasiyagnunpa (Western Meadowlark) migration¶
Introduction to vector data operations
Tasiyagnunpa (or Western Meadowlark, or sturnella neglecta) migrates each year to next on the Great Plains in the United States. Using crowd-sourced observations of these birds, we can see that migration happening throughout the year.
Read more about the Lakota connection to Tasiyagnunpa from Native Sun News Today
Set up your reproducible workflow¶
Import Python libraries¶
We will be getting data from a source called GBIF (Global Biodiversity
Information Facility). We need a package called
pygbif
to access the data, which is not included in your environment.
Install it by running the cell below:
%%bash
pip install pygbif
Requirement already satisfied: pygbif in /opt/conda/lib/python3.11/site-packages (0.6.4) Requirement already satisfied: requests>2.7 in /opt/conda/lib/python3.11/site-packages (from pygbif) (2.31.0) Requirement already satisfied: requests-cache in /opt/conda/lib/python3.11/site-packages (from pygbif) (1.2.0) Requirement already satisfied: geojson-rewind in /opt/conda/lib/python3.11/site-packages (from pygbif) (1.1.0) Requirement already satisfied: geomet in /opt/conda/lib/python3.11/site-packages (from pygbif) (1.1.0) Requirement already satisfied: appdirs>=1.4.3 in /opt/conda/lib/python3.11/site-packages (from pygbif) (1.4.4) Requirement already satisfied: matplotlib in /opt/conda/lib/python3.11/site-packages (from pygbif) (3.8.4) Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/lib/python3.11/site-packages (from requests>2.7->pygbif) (3.3.2) Requirement already satisfied: idna<4,>=2.5 in /opt/conda/lib/python3.11/site-packages (from requests>2.7->pygbif) (3.7) Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/lib/python3.11/site-packages (from requests>2.7->pygbif) (2.2.1) Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/lib/python3.11/site-packages (from requests>2.7->pygbif) (2024.2.2) Requirement already satisfied: click in /opt/conda/lib/python3.11/site-packages (from geomet->pygbif) (8.1.7) Requirement already satisfied: contourpy>=1.0.1 in /opt/conda/lib/python3.11/site-packages (from matplotlib->pygbif) (1.2.0) Requirement already satisfied: cycler>=0.10 in /opt/conda/lib/python3.11/site-packages (from matplotlib->pygbif) (0.11.0) Requirement already satisfied: fonttools>=4.22.0 in /opt/conda/lib/python3.11/site-packages (from matplotlib->pygbif) (4.51.0) Requirement already satisfied: kiwisolver>=1.3.1 in /opt/conda/lib/python3.11/site-packages (from matplotlib->pygbif) (1.4.4) Requirement already satisfied: numpy>=1.21 in /opt/conda/lib/python3.11/site-packages (from matplotlib->pygbif) (1.24.3) Requirement already satisfied: packaging>=20.0 in /opt/conda/lib/python3.11/site-packages (from matplotlib->pygbif) (24.0) Requirement already satisfied: pillow>=8 in /opt/conda/lib/python3.11/site-packages (from matplotlib->pygbif) (10.3.0) Requirement already satisfied: pyparsing>=2.3.1 in /opt/conda/lib/python3.11/site-packages (from matplotlib->pygbif) (3.0.9) Requirement already satisfied: python-dateutil>=2.7 in /opt/conda/lib/python3.11/site-packages (from matplotlib->pygbif) (2.9.0) Requirement already satisfied: attrs>=21.2 in /opt/conda/lib/python3.11/site-packages (from requests-cache->pygbif) (23.2.0) Requirement already satisfied: cattrs>=22.2 in /opt/conda/lib/python3.11/site-packages (from requests-cache->pygbif) (23.2.3) Requirement already satisfied: platformdirs>=2.5 in /opt/conda/lib/python3.11/site-packages (from requests-cache->pygbif) (4.2.0) Requirement already satisfied: url-normalize>=1.4 in /opt/conda/lib/python3.11/site-packages (from requests-cache->pygbif) (1.4.3) Requirement already satisfied: six>=1.5 in /opt/conda/lib/python3.11/site-packages (from python-dateutil>=2.7->matplotlib->pygbif) (1.16.0)
Your Task: Import packages
Add imports for packages that will help you:
- Work with tabular data
- Work with geospatial vector data
- Make an interactive plot of tabular and/or vector data
import calendar
import os
import pathlib
import requests
import time
import zipfile
from getpass import getpass
from glob import glob
import cartopy.crs as ccrs
import geopandas as gpd
import hvplot.pandas
import pandas as pd
import panel as pn
import pygbif.occurrences as occ
import pygbif.species as species
Create a folder for your data¶
For this challenge, you will need to save some data to your computer. We
suggest saving to somewhere in your home folder
(e.g. /home/username
), rather than to your GitHub repository, since
data files can easily become too large for GitHub.
Warning
The home directory is different for every user! Your home directory probably won’t exist on someone else’s computer. Make sure to use code like
pathlib.Path.home()
to compute the home directory on the computer the code is running on. This is key to writing reproducible and interoperable code.
Your Task: Create a project folder
The code below will help you get started with making a project directory
- Replace
'your-project-directory-name-here'
and'your-gbif-data-directory-name-here'
with descriptive names- Run the cell
- (OPTIONAL) Check in the terminal that you created the directory using the command
ls ~/earth-analytics/data
# Create data directory in the home folder
data_dir = os.path.join(
# Home directory
pathlib.Path.home(),
# Earth analytics data directory
'earth-analytics',
'data',
# Project directory
'species-distribution',
)
os.makedirs(data_dir, exist_ok=True)
# Define the directory name for GBIF data
gbif_dir = os.path.join(data_dir, 'western-meadowlark')
Define your study area – the ecoregions of North America¶
Track observations of Taciyagnunpa across the different ecoregions of North America! You should be able to see changes in the number of observations in each ecoregion throughout the year.
Download and save ecoregion boundaries¶
Your Task
- Find the URL for for the level III ecoregion boundaries. You can get ecoregion boundaries from the Environmental Protection Agency (EPA)..
- Replace
your/url/here
with the URL you found, making sure to format it so it is easily readable.- Change all the variable names to descriptive variable names
- Run the cell to download and save the data.
# Set up the ecoregions level III boundary URL
ecoregions_url = ("https://gaftp.epa.gov/EPADataCommons/ORD/Ecoregions/cec_na/NA_CEC_Eco_Level3.zip")
# Set up a path to save the data on your machine
ecoregions_path = os.path.join(data_dir, 'NA_CEC_Eco_Level3.zip')
# Don't download twice
if not os.path.exists(ecoregions_path):
# Download, and don't check the certificate for the EPA
ecoregions_response = requests.get(ecoregions_url, verify=False)
# Save the binary data to a file
with open(ecoregions_path, 'wb') as ecoregions_file:
ecoregions_file.write(ecoregions_response.content)
Load the ecoregions into Python¶
Your task
Download and save ecoregion boundaries from the EPA:
- Replace
a_path
with the path your created for your ecoregions file.- (optional) Consider renaming and selecting columns to make your
GeoDataFrame
easier to work with.- Make a quick plot with
.plot()
to make sure the download worked.- Run the cell to load the data into Python
# Open up the ecoregions boundaries
ecoregions_gdf = (
gpd.read_file(ecoregions_path)
.rename(columns={
'NA_L3NAME': 'name',
'Shape_Area': 'area'})
[['name', 'area', 'geometry']]
)
# Name the index so it will match the other data later on
ecoregions_gdf.index.name = 'ecoregion'
# Plot the ecoregions to check download
ecoregions_gdf.plot(edgecolor='black', color='skyblue')
<Axes: >
Create a simplified GeoDataFrame
for plotting¶
Plotting larger files can be time consuming. The code below will
streamline plotting with hvplot
by simplifying the geometry,
projecting it to a Mercator projection that is compatible with
geoviews
, and cropping off areas in the Arctic.
Your task
Download and save ecoregion boundaries from the EPA:
- Make a copy of your ecoregions
GeoDataFrame
with the.copy()
method, and save it to another variable name. Make sure to do everything else in this cell with your new copy!- Simplify the ecoregions with
.simplify(1000)
, and save it back to thegeometry
column.- Change the Coordinate Reference System (CRS) to Mercator with
.to_crs(ccrs.Mercator())
- Use the plotting code in the cell to check that the plotting runs quickly and looks the way you want, making sure to change
gdf
to YOURGeoDataFrame
name.
# Make a copy of the ecoregions
ecoregions_plot_gdf = ecoregions_gdf.copy()
# Simplify the geometry to speed up processing
ecoregions_plot_gdf.geometry = ecoregions_plot_gdf.simplify (1000)
# Change the CRS to Mercator for mapping
ecoregions_plot_gdf = ecoregions_plot_gdf.to_crs(ccrs.Mercator())
# Check that the plot runs
ecoregions_plot_gdf.hvplot(geo=True, crs=ccrs.Mercator())
Access locations and times of Tasiyagnunpa encounters¶
For this challenge, you will use a database called the Global Biodiversity Information Facility (GBIF). GBIF is compiled from species observation data all over the world, and includes everything from museum specimens to photos taken by citizen scientists in their backyards.
Your task: Explore GBIF
Before your get started, go to the GBIF occurrences search page and explore the data.
Contribute to open data
You can get your own observations added to GBIF using iNaturalist!
Register and log in to GBIF¶
You will need a GBIF account to complete this challenge. You can use your GitHub account to authenticate with GBIF. Then, run the following code to save your credentials on your computer.
Tip
If you accidentally enter your credentials wrong, you can set
reset_credentials=True
instead ofreset_credentials=False
reset_credentials = True
# GBIF needs a username, password, and email
credentials = dict(
GBIF_USER=(input, 'GBIF username:'),
GBIF_PWD=(getpass, 'GBIF password'),
GBIF_EMAIL=(input, 'GBIF email'),
)
for env_variable, (prompt_func, prompt_text) in credentials.items():
# Delete credential from environment if requested
if reset_credentials and (env_variable in os.environ):
os.environ.pop(env_variable)
# Ask for credential and save to environment
if not env_variable in os.environ:
os.environ[env_variable] = prompt_func(prompt_text)
Get the species key¶
Your task
- Replace the
species_name
with the name of the species you want to look up- Run the code to get the species key
# Query species
#sturnella neglecta 9596413
species_info = species.name_lookup('sturnella neglecta', rank='SPECIES')
# Get the first result
first_result = species_info['results'][0]
# Get the species key (nubKey)
species_key = first_result['nubKey']
# Check the result
first_result['species'], species_key
('Sturnella neglecta', 9596413)
Download data from GBIF¶
Your task
Replace
csv_file_pattern
with a string that will match any.csv
file when used in theglob
function. HINT: the character*
represents any number of any values except the file separator (e.g./
)Add parameters to the GBIF download function,
occ.download()
to limit your query to:
- Sturnella Neglecta observations
- in north america (
NORTH_AMERICA
)- from 2023
- with spatial coordinates.
Then, run the download. This can take a few minutes.
# Only download once
gbif_pattern = os.path.join(gbif_dir, '*.csv')
if not glob(gbif_pattern):
# Submit query to GBIF
gbif_query = occ.download([
"continent = NORTH_AMERICA",
"speciesKey = 9596413",
"hasCoordinate = TRUE",
"year = 2023",
])
download_key = gbif_query[0]
# Wait for the download to build
if not 'GBIF_DOWNLOAD_KEY' in os.environ:
os.environ['GBIF_DOWNLOAD_KEY'] = gbif_query[0]
# Wait for the download to build
wait = occ.download_meta(download_key)['status']
while not wait=='SUCCEEDED':
wait = occ.download_meta(download_key)['status']
time.sleep(5)
# Download GBIF data
download_info = occ.download_get(
os.environ['GBIF_DOWNLOAD_KEY'],
path=data_dir)
# Unzip GBIF data
with zipfile.ZipFile(download_info['path']) as download_zip:
download_zip.extractall(path=gbif_dir)
# Find the extracted .csv file path (take the first result)
gbif_path = glob(gbif_pattern)[0]
Load the GBIF data into Python¶
Your task
- Look at the beginning of the file you downloaded using the code below. What do you think the delimiter is?
- Run the following code cell. What happens?
- Uncomment and modify the parameters of
pd.read_csv()
below until your data loads successfully and you have only the columns you want.
You can use the following code to look at the beginning of your file:
!head $gbif_path
gbifID datasetKey occurrenceID kingdom phylum class order family genus species infraspecificEpithet taxonRank scientificName verbatimScientificName verbatimScientificNameAuthorship countryCode locality stateProvince occurrenceStatus individualCount publishingOrgKey decimalLatitude decimalLongitude coordinateUncertaintyInMeters coordinatePrecision elevation elevationAccuracy depth depthAccuracy eventDate day month year taxonKey speciesKey basisOfRecord institutionCode collectionCode catalogNumber recordNumber identifiedBy dateIdentified license rightsHolder recordedBy typeStatus establishmentMeans lastInterpreted mediaType issue 4080519055 50c9509d-22c7-4a22-a47d-8c48425ef4a7 https://www.inaturalist.org/observations/153874459 Animalia Chordata Aves Passeriformes Icteridae Sturnella Sturnella neglecta SPECIES Sturnella neglecta Audubon, 1844 Sturnella neglecta US South Dakota PRESENT 28eb1a3f-1c15-4a95-931a-4af90ecb574d 44.221653 -100.325294 173.0 2023-04-07T16:10 7 4 2023 9596413 9596413 HUMAN_OBSERVATION iNaturalist Observations 153874459 Anne C Lewis 2023-04-08T00:07:27 CC_BY_4_0 Anne C Lewis Anne C Lewis 2024-06-04T02:40:05.518Z Sound;StillImage COORDINATE_ROUNDED;CONTINENT_DERIVED_FROM_COORDINATES;TAXON_MATCH_TAXON_ID_IGNORED 4153878536 50c9509d-22c7-4a22-a47d-8c48425ef4a7 https://www.inaturalist.org/observations/171482434 Animalia Chordata Aves Passeriformes Icteridae Sturnella Sturnella neglecta SPECIES Sturnella neglecta Audubon, 1844 Sturnella neglecta CA Alberta PRESENT 28eb1a3f-1c15-4a95-931a-4af90ecb574d 52.31746 -112.749192 31.0 2023-07-06T18:42 6 7 2023 9596413 9596413 HUMAN_OBSERVATION iNaturalist Observations 171482434 Addy 2023-07-07T00:53:32 CC_BY_NC_4_0 Addy Addy 2024-06-04T02:01:37.328Z StillImage COORDINATE_ROUNDED;CONTINENT_DERIVED_FROM_COORDINATES;TAXON_MATCH_TAXON_ID_IGNORED 4177554103 50c9509d-22c7-4a22-a47d-8c48425ef4a7 https://www.inaturalist.org/observations/178543066 Animalia Chordata Aves Passeriformes Icteridae Sturnella Sturnella neglecta SPECIES Sturnella neglecta Audubon, 1844 Sturnella neglecta US California PRESENT 28eb1a3f-1c15-4a95-931a-4af90ecb574d 37.547789 -122.090256 2023-02-16T08:35 16 2 2023 9596413 9596413 HUMAN_OBSERVATION iNaturalist Observations 178543066 3Daoist 2023-08-15T15:36:51 CC_BY_NC_4_0 3Daoist 3Daoist 2024-06-04T02:01:07.771Z StillImage CONTINENT_DERIVED_FROM_COORDINATES;TAXON_MATCH_TAXON_ID_IGNORED 4096512028 50c9509d-22c7-4a22-a47d-8c48425ef4a7 https://www.inaturalist.org/observations/155848540 Animalia Chordata Aves Passeriformes Icteridae Sturnella Sturnella neglecta SPECIES Sturnella neglecta Audubon, 1844 Sturnella neglecta CA British Columbia PRESENT 28eb1a3f-1c15-4a95-931a-4af90ecb574d 50.027678 -119.292601 488.0 2023-04-15T09:54 15 4 2023 9596413 9596413 HUMAN_OBSERVATION iNaturalist Observations 155848540 byngbirder 2023-04-21T04:27:36 CC_BY_NC_4_0 byngbirder byngbirder 2024-06-04T01:56:38.560Z StillImage COORDINATE_ROUNDED;CONTINENT_DERIVED_FROM_COORDINATES;TAXON_MATCH_TAXON_ID_IGNORED 4133856189 50c9509d-22c7-4a22-a47d-8c48425ef4a7 https://www.inaturalist.org/observations/166194056 Animalia Chordata Aves Passeriformes Icteridae Sturnella Sturnella neglecta SPECIES Sturnella neglecta Audubon, 1844 Sturnella neglecta US Wyoming PRESENT 28eb1a3f-1c15-4a95-931a-4af90ecb574d 43.267307 -109.008132 27505.0 2023-05-28T09:49 28 5 2023 9596413 9596413 HUMAN_OBSERVATION iNaturalist Observations 166194056 Jozef K. Richards 2023-06-08T05:12:38 CC_BY_NC_4_0 Jozef K. Richards Jozef K. Richards 2024-06-04T01:59:13.377Z StillImage;StillImage;StillImage;StillImage;StillImage COORDINATE_ROUNDED;CONTINENT_DERIVED_FROM_COORDINATES;TAXON_MATCH_TAXON_ID_IGNORED 4440811308 50c9509d-22c7-4a22-a47d-8c48425ef4a7 https://www.inaturalist.org/observations/190841531 Animalia Chordata Aves Passeriformes Icteridae Sturnella Sturnella neglecta SPECIES Sturnella neglecta Audubon, 1844 Sturnella neglecta US California PRESENT 28eb1a3f-1c15-4a95-931a-4af90ecb574d 34.443248 -119.847947 2023-11-12T09:14 12 11 2023 9596413 9596413 HUMAN_OBSERVATION iNaturalist Observations 190841531 Brenna Farrell 2023-11-13T05:53:36 CC_BY_NC_4_0 photobarry photobarry 2024-06-04T02:03:31.512Z StillImage COORDINATE_ROUNDED;CONTINENT_DERIVED_FROM_COORDINATES;TAXON_MATCH_TAXON_ID_IGNORED 4431251106 50c9509d-22c7-4a22-a47d-8c48425ef4a7 https://www.inaturalist.org/observations/188601025 Animalia Chordata Aves Passeriformes Icteridae Sturnella Sturnella neglecta SPECIES Sturnella neglecta Audubon, 1844 Sturnella neglecta US California PRESENT 28eb1a3f-1c15-4a95-931a-4af90ecb574d 37.951847 -122.36988 4406.0 2023-10-22T15:36:54 22 10 2023 9596413 9596413 HUMAN_OBSERVATION iNaturalist Observations 188601025 Bridget Spencer 2023-10-23T00:29:30 CC_BY_NC_4_0 Cat Chang Cat Chang 2024-06-04T02:44:47.177Z StillImage COORDINATE_ROUNDED;CONTINENT_DERIVED_FROM_COORDINATES;TAXON_MATCH_TAXON_ID_IGNORED 4111794027 50c9509d-22c7-4a22-a47d-8c48425ef4a7 https://www.inaturalist.org/observations/159552443 Animalia Chordata Aves Passeriformes Icteridae Sturnella Sturnella neglecta SPECIES Sturnella neglecta Audubon, 1844 Sturnella neglecta US California PRESENT 28eb1a3f-1c15-4a95-931a-4af90ecb574d 35.127509 -119.842036 2023-04-22T06:52 22 4 2023 9596413 9596413 HUMAN_OBSERVATION iNaturalist Observations 159552443 Tony Iwane 2023-05-04T00:40:24 CC_BY_NC_4_0 Tony Iwane Tony Iwane 2024-06-04T02:36:14.254Z StillImage;StillImage COORDINATE_ROUNDED;CONTINENT_DERIVED_FROM_COORDINATES;TAXON_MATCH_TAXON_ID_IGNORED 4080465071 50c9509d-22c7-4a22-a47d-8c48425ef4a7 https://www.inaturalist.org/observations/153876348 Animalia Chordata Aves Passeriformes Icteridae Sturnella Sturnella neglecta SPECIES Sturnella neglecta Audubon, 1844 Sturnella neglecta US Colorado PRESENT 28eb1a3f-1c15-4a95-931a-4af90ecb574d 39.879453 -105.161594 2023-04-07T15:13 7 4 2023 9596413 9596413 HUMAN_OBSERVATION iNaturalist Observations 153876348 David Martin 2023-04-08T00:28:42 CC_BY_NC_4_0 David Martin David Martin 2024-06-04T02:40:27.251Z StillImage COORDINATE_ROUNDED;CONTINENT_DERIVED_FROM_COORDINATES;TAXON_MATCH_TAXON_ID_IGNORED
# Load the GBIF data
gbif_df = pd.read_csv(
gbif_path,
delimiter='\t',
index_col='gbifID',
usecols=['gbifID', 'decimalLatitude', 'decimalLongitude', 'month'])
gbif_df.head()
decimalLatitude | decimalLongitude | month | |
---|---|---|---|
gbifID | |||
4080519055 | 44.221653 | -100.325294 | 4 |
4153878536 | 52.317460 | -112.749192 | 7 |
4177554103 | 37.547789 | -122.090256 | 2 |
4096512028 | 50.027678 | -119.292601 | 4 |
4133856189 | 43.267307 | -109.008132 | 5 |
Convert the GBIF data to a GeoDataFrame¶
To plot the GBIF data, we need to convert it to a GeoDataFrame
first.
Your task
- Replace
your_dataframe
with the name of theDataFrame
you just got from GBIF- Replace
longitude_column_name
andlatitude_column_name
with column names from your `DataFrame- Run the code to get a
GeoDataFrame
of the GBIF data.
gbif_gdf = (
gpd.GeoDataFrame(
gbif_df,
geometry=gpd.points_from_xy(
gbif_df.decimalLongitude,
gbif_df.decimalLatitude),
crs="EPSG:4326")
# Select the desired columns
[['month', 'geometry']]
)
gbif_gdf
month | geometry | |
---|---|---|
gbifID | ||
4080519055 | 4 | POINT (-100.32529 44.22165) |
4153878536 | 7 | POINT (-112.74919 52.31746) |
4177554103 | 2 | POINT (-122.09026 37.54779) |
4096512028 | 4 | POINT (-119.29260 50.02768) |
4133856189 | 5 | POINT (-109.00813 43.26731) |
... | ... | ... |
4785881507 | 7 | POINT (-105.12453 40.48007) |
4803069647 | 10 | POINT (-116.22467 44.95731) |
4691566229 | 2 | POINT (-101.92973 32.28879) |
4749228865 | 5 | POINT (-110.70243 45.05272) |
4728942742 | 9 | POINT (-113.71798 50.56525) |
249051 rows × 2 columns
Count the number of observations in each ecosystem, during each month of 2023¶
Identify the ecoregion for each observation¶
You can combine the ecoregions and the observations spatially using
a method called .sjoin()
, which stands for spatial join.
Further reading
Check out the
geopandas
documentation on spatial joins to help you figure this one out. You can also ask your favorite LLM (Large-Language Model, like ChatGPT)
Your task
- Identify the correct values for the
how=
andpredicate=
parameters of the spatial join.- Select only the columns you will need for your plot.
- Run the code.
gbif_ecoregion_gdf = (
ecoregions_gdf
# Match the CRS of the GBIF data and the ecoregions
.to_crs(gbif_gdf.crs)
# Find ecoregion for each observation
.sjoin(
gbif_gdf,
how='inner',
predicate='contains')
# Select the required columns
[['month', 'name']]
)
gbif_ecoregion_gdf
month | name | |
---|---|---|
ecoregion | ||
57 | 6 | Thompson-Okanogan Plateau |
57 | 9 | Thompson-Okanogan Plateau |
57 | 6 | Thompson-Okanogan Plateau |
57 | 6 | Thompson-Okanogan Plateau |
57 | 9 | Thompson-Okanogan Plateau |
... | ... | ... |
2545 | 6 | Eastern Cascades Slopes and Foothills |
2545 | 6 | Eastern Cascades Slopes and Foothills |
2545 | 5 | Eastern Cascades Slopes and Foothills |
2545 | 5 | Eastern Cascades Slopes and Foothills |
2545 | 4 | Eastern Cascades Slopes and Foothills |
248068 rows × 2 columns
Count the observations in each ecoregion each month¶
Your task:
- Replace
columns_to_group_by
with a list of columns. Keep in mind that you will end up with one row for each group – you want to count the observations in each ecoregion by month.- Select only month/ecosystem combinations that have more than one occurrence recorded, since a single occurrence could be an error.
- Use the
.groupby()
and.mean()
methods to compute the mean occurrences by ecoregion and by month.- Run the code – it will normalize the number of occurrences by month and ecoretion.
occurrence_df = (
gbif_ecoregion_gdf
# For each ecoregion, for each month...
.groupby(['ecoregion', 'month'])
# ...count the number of occurrences
.agg(occurrences=('name', 'count'))
)
# Get rid of rare observations (possible misidentification?)
occurrence_df = occurrence_df[occurrence_df.occurrences>1]
# Take the mean by ecoregion
mean_occurrences_by_ecoregion = (
occurrence_df
.groupby(['ecoregion'])
.mean()
)
# Take the mean by month
mean_occurrences_by_month = (
occurrence_df
.groupby(['month'])
.mean()
)
# Normalize the observations by the monthly mean throughout the year
occurrence_df['norm_occurrences'] = (
occurrence_df
/ mean_occurrences_by_ecoregion
/ mean_occurrences_by_month
)
occurrence_df
occurrences | norm_occurrences | ||
---|---|---|---|
ecoregion | month | ||
57 | 3 | 132 | 0.003020 |
4 | 397 | 0.004641 | |
5 | 660 | 0.004941 | |
6 | 481 | 0.005170 | |
7 | 182 | 0.003507 | |
... | ... | ... | ... |
2545 | 8 | 76 | 0.003036 |
9 | 63 | 0.002618 | |
10 | 78 | 0.002695 | |
11 | 45 | 0.001367 | |
12 | 61 | 0.001663 |
983 rows × 2 columns
Plot the Tasiyagnunpa observations by month¶
Your task
- If applicable, replace any variable names with the names you defined previously.
- Replace
column_name_used_for_ecoregion_color
andcolumn_name_used_for_slider
with the column names you wish to use.- Customize your plot with your choice of title, tile source, color map, and size.
# Join the occurrences with the plotting GeoDataFrame
occurrence_gdf = ecoregions_plot_gdf.join(occurrence_df)
# Get the plot bounds so they don't change with the slider
xmin, ymin, xmax, ymax = occurrence_gdf.total_bounds
# Define the slider widget
slider = pn.widgets.DiscreteSlider(
name='month',
options={calendar.month_name[i]: i for i in range(1, 13)}
)
# Plot occurrence by ecoregion and month
migration_plot = (
occurrence_gdf
.hvplot(
c='column_occurrences',
groupby='month',
# Use background tiles
geo=True, crs=ccrs.Mercator(), tiles='CartoLight',
title="Tasiyagnunpa migration",
xlim=(xmin, xmax), ylim=(ymin, ymax),
frame_height=600,
colorbar=False,
widgets={'month': slider},
widget_location='bottom'
)
)
# Save the plot
migration_plot.save('migration.html', embed=True)
# Show the plot
migration_plot
WARNING:bokeh.core.validation.check:W-1005 (FIXED_SIZING_MODE): 'fixed' sizing mode requires width and height to be set: figure(id='p11524', ...) ERROR:bokeh.core.validation.check:E-1001 (BAD_COLUMN_NAME): Glyph refers to nonexistent column name. This could either be due to a misspelling or typo, or due to an expected column being missing. : fill_color='column_occurrences' [no close matches], hatch_color='column_occurrences' [no close matches] {renderer: GlyphRenderer(id='p11568', ...)}
BokehModel(combine_events=True, render_bundle={'docs_json': {'bc4db93e-9e89-4f34-b3fa-f95fe413d741': {'version…
# Join the occurrences with the plotting GeoDataFrame
occurrence_gdf = ecoregions_plot_gdf.join(occurrence_df)
# Get the plot bounds so they don't change with the slider
xmin, ymin, xmax, ymax = occurrence_gdf.total_bounds
# Define the slider widget
slider = pn.widgets.DiscreteSlider(
name='month',
options={calendar.month_name[i]: i for i in range(1, 13)}
)
# Plot occurrence by ecoregion and month
migration_plot = (
occurrence_gdf
.hvplot(
c='norm_occurrences',
groupby='month',
# Use background tiles
geo=True, crs=ccrs.Mercator(), tiles='CartoLight',
title="Tasiyagnunpa migration",
xlim=(xmin, xmax), ylim=(ymin, ymax),
frame_height=600,
colorbar=False,
widgets={'month': slider},
widget_location='bottom'
)
)
# Save the plot
migration_plot.save('migration.html', embed=True)
# Show the plot
migration_plot
WARNING:bokeh.core.validation.check:W-1005 (FIXED_SIZING_MODE): 'fixed' sizing mode requires width and height to be set: figure(id='p16398', ...)
BokehModel(combine_events=True, render_bundle={'docs_json': {'8a67a9d0-d4d0-49a2-89c7-fd6f57f295f0': {'version…
%%capture
%%bash
jupyter nbconvert *.ipynb --to html
::: {.content-visible when-format=“html”} :::
Want an EXTRA CHALLENGE?
Notice that the
month
slider displays numbers instead of the month name. Usepn.widgets.DiscreteSlider()
with theoptions=
parameter set to give the months names. You might want to try asking ChatGPT how to do this, or look at the documentation forpn.widgets.DiscreteSlider()
. This is pretty tricky!