I have a GeoPackage with multiple tables, and I am trying to load it with GeoPandas:
import geopandas as gpd
filename = '~/example.gpkg'
gdf = gpd.read_file(filename)'
This returns the first table/layer in the gpkg. Is there any way to access the other layer, i.e. something like:
filename = '~/example.gpkg|second_table'
I'm guessing I might need to use fiona directly, but couldn't figure it out from the docs.