Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change boreholeLength encoding #122

Merged
merged 2 commits into from
Jul 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions schemas/ge-core/4.0/GeologyCore.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<import namespace="http://www.interactive-instruments.de/ShapeChange/AppInfo" schemaLocation="http://portele.de/ShapeChangeAppinfo.xsd"/>
<import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd"/>
<import namespace="http://www.opengis.net/swe/2.0" schemaLocation="http://schemas.opengis.net/sweCommon/2.0/swe.xsd"/>
<!--XML Schema document created by ShapeChange-->
<!-- v4.0.1 of this schema released in INSPIRE schema release v.2024.2.
Change performed: Added missing nilReason property to the boreholeLength element. - non-breaking change
See https://github.com/INSPIRE-MIF/application-schemas/releases/tag/2024.2 -->
<element name="AnthropogenicGeomorphologicFeature" substitutionGroup="ge:GeomorphologicFeature" type="ge:AnthropogenicGeomorphologicFeatureType">
<annotation>
<documentation>-- Definition --
Expand Down Expand Up @@ -60,14 +62,22 @@ External object identifier of the spatial object.</documentation>
<documentation>The downhole geometry of the borehole</documentation>
</annotation>
</element>
<element name="boreholeLength" nillable="true" type="swe:QuantityPropertyType">
<element name="boreholeLength" nillable="true">
<annotation>
<documentation>-- Definition --
The distance along a borehole.

-- Description --
This will be determined by the data provider (ie, "length" can have different sources, like drillers measurement, loggers measurement, survey).</documentation>
<documentation>-- Definition -- The distance along a borehole. -- Description -- This
will be determined by the data provider (ie, "length" can have different sources,
like drillers measurement, loggers measurement, survey).</documentation>
</annotation>
<complexType>
<complexContent>
<extension base="gml:AbstractMemberType">
<sequence>
<element ref="swe:Quantity"/>
</sequence>
<attribute name="nilReason" type="gml:NilReasonType"/>
</extension>
</complexContent>
</complexType>
</element>
<element name="elevation" nillable="true">
<annotation>
Expand Down