The DHuS addon is a Java package that contains the definitions and extraction rules and operations for the Aeolus products. The central element of this package is the ontology definition file (aeolus.owl) located in the META-INF folder inside the resources directory.
The addon works in conjunction with the DRBX cortex definition (separate package), currently designed to support the following product types from the Aeolus satellite mission:
- ALD_U_N_1B
- ALD_U_N_2B
All metadata that will be extracted and made available via DHuS is defined within the OWL file mentioned above. The following is a complete list of metadata attributes implemented with this addon. Sample outputs to demonstrate which values these attributes can take can be found in the samples folder inside the resources directory.
OData Name | OpenSearch Name | Description | ALD_U_N_1B | ALD_U_N_2B |
---|---|---|---|---|
Satellite | - | Name of the satellite | ☑ | ☑ |
Instrument | - | Name of the instrument | ☑ | ☑ |
Date | - | Same as sensing start date | ☑ | ☑ |
Sensing start | beginposition | Sensing start date | ☑ | ☑ |
Sensing stop | endposition | Sensing stop date | ☑ | ☑ |
Footprint | gmlfootprint | GML footprint | ☑ | ☑ |
JTS footprint | footprint | JTS footprint | ☑ | ☑ |
Platform name | platformname | Name of the platform | ☑ | ☑ |
Platform short name | platformshortname | Short name of the platform | ☑ | ☑ |
Platform serial identifier | platformserialidentifier | Identification number of the platform among the mission | ☑ | ☑ |
Platform NSSDC identifier | platformnssdcidentifier | The National Space Science Data Center (NSSDC) identification number of the platform | ☑ | ☑ |
Instrument name | instrumentname | Name of the instrument | ☑ | ☑ |
Instrument short name | instrumentshortname | Short name of the instrument | ☑ | ☑ |
Orbit number | orbitnumber | Absolute orbit number | ☑ | ☑ |
Relative orbit number | relativeorbitnumber | Relative orbit number | ☑ | ☑ |
Cycle | cycle | Number of cycles | ☑ | ☑ |
Phase | phase | Mission phase | ☑ | ☑ |
Processing level | processinglevel | The value of the last processing | ☑ | ☑ |
Processing center | processingcenter | Processing center ID | ☑ | ☑ |
Processor version | processorversion | Version number of processing software | ☑ | ☑ |
Baseline | processingbaseline | Processing Baseline | ☑ | ☑ |
Generation time | - | Product generation date | ☑ | ☑ |
Processing mode | processingmode | Full name of processing mode or file class | ☑ | ☑ |
Processing mode abbreviation | processingmodeabbreviation | Abbreviated name of processing mode or file class | ☑ | ☑ |
Product type | producttype | Product type designation | ☑ | ☑ |
Product description | productdescription | One line description of the file | ☑ | ☑ |
Size | size | File size | ☑ | ☑ |
Format | format | Product format description | ☑ | ☑ |
Filename | filename | File name | ☑ | ☑ |
More information on the source of the respective attributes can be found directly by looking at the OWL file itself.
In contrast to all other attributes, the footprint coordinates are extracted from the binary data file (DBL). The cortex topic (separate package) uses an XML schema definition file to create a tree of nodes which is then navigable within the addon OWL.
The structure of the binary data files is different for Level-1 and Level-2 data. The generation of the footprints is based on the following sources:
- ALD_U_N_1B: Latitude and Longitude of the intersection of DEM and the line-of-sight (Table 5-10 in Aeolus Level 1b Input/Output Data Definitions Interface Control Document)
- ALD_U_N_2B: Latitude and Longitude of DEM intersection for the CoG of the current accumulation (Table 26 in Aeolus Level 2b/2c Input/Output Data Definitions Interface Control Document)
The values are provided in the unit of microdegrees and need to be scaled accordingly. Furthermore, longitudes need to be converted from the (0-360) range to the (-180 to 180) range.
One footprint covers an entire orbit. The ALADIN instrument measures vertical profiles that are repeated at intervals of 200 km. Therefore, a scattered point visualization would be appropriate to represent the acquisition geometry, however, a simple way to do this with DHuS was not found. Instead, a continuous polygon having a fictional width of 1 millidegree was chosen (defined by the offset variable in the OWL).
The number of points per polygon needs to be small enough for the DHuS to be able to handle it. A total number of approximately 400 points was chosen.
Currently, footprint generation takes a long time. At some point, optimization might become necessary.