TNO Intern

Commit 8abd7987 authored by Arjo Segers's avatar Arjo Segers
Browse files

Updated User Guide.

parent ff3b2316
Loading
Loading
Loading
Loading
−352 B (45.7 KiB)
Loading image diff...
+68 −63
Original line number Diff line number Diff line
@@ -141,8 +141,8 @@ The result is a csv file which with columns for keywords such as orbit number an
as well as the filename of the data and the url that should be used to actually download the data::

    orbit;start_time;end_time;processing;collection;processor_version;filename;href
    21497;2021-12-06 14:05:54;2021-12-06 15:47:24;OFFL;02;020301;S5P_OFFL_L2__SO2____20211206T140554_20211206T154724_21497_02_020301_20211208T043331.nc;https://zipper.dataspace.copernicus.eu/odata/v1/Products('d9d33ffa-9fe5-43cc-b5a1-b65c22e874ad')/$value
    21852;2021-12-31 14:37:39;2021-12-31 16:19:09;OFFL;02;020301;S5P_OFFL_L2__SO2____20211231T143739_20211231T161909_21852_02_020301_20220102T064010.nc;https://zipper.dataspace.copernicus.eu/odata/v1/Products('ff5c922c-450c-43db-97e4-f46bdd55ffb2')/$value
    02818;2018-04-30 00:18:51;2018-04-30 02:02:19;RPRO;01;010102;S5P_RPRO_L2__SO2____20180430T001851_20180430T020219_02818_01_010102_20180903T080822.nc;s3://eodata/Sentinel-5P/TROPOMI/L2__SO2___/2018/04/30/S5P_RPRO_L2__SO2____20180430T001851_20180430T020219_02818_01_010102_20180903T080822.nc
    02818;2018-04-30 00:18:51;2018-04-30 02:02:19;RPRO;01;010105;S5P_RPRO_L2__SO2____20180430T001851_20180430T020219_02818_01_010105_20190201T205638.nc;s3://eodata/Sentinel-5P/TROPOMI/L2__SO2___/2018/04/30/S5P_RPRO_L2__SO2____20180430T001851_20180430T020219_02818_01_010105_20190201T205638.nc
    :

See the section on *File name convention* in the *Product User Manual* for the meaning of all 
@@ -214,6 +214,9 @@ For the S5P files a useful property is also the *collection number*, a 2-digit n
(or actually processor versions) that together form a contineous series. The *collection number* is extracted from the filename,
and stored as a column of the listing file.

Specific for the SO\ :sub:`2` product, processor version ``v2.7.0`` had a major upgrade by incorporating the COBRA algorithm;
therefore, orbits should be selected from this processor version onwards.

The following setting is used to select specific files from the archive based on the properities stored
in the listing file::

@@ -225,9 +228,11 @@ in the listing file::
    !   (%{collection} == '03') and (%{processing} == 'RPRO') ; \
    !   (%{collection} == '03') and (%{processing} == 'OFFL')
    !
    cso.s5p.so2.convert.selection                     :  (%{collection} == '03') and (%{processing} == 'RPRO') ; \
                                                         (%{collection} == '03') and (%{processing} == 'OFFL')
    cso.s5p.so2.convert.selection                     :  (%{collection} == '03') and (%{processing} == 'RPRO') & (%{processor_version} >= '020700') ; \
                                                         (%{collection} == '03') and (%{processing} == 'OFFL') & (%{processor_version} >= '020700')


.. SPECIC FOR EARLIER VERSIONS ...

    Pixel selection
    ---------------