Chapter 7: Vector Data with GeoPandas¶
Part II — Geographic Data Science
Learning Objectives¶
By the end of this chapter you will be able to:
- Extend Pandas to spatial objects with GeoPandas
- Perform spatial joins, overlays, and geoprocessing
- Understand the GeoDataFrame as a simulation substrate
{note}
The last section bridges into Part III — GeoDataFrame as SpatialModel substrate.
In [ ]:
Copied!
# Standard imports — add chapter-specific imports below
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
# Standard imports — add chapter-specific imports below
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
GeoDataFrame Fundamentals¶
TODO: write content.
In [ ]:
Copied!
# Code for section: GeoDataFrame Fundamentals
# Code for section: GeoDataFrame Fundamentals
Spatial Joins¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Spatial Joins
# Code for section: Spatial Joins
Overlays and Clipping¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Overlays and Clipping
# Code for section: Overlays and Clipping
Geoprocessing Workflows¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Geoprocessing Workflows
# Code for section: Geoprocessing Workflows
GeoDataFrame as a Simulation Grid¶
TODO: write content.
In [ ]:
Copied!
# Code for section: GeoDataFrame as a Simulation Grid
# Code for section: GeoDataFrame as a Simulation Grid
Exercises¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Exercises
# Code for section: Exercises
Further Reading¶
- TODO: add references.