Documenting Spatial and Temporal Extents

From Earth Science Information Partners (ESIP)
Revision as of 03:17, October 21, 2015 by Hdfscript (talk | contribs) (<div id="extent"> updated)

The Extent Spiral defines the spatial and temporal extent of the dataset. This information can be displayed on maps, profiles and timelines and used in spatial and temporal searches. Most documentation dialects include this information because it is so important to data discovery.

ECHO


DIF


ISO


netCDF

Extent information is included in the Attribute Conventions for Data Discovery and ctCDF files as global attributes:

<attribute name="geospatial_lat_max" value="90.0 " type="double"/>
<attribute name="geospatial_lat_min" value="-90.0 " type="double"/>
<attribute name="geospatial_lat_resolution" value="0.0416 " type="double"/>
<attribute name="geospatial_lat_units" value="degrees_north"/>
<attribute name="geospatial_lon_max" value="360.0 " type="double"/>
<attribute name="geospatial_lon_min" value="0.0 " type="double"/>
<attribute name="geospatial_lon_resolution" value="0.0416 " type="double"/>
<attribute name="geospatial_lon_units" value="degrees_east"/>
<attribute name="geospatial_vertical_max" value="0.0 " type="double"/>
<attribute name="geospatial_vertical_min" value="0.0 " type="double"/>
<attribute name="geospatial_vertical_positive" value="up"/>
<attribute name="geospatial_vertical_units" value="m"/>

Many of the attributes included in this spiral can be calculated from the data using standard netCDF Tools if the file is compliant with the NetCDF Climate and Forecast (CF) Metadata Convention. In ncISO these attributes are given as part of the CFMetadata group:

<group name="CFMetadata">
    <attribute name="geospatial_lon_min" value="-180.0" type="float" />
    <attribute name="geospatial_lat_min" value="-80.0" type="float" />
    <attribute name="geospatial_lon_max" value="179.5" type="float" />
    <attribute name="geospatial_lat_max" value="85.0" type="float" />
    <attribute name="geospatial_lon_units" value="degrees_east" />
    <attribute name="geospatial_lat_units" value="degrees_north" />
    <attribute name="geospatial_lon_resolution" value="0.5" />
    <attribute name="geospatial_lat_resolution" value="0.5" />
    <attribute name="time_coverage_start" value="2010-05-29T22:00:00Z" />
    <attribute name="time_coverage_end" value="2011-05-21T20:00:00Z" />
    <attribute name="time_coverage_units" value="seconds" />
    <attribute name="time_coverage_resolution" value="314669.0" />
    <attribute name="time_coverage_duration" value="P0Y0M356DT22H0M0.000S" />
  </group>

THREDDS

The THREDDS dialect defines spatial ranges using start, size, resolution, and units and includes place keywords with vocabulary names.

<geospatialCoverage zpositive="down">
    <northsouth>
        <start>10</start>
        <size>80</size>
        <resolution>2</resolution>
        <units>degrees_north</units>
    </northsouth>
    <eastwest>
        <start>-130</start>
        <size>260</size>
        <resolution>2</resolution>
        <units>degrees_east</units>
    </eastwest>
    <updown>
        <start>0</start>
        <size>22</size>
        <resolution>0.5</resolution>
        <units>km</units>
    </updown>
    <name vocabulary="GCMD Location Keywords">Arctic Ocean</name>
</geospatialCoverage>

Spatial and Temporal Search

This basic extent information supports spatial/temporal searches that are increasingly important as the number of map based search interfaces increases. Many of the attributes included in this spiral can be calculated from the data if the file is compliant with the NetCDF Climate and Forecast (CF) Metadata Convention. Describes a simple latitude, longitude, vertical and temporal bounding box. For a more detailed geospatial coverage, see the suggested geospatial attributes. Further refinement of the geospatial bounding box can be provided by using these units and resolution attributes. Many of these extent attributes are calculated using the CF-Conventions.
ConceptDescriptionDialect (Fit) Paths
SiteThe name or description of the physical location where the data were collectedFGDC /fgdc:metadata/fgdc:idinfo/fgdc:spdom/fgdc:descgeog
Site LocationThe latitude/longitude/elevation of the physical location where the data were collectedADIwg /adiwg:project/adiwg:idinfo/adiwg:spdom/adiwg:Point/adiwg:coordinates
Southernmost LatitudeThe southernmost latitude of the bounding rectangle.

Note: OGC-SOS offering lists may not include the entire dataset. A gml:id attribute can be used to identify the bounding offering.
DIF (1) /dif:DIF/dif:Spatial_Coverage/dif:Southernmost_Latitude
ECHO (1) /*/echo:Spatial/echo:HorizontalSpatialDomain/echo:Geometry/echo:BoundingRectangle/echo:SouthBoundingCoordinate
ECS (1) /*/ecs:Spatial/ecs:HorizontalSpatialDomain/ecs:BoundingRectangle/ecs:SouthBoundingCoordinate
EML /eml:eml/eml:dataset/eml:coverage/eml:geographicCoverage/eml:boundingCoordinates/eml:southBoundingCoordinate
FGDC /fgdc:metadata/fgdc:idinfo/fgdc:spdom/fgdc:bounding/fgdc:southbc
HDF5.1 (1) /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='geospatial_lat_min']/hdf5:Data/hdf5:DataFromFile
ISO (1) /*/gmd:identificationInfo/*/gmd:extent/gmd:EX_Extent/gmd:geographicElement/gmd:EX_GeographicBoundingBox/gmd:southBoundLatitude/gco:Decimal
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:geographicElement/gex:EX_GeographicBoundingBox/gex:southBoundLatitude/gco:Decimal
UMM (1) /umm:UMM/umm:SpatialCoverage/umm:HorizontalSpatialDomain/umm:BoundingRectangle/umm:SouthBoundingCoordinate
OGC-SOS (2) /sos:Capabilities/sos:Contents/sos:ObservationOfferingList/sos:ObservationOffering/gml:boundedBy/gml:Envelope/gml:lowerCorner
THREDDS (1) /thredds:catalog/thredds:metadata/thredds:geospatialCoverage/thredds:northsouth/thredds:start
THREDDS (1) /thredds:catalog/thredds:dataset/thredds:geospatialCoverage/thredds:northsouth/thredds:start
netCDF (1) /nc:netcdf/nc:CFMetadata/nc:attribute[@nc:name=geospatial_lat_min]/@nc:value
Northernmost LatitudeThe northernmost latitude of the bounding rectangle.

Note: OGC-SOS offering lists may not include the entire dataset. A gml:id attribute (e.g. gml:id="network-all") can be used to identify the bounding offering.
DIF (1) /dif:DIF/dif:Spatial_Coverage/dif:Northernmost_Latitude
ECHO (1) /*/echo:Spatial/echo:HorizontalSpatialDomain/echo:Geometry/echo:BoundingRectangle/echo:NorthBoundingCoordinate
ECS (1) /*/ecs:Spatial/ecs:HorizontalSpatialDomain/ecs:BoundingRectangle/ecs:NorthBoundingCoordinate
EML /eml:eml/eml:dataset/eml:coverage/eml:geographicCoverage/eml:boundingCoordinates/eml:northBoundingCoordinate
FGDC /fgdc:metadata/fgdc:idinfo/fgdc:spdom/fgdc:bounding/fgdc:northbc
HDF5.1 (1) /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='geospatial_lat_max']/hdf5:Data/hdf5:DataFromFile
ISO (1) /*/gmd:identificationInfo/*/gmd:extent/gmd:EX_Extent/gmd:geographicElement/gmd:EX_GeographicBoundingBox/gmd:northBoundLatitude/gco:Decimal
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:geographicElement/gex:EX_GeographicBoundingBox/gex:northBoundLatitude/gco:Decimal
UMM (1) /umm:UMM/umm:SpatialCoverage/umm:HorizontalSpatialDomain/umm:BoundingRectangle/umm:NorthBoundingCoordinate
OGC-SOS (1) /sos:Capabilities/sos:Contents/sos:ObservationOfferingList/sos:ObservationOffering/gml:boundedBy/gml:Envelope/gml:upperCorner
netCDF (1) /nc:netcdf/nc:CFMetadata/nc:attribute[@nc:name=geospatial_lat_max]/@nc:value
Latitude Dimension LengthThe number of divisions on the latitude axisISO /*/gmd:spatialRepresentationInfo/gmd:MD_GridSpatialRepresentation/gmd:axisDimensionProperties/gmd:MD_Dimension/gmd:dimensionSize/gco:Integer
netCDF /nc:netcdf/nc:dimension[@name=lat]/@length/@nc:value
Latitude ResolutionThe average distance between divisions on the latitude axisISO /*/gmd:spatialRepresentationInfo/gmd:MD_GridSpatialRepresentation/gmd:axisDimensionProperties/gmd:MD_Dimension/gmd:resolution/gco:Measure
netCDF /nc:netcdf/nc:CFMetadata/nc:attribute[@nc:name=geospatial_lat_resolution]/@nc:value
Westernmost LongitudeThe westernmost longitude of the bounding rectangle.

Note: OGC-SOS offering lists may not include the entire dataset. A gml:id attribute can be used to identify the bounding offering.
DIF (1) /dif:DIF/dif:Spatial_Coverage/dif:Westernmost_Longitude
ECHO (1) /*/echo:Spatial/echo:HorizontalSpatialDomain/echo:Geometry/echo:BoundingRectangle/echo:WestBoundingCoordinate
ECS (1) /*/ecs:Spatial/ecs:HorizontalSpatialDomain/ecs:BoundingRectangle/ecs:WestBoundingCoordinate
EML /eml:eml/eml:dataset/eml:coverage/eml:geographicCoverage/eml:boundingCoordinates/eml:westBoundingCoordinate
FGDC /fgdc:metadata/fgdc:idinfo/fgdc:spdom/fgdc:bounding/fgdc:westbc
HDF5.1 (1) /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='geospatial_lon_min']/hdf5:Data/hdf5:DataFromFile
ISO (1) /*/gmd:identificationInfo/*/gmd:extent/gmd:EX_Extent/gmd:geographicElement/gmd:EX_GeographicBoundingBox/gmd:westBoundLongitude/gco:Decimal
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:geographicElement/gex:EX_GeographicBoundingBox/gex:westBoundLongitude/gco:Decimal
UMM (1) /umm:UMM/umm:SpatialCoverage/umm:HorizontalSpatialDomain/umm:BoundingRectangle/umm:WestBoundingCoordinate
OGC-SOS (2) /sos:Capabilities/sos:Contents/sos:ObservationOfferingList/sos:ObservationOffering/gml:boundedBy/gml:Envelope/gml:lowerCorner
THREDDS (1) /thredds:catalog/thredds:metadata/thredds:geospatialCoverage/thredds:eastwest/thredds:start
THREDDS (1) /thredds:catalog/thredds:dataset/thredds:geospatialCoverage/thredds:eastwest/thredds:start
netCDF (1) /nc:netcdf/nc:CFMetadata/nc:attribute[@nc:name=geospatial_lon_min]/@nc:value
Easternmost LongitudeThe easternmost longitude of the bounding rectangle.

Note: OGC-SOS offering lists may not include the entire dataset. A gml:id attribute can be used to identify the bounding offering.
DIF (1) /dif:DIF/dif:Spatial_Coverage/dif:Easternmost_Longitude
ECHO (1) /*/echo:Spatial/echo:HorizontalSpatialDomain/echo:Geometry/echo:BoundingRectangle/echo:WestBoundingCoordinate
ECS (1) /*/ecs:Spatial/ecs:HorizontalSpatialDomain/ecs:BoundingRectangle/ecs:EastBoundingCoordinate
EML /eml:dataset/eml:coverage/eml:geographicCoverage/eml:boundingCoordinates/eml:eastBoundingCoordinate
FGDC /fgdc:metadata/fgdc:idinfo/fgdc:spdom/fgdc:bounding/fgdc:eastbc
HDF5.1 (1) /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='geospatial_lon_max']/hdf5:Data/hdf5:DataFromFile
ISO (1) /*/gmd:identificationInfo/*/gmd:extent/gmd:EX_Extent/gmd:geographicElement/gmd:EX_GeographicBoundingBox/gmd:eastBoundLongitude/gco:Decimal
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:geographicElement/gex:EX_GeographicBoundingBox/gex:eastBoundLongitude/gco:Decimal
UMM (1) /umm:UMM/umm:SpatialCoverage/umm:HorizontalSpatialDomain/umm:BoundingRectangle/umm:EastBoundingCoordinate
OGC-SOS (2) /sos:Capabilities/sos:Contents/sos:ObservationOfferingList/sos:ObservationOffering/gml:boundedBy/gml:Envelope/gml:upperCorner
netCDF (1) /nc:netcdf/nc:CFMetadata/nc:attribute[@nc:name=geospatial_lon_max]/@nc:value
Longitude Dimension LengthThe number of divisions on the longitude axisISO /*/gmd:spatialRepresentationInfo/gmd:MD_GridSpatialRepresentation/gmd:axisDimensionProperties/gmd:MD_Dimension/gmd:dimensionSize/gco:Integer
netCDF /nc:netcdf/nc:dimension[@name=longitude]/@length/@nc:value
Longitude ResolutionThe average distance between divisions on the longitude axisISO /*/gmd:spatialRepresentationInfo/gmd:MD_GridSpatialRepresentation/gmd:axisDimensionProperties/gmd:MD_Dimension/gmd:resolution/gco:Measure
netCDF /nc:netcdf/nc:CFMetadata/nc:attribute[@nc:name=geospatial_lon_resolution]/@nc:value
Start TimeThe start of the bounding time periodADIwg /adiwg:project/adiwg:idinfo/adiwg:timeperd/adiwg:timeinfo/adiwg:rngdates/adiwg:begdate
DIF /dif:DIF/dif:Temporal_Coverage/dif:Start_Date
DCAT dct:temporal
ECHO /*/echo:Temporal/echo:RangeDateTime/echo:BeginningDateTime
ECS /*/ecs:Temporal/ecs:RangeDateTime/ecs:RangeEndingDate
ECS /*/ecs:Temporal/ecs:RangeDateTime/ecs:RangeEndingTime
EML /eml:eml/eml:dataset/eml:coverage/eml:temporalCoverage/eml:rangeOfDates/eml:beginDate/eml:calendarDate/
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='time_coverage_start']/hdf5:Data/hdf5:DataFromFile
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='RangeBeginningDate']/hdf5:Data/hdf5:DataFromFile
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='RangeBeginningTime']/hdf5:Data/hdf5:DataFromFile
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Group[@Name='METADATA']/hdf5:Group[@Name='INVENTORYMETADATA']/hdf5:Attribute[@Name='RangeBeginningDate']/hdf5:Data/hdf5:DataFromFile
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Group[@Name='METADATA']/hdf5:Group[@Name='INVENTORYMETADATA']/hdf5:Attribute[@Name='RangeBeginningTime']/hdf5:Data/hdf5:DataFromFile
ISO /*/gmd:identificationInfo/*/gmd:extent/gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml:TimePeriod/gml:beginPosition
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:temporalElement/gex:EX_TemporalExtent/gex:extent/gml:TimePeriod/gml:begin/gml:TimeInstant/gml:timePosition
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:temporalElement/gex:EX_TemporalExtent/gex:extent/gml:TimePeriod/gml:beginPosition
OGC-SOS /sos:Capabilities/sos:Contents/sos:ObservationOfferingList/sos:ObservationOffering/sos:time/gml:TimePeriod/gml:beginPosition
THREDDS /thredds:catalog/thredds:dataset/thredds:timeCoverage/thredds:start
THREDDS /thredds:catalog/thredds:metadata/thredds:timeCoverage/thredds:start
netCDF /nc:netcdf/nc:CFMetadata/nc:attribute[@nc:name=time_coverage_start]/@nc:value
End TimeThe end of the bounding time periodADIwg /adiwg:project/adiwg:idinfo/adiwg:timeperd/adiwg:timeinfo/adiwg:rngdates/adiwg:enddate
DIF /dif:DIF/dif:Temporal_Coverage/dif:Stop_Date
DCAT dct:temporal
ECHO /*/echo:Temporal/echo:RangeDateTime/echo:EndingDateTime
ECHO /*/echo:Temporal/echo:EndsAtPresentFlag
ECS /*/ecs:Temporal/ecs:RangeDateTime/ecs:RangeEndingDate
ECS /*/ecs:Temporal/ecs:RangeDateTime/ecs:RangeEndingTime
EML /eml:dataset/eml:coverage/eml:temporalCoverage/eml:rangeOfDates/eml:endDate/eml:calendarDate
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='time_coverage_end']/hdf5:Data/hdf5:DataFromFile
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='RangeEndingDate']/hdf5:Data/hdf5:DataFromFile
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Attribute[@Name='RangeEndingTime']/hdf5:Data/hdf5:DataFromFile
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Group[@Name='METADATA']/hdf5:Group[@Name='INVENTORYMETADATA']/hdf5:Attribute[@Name='RangeEndingDate']/hdf5:Data/hdf5:DataFromFile
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Group[@Name='METADATA']/hdf5:Group[@Name='INVENTORYMETADATA']/hdf5:Attribute[@Name='RangeEndingTime']/hdf5:Data/hdf5:DataFromFile
ISO /*/gmd:identificationInfo/*/gmd:extent/gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml:TimePeriod/gml:endPosition
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:temporalElement/gex:EX_TemporalExtent/gex:extent/gml:TimePeriod/gml:end/gml:TimeInstant/gml:timePosition
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:temporalElement/gex:EX_TemporalExtent/gex:extent/gml:TimePeriod/gml:endPosition
OGC-SOS /sos:Capabilities/sos:Contents/sos:ObservationOfferingList/sos:ObservationOffering/sos:time/gml:TimePeriod/gml:endPosition
THREDDS /thredds:catalog/thredds:dataset/thredds:timeCoverage/thredds:end
THREDDS /thredds:catalog/thredds:metadata/thredds:timeCoverage/thredds:end
netCDF /nc:netcdf/nc:CFMetadata/nc:attribute[@nc:name=time_coverage_end]/@nc:value
Vertical MinimumThe minimum height of the bounding rectangleDIF /dif:DIF/dif:Spatial_Coverage/dif:Minimum_Altitude
DIF /dif:DIF/dif:Spatial_Coverage/dif:Minimum_Depth
ISO /*/gmd:identificationInfo/*/gmd:extent/gmd:EX_Extent/gmd:verticalElement/gmd:EX_VerticalExtent/gmd:minimumValue/gco:Real
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:verticalElement/gex:EX_VerticalExtent/gex:minimumValue/gco:Real
THREDDS /thredds:catalog/thredds:metadata/thredds:geospatialCoverage/thredds:updown/thredds:start
THREDDS /thredds:catalog/thredds:dataset/thredds:geospatialCoverage/thredds:updown/thredds:start
netCDF /nc:netcdf/nc:attribute[@nc:name=geospatial_vertical_min]/@nc:value
Vertical MaximumThe maximum height of the bounding rectangleDIF /dif:DIF/dif:Spatial_Coverage/dif:Maximum_Altitude
DIF /dif:DIF/dif:Spatial_Coverage/dif:Maximum_Depth
ISO /*/gmd:identificationInfo/*/gmd:extent/gmd:EX_Extent/gmd:verticalElement/gmd:EX_VerticalExtent/gmd:maximumValue/gco:Real
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:verticalElement/gex:EX_VerticalExtent/gex:maximumValue/gco:Real
netCDF /nc:netcdf/nc:attribute[@nc:name=geospatial_vertical_max]/@nc:value
Vertical Dimension LengthThe number of divisions on the vertical axisISO /*/gmd:spatialRepresentationInfo/gmd:MD_GridSpatialRepresentation/gmd:axisDimensionProperties/gmd:MD_Dimension[normalize-space(gmd:dimensionName/gmd:MD_DimensionNameTypeCode)='vertical']/gmd:dimensionSize/gco:Integer
ISO-1 /mdb:MD_Metadata/mdb:spatialRepresentationInfo/msr:MD_Georectified/msr:axisDimensionProperties/msr:MD_Dimension[normalize-space(msr:dimensionName/msr:MD_DimensionNameTypeCode)='vertical']/msr:dimensionSize/gco:Integer
netCDF /nc:netcdf/nc:dimension[@name=altitude]/@length/@nc:value
Vertical ResolutionThe average distance between divisions on the vertical axisDIF /dif:DIF/dif:Data_Resolution/dif:Vertical_Resolution
ISO /*/gmd:spatialRepresentationInfo/gmd:MD_GridSpatialRepresentation/gmd:axisDimensionProperties/gmd:MD_Dimension/gmd:resolution/gco:Measure
ISO-1 /mdb:MD_Metadata/mdb:spatialRepresentationInfo/msr:MD_Georectified/msr:axisDimensionProperties/msr:MD_Dimension[normalize-space(msr:dimensionName/msr:MD_DimensionNameTypeCode)='vertical']/msr:resolution/gco:Measure
netCDF /nc:netcdf/nc:attribute[@nc:name=geospatial_vertical_resolution]/@nc:value
Place KeywordA comma separated list of key words and phrases that give the location of the resource.

Note: Some dialects include keywords, but they do not include mechanisms for identifying the type. In those cases it is difficult to unambiguously identify place keywords.
ADIwg /adiwg:project/adiwg:idinfo/adiwg:keywords/adiwg:place/adiwg:placekey
DIF /dif:DIF/dif:Location/dif:Location_Category
DIF /dif:DIF/dif:Location/dif:Location_Type
DIF /dif:DIF/dif:Location/dif:Location_Subregion1
DIF /dif:DIF/dif:Location/dif:Location_Subregion2
DIF /dif:DIF/dif:Location/dif:Location_Subregion3
DIF /dif:DIF/dif:Location/dif:Detailed_Location
FGDC /fgdc:metadata/fgdc:idinfo/fgdc:keywords/fgdc:place/fgdc:placekey
HDF5.1 /hdf5:HDF5-File/hdf5:RootGroup/hdf5:Group[@Name='METADATA']/hdf5:Group[@Name='COLLECTIONMETADATA']/hdf5:Attribute[@Name='SpatialKeyword']/hdf5:Data/hdf5:DataFromFile
ISO /*/gmd:identificationInfo/*/gmd:descriptiveKeywords/gmd:MD_Keywords[normalize-space(gmd:type/gmd:MD_KeywordTypeCode)='place']/gmd:keyword/gco:CharacterString
ISO /gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:extent/gmd:EX_Extent/gmd:geographicElement/gmd:EX_GeographicDescription/gmd:geographicIdentifier/gmd:MD_Identifier/gmd:code/gco:CharacterString
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:descriptiveKeywords/mri:MD_Keywords[normalize-space(mri:type/mri:MD_KeywordTypeCode)='place']/mri:keyword/gco:CharacterString
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:geographicElement/gex:EX_GeographicDescription/gex:geographicIdentifier/mcc:MD_Identifier/mcc:code/gco:CharacterString
OGC-SOS /sos:Capabilities/ows:ServiceIdentification/ows:Keywords[ows:Type='place']/ows:Keyword
THREDDS /thredds:catalog/thredds:dataset/thredds:geospatialCoverage/thredds:name
Place Keyword VocabularyIf you are following a guideline for the place words/phrases in your "keywords" attribute, put the name of that guideline here.ADIwg /adiwg:project/adiwg:idinfo/adiwg:keywords/adiwg:place/adiwg:placekt
FGDC /fgdc:metadata/fgdc:idinfo/fgdc:keywords/fgdc:place/fgdc:placekt
ISO /*/gmd:identificationInfo/*/gmd:descriptiveKeywords/gmd:MD_Keywords[normalize-space(gmd:type/gmd:MD_KeywordTypeCode)='place']/gmd:thesaurusName/gmd:CI_Citation/gmd:title/gco:CharacterString
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:descriptiveKeywords/mri:MD_Keywords[normalize-space(mri:type/mri:MD_KeywordTypeCode)='place']/mri:thesaurusName/cit:CI_Citation/cit:title/gco:CharacterString
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/*/mri:extent/gex:EX_Extent/gex:geographicElement/gex:EX_GeographicDescription/gex:geographicIdentifier/mcc:MD_Identifier/mcc:authority/cit:CI_Citation/cit:title/gco:CharacterString
OGC-SOS /sos:Capabilities/ows:ServiceIdentification/ows:Keywords[ows:Type='place']/ows:Type/@ows:codespace
THREDDS //thredds:dataset/thredds:geospatialCoverage/thredds:name/@thredds:vocabulary
Geographic DescriptionA textual description for a geographic location.ISO /*/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:extent/gmd:EX_Extent/gmd:description/gco:CharacterString
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/mri:MD_DataIdentification/mri:extent/gex:EX_Extent/gex:geographicElement/gex:EX_GeographicDescription
Bounding PolygonAn enclosing geometric object defined with a series of XY coordinate pairs.ISO /*/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:extent/gmd:EX_Extent/gmd:geographicElement/gmd:EX_BoundingPolygon
ISO-1 /mdb:MD_Metadata/mdb:identificationInfo/mri:MD_DataIdentification/mri:extent/gex:EX_Extent/gex:geographicElement/gex:EX_BoundingPolygon

xPath Note: The xPaths included in this table use several wildcards. // means any path, so //gmd:CI_ResponsibleParty indicates a gmd:CI_ResponsibleParty anywhere in an XML file. /*/ indicates a single level with several possible elements. This usually indicates one of several concrete realizations of an abstract object. For example /*/gmd:identificationInfo could be gmd:MD_Metadata/gmd:identificationInfo or gmi:MI_Metadata/gmd:identificationInfo and gmd:identificationInfo//*/gmd:descriptiveKeywords could be gmd:identificationInfo/gmd:MD_DataIdentification/gmd:descriptiveKeywords or gmd:identificationInfo/srv:SV_ServiceIdentification/gmd:descriptiveKeywords.


Metadata Implementation