File: crunch.rst

package info (click to toggle)
eodag 3.10.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 48,500 kB
  • sloc: python: 41,542; xml: 3,791; makefile: 27; sh: 9
file content (29 lines) | stat: -rw-r--r-- 1,043 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.. module:: eodag.plugins.crunch

==============
Crunch Plugins
==============

Crunch plugins must inherit the following class and implement :meth:`proceed`:

.. autoclass:: eodag.plugins.crunch.base.Crunch
   :members:

This table lists all the crunch plugins currently available:

.. autosummary::
   :toctree: generated/

   filter_date.FilterDate
   filter_latest_intersect.FilterLatestIntersect
   filter_latest_tpl_name.FilterLatestByName
   filter_overlap.FilterOverlap
   filter_property.FilterProperty

The signature of each plugin's :meth:`proceed` method is displayed below, it may contain information useful to execute the cruncher:

.. automethod:: eodag.plugins.crunch.filter_date.FilterDate.proceed
.. automethod:: eodag.plugins.crunch.filter_latest_intersect.FilterLatestIntersect.proceed
.. automethod:: eodag.plugins.crunch.filter_latest_tpl_name.FilterLatestByName.proceed
.. automethod:: eodag.plugins.crunch.filter_overlap.FilterOverlap.proceed
.. automethod:: eodag.plugins.crunch.filter_property.FilterProperty.proceed