-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Due to the BaseTypes schema version change from 3.3 to 4.0, lcn schema, which is imported by lcv schema, must also be moved to version 5.0 to avoid errors related to different namespaces.
- Loading branch information
1 parent
e6e7e72
commit dfbdf49
Showing
1 changed file
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<?xml version="1.0" encoding="UTF-8"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:base="http://inspire.ec.europa.eu/schemas/base/3.3" xmlns:base2="http://inspire.ec.europa.eu/schemas/base2/2.0" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:lcn="http://inspire.ec.europa.eu/schemas/lcn/4.0" elementFormDefault="qualified" targetNamespace="http://inspire.ec.europa.eu/schemas/lcn/4.0" version="4.0"> | ||
<annotation> | ||
<documentation>application schema for Land Cover Nomenclature</documentation> | ||
</annotation> | ||
<import namespace="http://inspire.ec.europa.eu/schemas/base/3.3" schemaLocation="https://inspire.ec.europa.eu/schemas/base/3.3/BaseTypes.xsd"/> | ||
<import namespace="http://inspire.ec.europa.eu/schemas/base2/2.0" schemaLocation="https://inspire.ec.europa.eu/schemas/base2/2.0/BaseTypes2.xsd"/> | ||
<import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd"/> | ||
<!--XML Schema document created by ShapeChange--> | ||
<element name="LandCoverNomenclature" substitutionGroup="gml:AbstractObject" type="lcn:LandCoverNomenclatureType"> | ||
<annotation> | ||
<documentation>-- Name -- | ||
Land Cover Nomenclature | ||
|
||
-- Definition -- | ||
Information about reference national, institutional or local Land Cover nomenclature. | ||
|
||
-- Description -- | ||
Land Cover Nomenclature allows to reference nomenclatures documentation and associated code list, and to define them through an external reference or included within the data according 19144-2.</documentation> | ||
</annotation> | ||
</element> | ||
<complexType name="LandCoverNomenclatureType"> | ||
<sequence> | ||
<element minOccurs="0" name="embeddedDescription" nillable="true"> | ||
<annotation> | ||
<documentation>-- Name -- | ||
embedded Description | ||
|
||
-- Definition -- | ||
An embedded encoding of the classification system according to ISO 19144-2.</documentation> | ||
</annotation> | ||
<complexType> | ||
<complexContent> | ||
<extension base="anyType"> | ||
<attribute name="nilReason" type="gml:NilReasonType"/> | ||
</extension> | ||
</complexContent> | ||
</complexType> | ||
</element> | ||
<element name="inspireId" type="base:IdentifierPropertyType"> | ||
<annotation> | ||
<documentation>-- Name -- | ||
inspireId | ||
|
||
-- Definition -- | ||
External object identifier of the spatial object. | ||
|
||
-- Description -- | ||
NOTE An external object identifier is a unique object identifier published by the responsible body, which may be used by external applications to reference the spatial object. The identifier is an identifier of the spatial object, not an identifier of the real-world phenomenon.</documentation> | ||
</annotation> | ||
</element> | ||
<element name="nomenclatureCodeList" type="anyURI"> | ||
<annotation> | ||
<documentation>-- Name -- | ||
nomenclatureCodeList | ||
|
||
-- Definition -- | ||
An http URI pointing to the code list attached to the nomenclature used.</documentation> | ||
</annotation> | ||
</element> | ||
<element maxOccurs="unbounded" minOccurs="0" name="externalDescription" nillable="true"> | ||
<annotation> | ||
<documentation>-- Name -- | ||
externalDescription | ||
|
||
-- Definition -- | ||
Document describing the nomenclature used in this data set.</documentation> | ||
</annotation> | ||
<complexType> | ||
<complexContent> | ||
<extension base="gml:AbstractMemberType"> | ||
<sequence minOccurs="0"> | ||
<element ref="base2:DocumentCitation"/> | ||
</sequence> | ||
<attributeGroup ref="gml:AssociationAttributeGroup"/> | ||
</extension> | ||
</complexContent> | ||
</complexType> | ||
</element> | ||
<element name="responsibleParty" type="base2:RelatedPartyPropertyType"> | ||
<annotation> | ||
<documentation>-- Name -- | ||
responsible party | ||
|
||
-- Definition -- | ||
Party responsible for the development and/or maintenance of the nomenclature. | ||
|
||
-- Description -- | ||
The responsible party could be EEA, a national or local mapping agency, ...</documentation> | ||
</annotation> | ||
</element> | ||
</sequence> | ||
</complexType> | ||
<complexType name="LandCoverNomenclaturePropertyType"> | ||
<sequence> | ||
<element ref="lcn:LandCoverNomenclature"/> | ||
</sequence> | ||
</complexType> | ||
</schema> |