DataSetInfo.AdditionalInfo Property
Gets an attribute set containing additional metadata, which can depend on the data format.
Syntax
public AttributeSet AdditionalInfo { get; }
Property Value
Default: Empty attribute set.
Additional metadata that can depend on the data format.
Remarks
Additional Info for CMRG data
CMRG files can produce the following additional info:
dataSection (string): The data section represented as a string: either "Charts", "Terrain" or "Index".
dataSetName (string): The sub-dataset name.
scale (double): The preferred scale of the map.
ellipsoid (string): The CMRG code for the ellipsoid.
datum (string): The CMRG code for the geodetic datum.
projection (string): The CMRG code for the projection.
The last four attributes are read from the CMRG header file for the raster. Please see the CMRG specification for possible values of the ellipsoid, datum and projection attributes.
Additional Info for DTED data
When elevation data on the DTED format are read by the DtedDataSet, there will be additional info as listed below (for more details, see the DTED specification). Most of these attributes will appear only in the leaf nodes of the DataSetInfo hierarchy, since the attribute values can differ between DTED files in the same distribution. However, the root node will contain the first four attributes, the accuracy estimates, with values calculated as the worst (largest) values from the individual files.
absoluteHorizontalAccuracy (integer): Absolute horizontal accuracy in meters (90 percent confidence), or 99999 if not available.
absoluteVerticalAccuracy (integer): Absolute vertical accuracy in meters (90 percent confidence), or 99999 if not available.
relativeHorizontalAccuracy (integer): Relative (point-to-point) horizontal accuracy in meters (90 percent confidence), or 99999 if not available.
relativeVerticalAccuracy (integer): Relative (point-to-point) vertical accuracy in meters (90 percent confidence), or 99999 if not available.
securityClass (string): A single letter giving the security classification of the data set, where "S" = Secret, "C" = Confidential, "R" = Restricted and "U" = Unclassified.
securityReleaseMarking (string): Security control and release markings. This string is either empty or a two-character code from Defense Intelligence Agency Manual DIAM 65-19.
securityHandling (string): Security handling description (free text).
productLevelDesignator (string): NIMA series designator for product level: either "DTED0", "DTED1" or "DTED2".
uniqueRef (string): Either a unique reference number or just a string of fifteen zeros.
dataEdition (integer): Data edition number: this can be seen as major version number.
compilationDate (string): Compilation date, as a four-digit string on the format YYMM (year and month). This date corresponds to the dataEdition.
matchMergeVersion (string): Match/merge version: this can be seen as a minor version number. It is single character, A to Z, indicating the number of times an edition of the data was changed to effect boundary continuity with adjacent data.
matchMergeDate (string): Match/merge date, as a four-digit string on the format YYMM (year and month). Can also be zero-filled if not used. This date corresponds to the matchMergeVersion (see above).
maintenanceDescription (string): Maintenance description code, four characters. Zero-filled if not used.
maintenanceDate (string): Maintenance date, as a four-digit string on the format YYMM (year and month). Can also be zero-filled if not used. This date indicates a revision of the data, and can be later than the compilationDate if the revision was minor.
producer (string): Producer code. The first two characters is a code from the FIPS 10-4 standard, indicating the producing nation. The remaining characters, at most six, are decided by the producer.
horizontalDatum (string): Horizontal datum, usually "WGS84", but "WGS72" may be found in older DTED files.
verticalDatum (string): Vertical datum, usually "MSL" (mean sea level, in a vague sense) or "E96" (Earth Geoid Model 1996).
digitizingSystem (string): Digitizing/collection system. Identifies the equipment used to collect the elevation values from the source material used, for example, "AGDS", "LIS", "UNAMACE", "AS11", "DE/S", "PG/S" or "SRTM".
productSpecification (string): Product specification code, indicating the DTED specification used to compile the data. For example, the latest version, published as MIL-PRF-89020B, will be indicated by the string "PRF89020B".
productSpecificationDate (string): The date of the product specification, as a four-digit string on the format YYMM (year and month). For example, "0005" for MIL-PRF-89020B, published in May 2000.
productAmendment (string): Product specification amendment and change number. A two-digit string, where the first digit indicates the Amendment number and the second digit indicates the Change Notice number.
Besides the specialized DtedDataSet, the more versatile GdalDataSet can also read DTED data, although we do not recommend this. A GdalDataSet will assign different names to the Additional Info attributes for DTED data, and will not give exactly the same set of attributes. See also next section.
Additional Info for raster data readable by GdalDataSet
Raster data that can be read by GdalDataSet will produce all the general metadata items that GDAL Library can retrieve in the form of key-value pairs. To make the source clear, Carmenta Engine will prepend the prefix "GDAL_" to the key retrieved by GDAL Library. Here are just a few examples:
GDAL_AREA_OR_POINT (string): Either "Area" or "Point"; tells whether the raster values describe only the center point of each raster cell area, or if they describe some kind of average over the entire cell area.
GDAL_DTED_HorizontalAccuracy (number)
GDAL_RasterCellUnit (string)
GDAL_TIFFTAG_RESOLUTIONUNIT (string): Either "1 (unitless)", "2 (pixels/inch)" or "3 (pixels/cm)".
GDAL_TIFFTAG_XRESOLUTION (number)
GDAL_TIFFTAG_YRESOLUTION (number)
Since these metadata items are retrieved by a 3rd party library, Carmenta cannot guarantee that they will be present in all future versions of Carmenta Engine.
For some GDAL-readable data formats, Carmenta Engine will read more metadata items than those retrieved by GDAL Library: see next section.
Additional Info for ADRG, ASRP or USRP raster data, readable by GdalDataSet
Raster data on the ADRG, ASRP or USRP formats can be read by GdalDataSet. For ADRG data, the GdalDataSet.fileName should have the extension .GEN, but for ASRP or USRP data, it should have the extension .IMG.
Raster data on these formats are distributed as several kinds of files, which logically represent a transmittal that contains one or more data sets, and each data set refers to one or more image files.
For these data formats, the DataSetInfo will read additional metadata in two ways:
Some metadata items are read via GDAL Library as described in the previous section. The attribute names will get the prefix "GDAL_ADRG_" for ADRG data, and the prefix "GDAL_SRP_" for ASRP and USRP data. These metadata items may refer to individual image files, although most of them are usually the same within a data set.
Some other metadata items are read directly from the transmittal header file, always named TRANSH01.THF, or from the .GEN files. The attribute names will get no particular prefix.
All metadata items that are dates will be expressed as strings in the format YYYYMMDD.
When you have constructed a DataSetInfo from ADRG, ASRP or USRP, the main node will have Children that may also have children, etc. The hierarchical structure will be slightly different for ADRG and for ASRP/URSP data, and the structure can also depend on how you constructed your DataSetInfo: whether you called FromDirectory or called DataSet.GetDataSetInfo from an existing GdalDataSet. But regardless of the DataSetInfo hierarchy, all the additional info attributes will appear at the leaf nodes that represent individual image files.
The available attributes depend on the data format, so they can be divided into three groups:
Additional info attributes that are available only from ADRG data
GDAL_ADRG_NAM (string): The name of the image file, without the file extension.
GDAL_ADRG_SCA (integer): The inverted cartographic scale.
Additional info attributes that are available only from ASRP/USRP data
GDAL_SRP_CLASSIFICATION (string): A single letter giving the security classification of the data set, where "T" = Top secret, "S" = Secret, "C" = Confidential, "R" = Restricted and "U" = Unclassified.
GDAL_SRP_CREATIONDATE (string): Creation date for the data set.
GDAL_SRP_EDN (integer or string): The edition identifier of the data set.
GDAL_SRP_NAM (string): The name of the data set.
GDAL_SRP_PRODUCT (string): The product type, either "ASRP" or "USRP".
GDAL_SRP_REVISIONDATE (string): The revision date for the data set.
GDAL_SRP_SCA (integer): The inverted cartographic scale.
GDAL_SRP_ZNA (integer): Zone number of the image file. For ASRP, a latitude band number in the range 1 to 18. For USRP, either a signed UTM zone number where a negative number denotes the southern hemisphere, or +61 for UPS North, or −61 for UPS South.
mapSeries (string): The map series designation for the data set, possibly empty.
Additional info attributes that are available from both ADRG and ASRP/URSP data
numberOfImagesInDataSet (integer): The number of image files (extension .IMG) in the data set. The number is read from the general information file (extension .GEN) for the data set, and should equal the number of Children of the DataSetInfo node that represents the data set.
originator (string): Title and address of originator; backslashes represent line breaks.
transmittalId (string): A unique id for the transmittal. (The ADRG specification describes this attribute as "DMA stock number for this CD-ROM".)
transmittalEdition (integer): Transmittal edition number.
transmittalDate (string): Publication date or creation date for the transmittal. (Described as "publication date" in the ADRG specification, and as "creation date" in the ASRP and USRP specifications.)
numberOfDataSets (integer): The number of data sets in the transmittal. The number is read from the transmittal header file TRANSH01.THF, and should equal the number of Children of the DataSetInfo node that represents the transmittal.
securityClass (string): A single letter giving the security classification of the transmittal, where "T" = Top secret, "S" = Secret, "C" = Confidential, "R" = Restricted and "U" = Unclassified.
downgrading (string): Either "Y" for Yes or "N" for No; tells whether the originating agency's determination is required for downgrading.
downgradeDate (string): Date of downgrading. Will be empty if downgrading = "Y" or if securityClass = "U".
releasability (string): Releasability statement, in free text.
formatEdition (string): The format specification edition, for example "USRP 1.3".
formatEditionDate (string): The date of the format specification edition.
formatAmendment (string): The amendment number of the format specification, for example "0".
Additional info for GRIB data
A GRIB file can produce the following additional info:
numberOfFeatures (integer): Indicates how many features that have been read from the messages in the file. Set on the representation of a physical GRIB file.
forecastStart (string): Interpreted forecast start time in the UTC format YYYY-MM-DDTHH:mm:ssZ. Set on the representation of a GRIB message.
forecastStop (string): Interpreted forecast stop time in the UTC format YYYY-MM-DDTHH:mm:ssZ. Set on the representation of a GRIB message.
Additional Info for JPEG2000 data
A JPEG2000 file can produce the following additional info:
fileTypeBrand (string): The four-character brand of the File Type Box. Can be "jp2 " or "jpx ". Note that the final blank is retained.
fileTypeMinorVersion (integer): The minor version number in the File Type Box.
fileTypeSatisfiedStandards (string): The compatibility list in the File Type Box, which is a list of four-character codes representing the standards to which the JPEG2000 file conforms. Here, each code has got a terminating semicolon, and they have been concatenated to a single string. The result could be like this: "jp2 ;J2P1;". Here, too, blanks are retained.
horizontalDefaultDisplayResolutionDpm (double): The horizontal default display resolution in dots per meter, computed from the Resolution Box, or zero if that box was absent.
verticalDefaultDisplayResolutionDpm (double): The vertical default display resolution in dots per meter, computed from the Resolution Box, or zero if that box was absent.
horizontalCaptureResolutionDpm (double): The horizontal capture resolution in dots per meter, computed from the Resolution Box, or zero if that box was absent.
verticalCaptureResolutionDpm (double): The vertical capture resolution in dots per meter, computed from the Resolution Box, or zero if that box was absent.
copyrightBox (string): The contents of the Intellectual Property Rights Box.
xmpBox (string): The XMP metadata for the file, if it is stored in a UUID Box with the specific UUID, 0xBE7ACFCB97A942E89C71999491E3AFAC, that is reserved for XMP data. (Since XMP is a form of XML, it would also be legal to store it in an ordinary XML Box.)
numberOfXmlBoxes (integer): The number of XML Boxes retrieved.
xmlBox0 (string): The contents of the 0th retrieved XML Box.
xmlBox1 (string): The contents of the 1st retrieved XML Box.
xmlBox2 (string): The contents of the 2nd retrieved XML Box.
...
xmlBoxn (string): The contents of the nth retrieved XML Box, where n equals numberOfXmlBoxes - 1.
Additional Info for GeoPackage and Map Package data
A GeoPackage or Map Package file will produce following additional info for each child of its main DataSetInfo:
tableName (string): The MapPackageDataSet.TableName that must be specified to construct the corresponding dataset.
Additional Info for RaveGeo data
When a DataSetInfo has been created by FromDirectory from a directory containing RaveGeo data, there will be three levels in the DataSetInfo hierarchy.
Database level. The main DataSetInfo represents a whole RaveGeo database. It will have CanCreateDataSet = False, and its additional info will contain one attribute:
databaseName (string): The name of the database.
Data set level. Each child will represent a RaveGeo data set in the database. It will have CanCreateDataSet = True, and its additional info will contain two attributes:
databaseName (string): The name of the database.
dataSetName (string): The name of a data set in the database.
Feature class level. Each grandchild will represent a feature class in a data set. It will have CanCreateDataSet = False, and its additional info will contain four attributes:
databaseName (string): The name of the database.
dataSetName (string): The name of a data set in the database.
className (string): The name of a feature class in the data set.
geometryType (string): Either "Point", "Line" or "Polygon".
If you create a RaveGeoDataSet from a child and attach it to a ReadOperator, it must be complemented by a RaveGeoQuery whose className property comes from the additional info for one of the grandchildren under this child.
However, if you call DataSet.GetDataSetInfo from an already existing RaveGeoDataSet, the main DataSetInfo you get will represent the data set level. The database level is suppressed since it would not give more useful information.
Additional Info for RPF data
RPF files (Raster Product Format) represent a hierarchical database with several levels, and with a root that is accessed via a TOC file. In the general case, an RpfDataSet can refer to several TOC files; if you then call the method RpfDataSet.GetDataSetInfo, the main DataSetInfo you get can be said to be at level 0, with Children at level 1 that refer to the TOC files, and grandchildren at level 2 that refer to the boundary rectangles, and great-grandchildren at level 3 that refer to the frame files. However, an RpfDataSet will normally use only one TOC file, in which case the main DataSetInfo will instead be the one at level 1. Likewise, level 1 will be the level of the main DataSetInfo items produced by the static methods FromDirectory and FromFile.
The additional info will be at level 2 - the boundary rectangles - and will consist of the following attributes:
description (string): A short description of the boundary rectangle, including CADRG zone number and scale, for example "CADRG Zone 1 1:2M DMAAC".
tocSecurityClass (string): A single letter giving the security classification, where "T" = Top secret, "S" = Secret, "C" = Confidential, "R" = Restricted and "U" = Unclassified.
tocSecurityCountry (string): A two-letter code for the originating country or international affiliation of the security classification. The coding system (which differs from the ISO two-letter system) can be found in MIL-STD-2411-1, section 5.1.7. Examples: "US" = United States, "GM" = Germany, and "SW" = Sweden.
tocSecurityReleaseMarking (string): A two-letter code that indicates any special handling or releasability restrictions assigned to the contents. The coding system can be found in MIL-STD-2411-1, section 5.1.9. Examples: "DA" = No Dissemination Abroad, and "NC" = Not releasable to contractors/consultants, and "ED" = Authorized for release to Sweden (REL SWEDEN).
governingStandardNumber (string): A string that identifies the governing standard for the data. For RPF data, the string is expected to be "MIL-STD-2411", which refers to the document that defines the RPF format.
governingStandardDate (string): The date when the governing standard was published, on the format YYYYMMDD. For RPF data, the date is expected to be "19941006" since MIL-STD-2411 was published on 6 October 1994.
Additional Info for Shapefiles
A Shapefile will produce the following additional info:
fileSizeMiB (double): The .shp file size in mebibytes.
geometryType (string): Either "Point", "Line", "Polygon" or "MultiPoint".
numberOfFeatures (integer): The number of features.
codePageFromFile (integer): The code page according to the .cpg file, or failing that, according to the language driver ID in the .dbf file. Zero means that no code page information was found.
evaluatedCodePage (integer): The code page that has been evaluated and will be used during reading.
The two variants of the code page number will often be equal, but there are reasons why they could differ:
If the DataSetInfo is created from an existing ShapefileDataSet with a user-specified codePage property that is non-zero, then the evaluatedCodePage will get the value of that property, since a non-zero code page property overrides any code page information from file.
If the codePageFromFile is zero (no code page information from file), then the evaluatedCodePage will be different also if there is no user-specified code page property, because in the absence of any code page information from file or from user settings, a ShapefileDataSet will use the code page 65001 for UTF-8, so 65001 will then be the value of the evaluatedCodePage.
If the main DataSetInfo represents several .shp files (FileName = "*.shp"), then the main additional info will have a fileSizeMiB that is the sum of all file sizes and a numberOfFeatures that is the total number of features, but the geometryType, the codePageFromFile and the evaluatedCodePage will appear only in the additional info of the Children.
Additional Info for VPF data
VPF files (Vector Product Format) represent a hierarchical database with several levels. The structure of the corresponding DataSetInfo can depend on which method you use to generate it.
DataSetInfo for VPF from the static methods
If you call one of the static methods, FromDirectory or FromFile, the result will be a DataSetInfo hierarchy with four levels; in summary:
The main DataSetInfo represents an entire VPF database,
the Children represent the libraries of the database,
the grandchildren represent the coverages of each library, and
the great-grandchildren represent the features classes of each coverage.
The attributes that appear in the AdditionalInfo will be different at each level, so here is a more detailed account:
Database level. The main DataSetInfo represents an entire VPF database, with the following additional info:
vpfVersion (string): VPF version number.
databaseName (string): Name of database.
databaseDescription (string): A description of the database.
databaseSecurityClass (string): A single letter representing the security classification of the database (the highest security classification of its parts), where "T" = Top secret, "S" = Secret, "C" = Confidential, "R" = Restricted (or For official use only), and "U" = Unclassified.
originator (string): Title and address of originator (a backslash represents a line break).
addressee (string): Title and address of addressee (a backslash represents a line break).
databaseDowngrading (string): Whether the originator's permission for downgrading is required; either "yes" or "no".
databaseDowngradeDate (string): Date of downgrading, in the same date format as editionDate below, except that the databaseDowngradeDate can also be the empty string or "0000-00-00".
databaseReleasability (string): Releasability restrictions.
transmittalId (string): Transmittal id: a unique id for this database.
editionNumber (string): Edition number for this database.
editionDate (string): Creation date of this database, normally on the format YYYY-MM-DD, for example "1997-09-30". More generally, the string can contain both a date and a time and an optional time zone, expressed in the ISO 8601 extended format, except that a blank instead of a T is used to separate date and time. For example, "1997-09-30 16:06:27" or "1997-09-30 16:06:27Z" or "1997-09-30 16:06:27+01:00". Actually, the metadata file always contains both date and time, but the time is omitted here if it contains only zeros (midnight in an unspecified time zone).
Library level. The main DataSetInfo will have Children that represent the libraries of the database. Each library is intended for a certain map scale and certain geographic area (possibly the whole world). Each child will have the following additional info about its library:
productType (string): Series designator of product type.
libraryName (string): Name of library.
libraryDescription (string): A description of the library.
librarySecurityClass (string): A single letter representing the security classification of the library source, where "T" = Top secret, "S" = Secret, "C" = Confidential, "R" = Restricted (or For official use only), and "U" = Unclassified.
sourceSeries (string): Series designator.
sourceId (string): Source id - a number or a name.
sourceEdition (string): Source edition number. The sourceSeries, sourceId and sourceEdition together will identify a unique source.
sourceName (string): Full name of source document.
sourceDate (string): The basic date of the product; for example compilation date or revision date. Formatted in the same way as editionDate (see above).
libraryDowngrading (string): Whether the originator's permission for downgrading is required; either "yes" or "no".
libraryDowngradingDate (string): Date of downgrading, in the same date format as editionDate above, except that the libraryDowngradingDate can also be the empty string or "0000-00-00".
libraryReleasability (string): Releasability restrictions.
Coverage level. Each library node will have its own Children that represent the coverages of the library. Each coverage consists of a set of similar feature classes; for example, there could be a hydrography coverage for wet feature classes and a physiography coverage for dry feature classes. A coverage node will have the following additional info:
libraryName (string): inherited from parent node.
libraryDescription (string): inherited from parent node.
coverageName (string): The coverage name.
coverageDescription (string): The coverage description.
Feature class level. Each coverage node will have its own Children that represents the feature classes of the coverage. Each feature class is a homogeneous set of features that is suitable to represent as a Carmenta Engine dataset. A feature class node will have the following additional info:
libraryName (string): inherited from grandparent node.
libraryDescription (string): inherited from grandparent node.
coverageName (string): Inherited from parent node.
coverageDescription (string): Inherited from parent node.
featureClass (string): The name of the feature class.
The DataSetInfo nodes at the feature class level are the only ones that will have CanCreateDataSet = True and the only ones that will contain any FeatureAttributes.
DataSetInfo for VPF from VpfDataSet.GetDataSetInfo()
Instead of generating the DataSetInfo from a file or directory via the static methods, as assumed above, you can call the instance method DataSet.GetDataSetInfo from an existing VpfDataSet. The results can be different, though.
The major difference is that when you created the VpfDataSet in the first place, you had to specify a library name, a coverage name and a feature class (you can use a wildcard for the library name, but not for the others). So when you call the instance method VpfDataSet.GetDataSetInfo(), you will not get information about the entire VPF database, only about the subset that corresponds to your VpfDataSet instance.
There is another possible difference from the static methods: The instance method can produce a main DataSetInfo node of level zero if the VpfDataSet represents several VPF databases, which is seldom useful, but happens if the dataset had searchSubdirectories = True and several subdirectories with a LAT file were found. The only useful information in the level zero node is the Children nodes, which are of level 1 and represent the VPF databases. In the normal case when a VpfDataSet represents a single VPF database, the node at level zero will not be generated.
Example Additional Info from VPF
The Carmenta Engine Samples Geodata contains an extract from the VPF database World Vector Shoreline, in the worldmap directory. These tables shows some of the additional info you can get from it.
Attribute name | Value |
---|---|
vpfVersion | 9606 |
databaseName | WVSPLUS |
databaseDescription | VPF World Vector Shoreline database |
databaseSecurityClass | U |
originator | NATIONAL IMAGERY AND MAPPING AGENCY |
addressee | Director, NIMA, ATTN: COD, P-37, 4600 Sangamore Road, Bethesda, MD 20816-5003 |
databaseDowngrading | no |
databaseDowngradeDate | 0000-00-00 |
databaseReleasability | Unrestricted |
transmittalId | 1 |
editionNumber | 2 |
editionDate | 2000-08-12 |
Attribute name | Value |
---|---|
productType | WVSPLUS |
libraryName | WVS120M |
libraryDescription | World Vector Shoreline and ancillary data at 1:120,000,000 scale |
librarySecurityClass | U |
sourceSeries | 2GC |
sourceId | WVS |
sourceEdition | MIL-W-89012 |
sourceName | Military Specification - World Vector Shoreline |
sourceDate | 1990-07-27 |
libraryDowngrading | no |
libraryDowngradingDate | 0000-00-00 |
libraryReleasability | Unrestricted |
Attribute name | Value |
---|---|
libraryName | WVS120M |
libraryDescription | World Vector Shoreline and ancillary data at 1:120,000,000 scale |
coverageName | COC |
coverageDescription | Coastlines /Countries /Oceans |
Attribute name | Value |
---|---|
libraryName | WVS120M |
libraryDescription | World Vector Shoreline and ancillary data at 1:120,000,000 scale |
coverageName | COC |
coverageDescription | Coastlines /Countries /Oceans |
featureClass | COCAREA |
Platforms
Windows, Linux, Android