TNO Intern

Commit 51c31053 authored by Arjo Segers's avatar Arjo Segers
Browse files

Added class to create super-observations.

parent 928beb41
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ Contents
   s4-syn-no2
   obsoper
   gridding
   superobs
   pymods
   history
   documentation
+5 −0
Original line number Diff line number Diff line
.. Documentation for module.

.. Import documentation from ".py" file:
.. automodule:: cso_superobs
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ Classes used for specific tasks are implemented in the ``cso_*`` modules.
   pymod-cso_s5p
   pymod-cso_file
   pymod-cso_gridded
   pymod-cso_superobs
   pymod-cso_regions
   pymod-cso_mapping
   pymod-cso_catalogue
+26 −0
Original line number Diff line number Diff line

.. Label between '.. _' and ':' ; use :ref:`text <label>` for reference
.. _superobs:

******************
Super-observations
******************

The CSO package contains a tool to average pixels into super-observations.


Create super-observations
=========================

The configuration of a job to create super-observations looks like::

    ! single step:
    cso.gridded.class        :  utopya.UtopyaJobStep
    ! super-observation creation task:
    cso.gridded.task.class   :  cso.CSO_SuperObs
    cso.gridded.task.args    :  '${PWD}/rc/settings.rc', \
                                    rcbase='cso.superobs'

The actual work is done by the :py:class:`.CSO_SuperObs` class,
see its description for details on the configuration.
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ Actual implementations can be found in submodules:
   pymod-cso_s5p_superobs
   pymod-cso_file
   pymod-cso_gridded
   pymod-cso_superobs
   pymod-cso_regions
   pymod-cso_mapping
   pymod-cso_catalogue
Loading