Skip to content

Commit

Permalink
Fixing doc warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysrevans3 committed Mar 4, 2024
1 parent 341ac68 commit 438016f
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 17 deletions.
10 changes: 0 additions & 10 deletions docs/source/stac_generator/extraction_methods.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@

**********
Processors
**********

Processors take a uri and return a dictionary of extracted information. They
can be chained, one after the other and the results are merged such that arrays
are appended to and key:value pairs are overwritten by subsequent write operations.

.. _extraction-methods:

Extraction Methods
==================

Expand Down
2 changes: 0 additions & 2 deletions docs/source/stac_generator/inputs.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
Inputs
======

.. automodule:: stac_generator.plugins.inputs

.. automodule:: stac_generator.plugins.inputs
:members:
2 changes: 0 additions & 2 deletions docs/source/stac_generator/outputs.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
Outputs
=======

.. automodule:: stac_generator.plugins.outputs

.. automodule:: stac_generator.plugins.outputs
:members:
4 changes: 2 additions & 2 deletions docs/source/stac_generator/user_guide/orientation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ python entry points to allow you to write your own plugins.
The STAC Generator package stores some :ref:`inputs <stac_generator/inputs:inputs>` which can be used to read from a range of different
sources messages of STAC objects to genertate.
The :ref:`item <stac_generator/generators:Item Generator>`, and :ref:`collection <stac_generator/generators:Collection Generator>`
generators take these messages and extract the required facets to buil the relevant STAC object using a variety of :ref:`extraction methods <stac_generator/extraction_methods:extraction methods>`.
generators take these messages and extract the required facets to buil the relevant STAC object using a variety of :ref:`extraction methods <stac_generator/extraction_methods:Extraction Methods>`.
These generated objects can then be passed to a range of :ref:`outputs <stac_generator/outputs:outputs>`.

The generators have two levels of configuration. Global configuration, passed at the command line on
Expand All @@ -30,7 +30,7 @@ describe the workflow for extracting facets and other metadata to build the item
Background for recipes can be found `here <recipes/recipes:Recipes>`_
and a guide for how to build, and test these files is :ref:`here <recipes/building_a_workflow:building an Recipe>`.

The different available extraction methods which can construct these workflows are found :ref:`here <stac_generator/extraction_methods:extraction methods>`.
The different available extraction methods which can construct these workflows are found :ref:`here <stac_generator/extraction_methods:Extraction Methods>`.

The `CEDA repository containing these recipes <https://github.com/cedadev/stac-recipes>`_ can
be used as an example. An example which includes extracting metadata from the NetCDF header is
Expand Down
2 changes: 1 addition & 1 deletion stac_generator/plugins/inputs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
.. warning::
Blocking input plugins will prevent others from being run. They are run
sequentially. For example, with the `file system input`_ plugin, you
sequentially. For example, with the :ref:`file system input plugin <stac_generator/inputs:File System Input>`, you
could configure several to scan multiple directories but the rabbit plugin
creates a listening connection which would block any other inputs.
"""
Expand Down

0 comments on commit 438016f

Please sign in to comment.