Chapter 6: Introduction to Spatial Data¶
Part II — Geographic Data Science
Learning Objectives¶
By the end of this chapter you will be able to:
- Distinguish vector and raster data models
- Understand coordinate reference systems (CRS)
- Load and inspect GeoJSON, Shapefile, and GeoTIFF files
{note}
Use a coastal Brazil dataset as the running example through Part II.
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
Vector vs Raster: Two Ways to Model Space¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Vector vs Raster: Two Ways to Model Space
# Code for section: Vector vs Raster: Two Ways to Model Space
Coordinate Reference Systems¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Coordinate Reference Systems
# Code for section: Coordinate Reference Systems
Common Spatial Formats¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Common Spatial Formats
# Code for section: Common Spatial Formats
Loading Spatial Data in Python¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Loading Spatial Data in Python
# Code for section: Loading Spatial Data in Python
Exercises¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Exercises
# Code for section: Exercises
Further Reading¶
- TODO: add references.