Chapter 9: Multidimensional Arrays with Xarray¶
Part II — Geographic Data Science
Learning Objectives¶
By the end of this chapter you will be able to:
- Work with labeled multidimensional arrays
- Use Xarray for temporal and spatial slicing
- Integrate Xarray with Rasterio and Dask
In [ ]:
Copied!
# Standard imports
import numpy as np
import pandas as pd
import xarray as xr
import matplotlib.pyplot as plt
# Standard imports
import numpy as np
import pandas as pd
import xarray as xr
import matplotlib.pyplot as plt
9.1 Introduction to Xarray¶
TODO: write content.
In [ ]:
Copied!
# Code for section: Introduction to Xarray
# Code for section: Introduction to Xarray
Exercises¶
TODO: write content.
Summary¶
TODO: summarise key takeaways.
Further Reading¶
- TODO: add references.