Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/getting_started/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ with the `rio` accessor. The `rio` accessor is activated by importing rioxarray

.. code-block:: python

import rioxarray
import rioxarray # noqa: F401

Importing rioxarray registers the ``rio`` accessor, even though the module is not
used directly in this example. The ``# noqa: F401`` comment keeps linters from
removing the import as unused.


You can learn how to `clip`, `merge`, and `reproject` rasters in the :ref:`usage_examples`
Expand Down