This file is indexed.

/usr/share/doc/mpop/input.rst is in python-mpop 1.0.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
==============================================
 Input plugins: the :mod:`mpop.satin` package
==============================================

Available plugins and their requirements
========================================

mipp_xrit
---------

Reader for for hrit/lrit formats. Recommends numexpr and pyresample.

.. automodule:: mpop.satin.mipp_xrit
   :members:
   :undoc-members:


aapp1b
------

Reader for aapp level 1b format. Requires AHAMAP, recommends pyresample.

.. automodule:: mpop.satin.aapp1b
   :members:
   :undoc-members:


eps_format
----------
Reader for eps level 1b format. Recommends pyresample.

.. automodule:: mpop.satin.eps_format
   :members:
   :undoc-members:


thin_modis
----------
Reader for thinned modis format (as send via Eumetcast). Require pyhdf.

.. automodule:: mpop.satin.hdfeos_l1b
   :members:
   :undoc-members:


msg_hdf
-------
Reader for msg cloud products. Requires pytable and acpg.

.. automodule:: mpop.satin.msg_hdf
   :members:
   :undoc-members:


pps_hdf
-------
Reader for pps cloud products. Requires acpg.

.. automodule:: mpop.satin.pps_hdf
   :members:
   :undoc-members:


hrpt
----
Reader for level 0 hrpt format. Requires AAPP and pynav.

.. automodule:: mpop.satin.hrpt
   :members:
   :undoc-members:


eps1a
-----
Reader for level 1a metop segments. Requires AAPP, kai and eugene.

.. automodule:: mpop.satin.eps1a
   :members:
   :undoc-members:


Interaction with reader plugins
===============================

The reader plugin instance used for a specific scene is accessible through a
scene attribute named after the plugin format. For example, the attribute for
the *foo* format would be called *foo_reader*.

This way the other methods present in the plugins are available through the
scene object.

The plugin API
==============

.. versionchanged:: 0.13.0
   New plugin API


.. automodule:: mpop.plugin_base
   :members:
   :undoc-members:

Adding a new plugin
===================

For now only reader and writer plugins base classes are defined.

To add one of those, just create a new class that subclasses the plugin.

The interface of any reader plugin must include the :meth:`load` method.

Take a look at the existing readers for more insight.