Tip | ||
---|---|---|
| ||
Each ICAO data set shall be provided together with metadata giving any limitations with regard to the use of the data set. |
Requirement | Reference | DS-META-005 |
Element Name | Limitations on use |
Obligation / Condition | Mandatory only if conditions on access or use apply |
Multiplicity | 0..* | |
ISO 19115 (2003) | Number | 68 |
Name | useLimitation |
Definition | Limitation affecting the fitness for use of the resource. Example, "not to be used for navigation" |
, which could be the case for a data set that is provided for evaluation purpose, in the initial implementation phase of the data set provision service. | |
XPath | gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:resourceConstraints/gmd:MD_Constraints/gmd:useLimitation |
Data type | CharacterString |
Domain | Free Text |
Example | Not to be used for navigation. | |
ISO 19115 (2003) | Number | 70 |
Name | accessConstraints |
Definition | Access constraints applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations on obtaining the resource or metadata |
XPath | gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:resourceConstraints/gmd:MD_LegalConstraints/gmd:accessConstraints |
Data type | MD_RestrictionCode |
Domain | Codelist from ISO 19115 |
Example | license | |
ISO 19115 (2003) | Number | 74 |
Name | classification |
Definition | Name of the handling restrictions on the resource or metadata |
XPath | gmd:MD_Metadata/gmd:identificationInfo/gmd:MD_DataIdentification/gmd:resourceConstraints/gmd:MD_SecurityConstraints/gmd:classification |
Data type | MD_ClassificationCode |
Domain | Codelist from ISO 19115 |
Example | restricted |
Implementing Instructions |
Use the correct type of constraint. These can be Legal Constraints or Security Constraints |
...
Code Block |
---|
...
|
...
|
...
| ||
<gmd:MD_Metadata> |
...
... |
...
<gmd:identificationInfo> |
...
<gmd:MD_DataIdentification> |
...
<gmd:resourceConstraints> |
...
<gmd:MD_Constraints> |
...
<gmd:useLimitation> |
...
<gco:CharacterString>Not to be used for navigation</gco:CharacterString> |
...
</gmd:useLimitation> |
...
</gmd:MD_Constraints> |
...
</gmd:resourceConstraints> |
...
<gmd:resourceConstraints> |
...
<gmd:MD_LegalConstraints> |
...
<gmd:accessConstraints> |
...
<gmd:MD_RestrictionCode codeList="./resources/Codelist/gmxCodeLisst.xml#MD_RestrictionCode" codeListValue="license">license</gmd:MD_RestrictionCode> |
...
</gmd:accessConstraints> |
...
</gmd:MD_LegalConstraints> |
...
</gmd:resourceConstraints> |
...
<gmd:resourceConstraints> |
...
<gmd:MD_SecurityConstraints> |
...
<gmd:classification> |
...
<gmd:MD_ClassificationCode codeList="./resources/Codelist/gmxCodeLists.xml#MD_ClassificationCode" codeListValue="restricted">restricted</gmd:MD_ClassificationCode> |
...
</gmd:classification> |
...
</gmd:MD_SecurityConstraints> |
...
</gmd:resourceConstraints> |
...
... |
...
</gmd:MD_DataIdentification> |
...
</gmd:identificationInfo> |
...
... |
...
</gmd:MD_Metadata> |