Typo in switch.rst Afine -> Affine (#2521)

The instance is an `Affine` class, and not `Afine`
This commit is contained in:
Nicolai Mogensen 2022-07-13 15:10:12 +02:00 committed by GitHub
parent d3fa9838bb
commit 633609b9d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -252,7 +252,7 @@ Geotransforms
The ``transform`` attribute of a Rasterio dataset object is comparable to the
``GeoTransform`` attribute of a GDAL dataset, but Rasterio's has more power.
It's not just an array of affine transformation matrix elements, it's an
instance of an ``Afine`` class and has many handy methods. For example, the
instance of an ``Affine`` class and has many handy methods. For example, the
spatial coordinates of the upper left corner of any raster element is the
product of the dataset's ``transform`` matrix and the ``(column, row)`` index
of the element.