/usr/share/doc/mpop/image.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 | .. _geographic-images:
===================
Geographic images
===================
In order to build satellite composites, mpop has to handle images. We could
have used PIL, but we felt the need to use numpy masked arrays as base for our
image channels, and we had to handle geographically enriched images. Hence the
two following modules: :mod:`mpop.imageo.image` to handle simple images, and
:mod:`mpop.imageo.geo_image`.
Simple images
=============
.. automodule:: mpop.imageo.image
:members:
:undoc-members:
Geographically enriched images
==============================
.. automodule:: mpop.imageo.geo_image
:members:
:undoc-members:
|