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

Epiap accessibility path link enhancement #538

Closed
Closed
Show file tree
Hide file tree
Changes from 2 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
34 changes: 34 additions & 0 deletions xsd/netex_part_1/part1_ifopt/netex_ifopt_path_support.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,40 @@ Rail transport, Roads and Road transport
<xsd:enumeration value="other"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="FlooringStatusEnumeration">
<xsd:annotation>
<xsd:documentation>Allowed values for the status of the flooring</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:NMTOKEN">
<xsd:enumeration value="good"/>
<xsd:enumeration value="worn"/>
<xsd:enumeration value="discomfortable"/>
<xsd:enumeration value="hazardous"/>
<xsd:enumeration value="unknown"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="TactileGuidingStripStatusEnumeration">
<xsd:annotation>
<xsd:documentation>Allowed values for the status of the Tactile Guiding Strip</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:NMTOKEN">
<xsd:enumeration value="primitive">
<xsd:annotation>
<xsd:documentation>when there is no guide strip as such but a decorative element or ledge can be used for this purpose</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="incorrect">
<xsd:annotation>
<xsd:documentation>when there is a guide strip but it does not correspond to a path that can actually be used (passes through the middle of an obstacle without going around it for example)</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="bad">
<xsd:annotation>
<xsd:documentation>when the guide strip is degraded and difficult to interpret</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<!-- ======================================================================= -->
<xsd:simpleType name="PlaceInSequenceIdType">
<xsd:annotation>
Expand Down
20 changes: 20 additions & 0 deletions xsd/netex_part_1/part1_ifopt/netex_ifopt_path_version.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,11 @@ Rail transport, Roads and Road transport
<xsd:documentation>Type of flooring of the walking surface. +v1.1</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="FlooringStatus" type="FlooringStatusEnumeration" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Status of the flooring</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="RightSideBorder" type="BorderTypeEnumeration" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Type of border on the right side (in the direction of the PATH LINK).</xsd:documentation>
Expand All @@ -186,11 +191,26 @@ Rail transport, Roads and Road transport
<xsd:documentation>Nature of the tactile warning strips (in the direction of the PATH LINK). +v1.1</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TactileWarningStripContrast" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>indicates whether the color of the possible warning strip is sufficiently contrasted with the color of the floor. To compare with the OpenStreetMap tag tactile_paving https://wiki.openstreetmap.org/wiki/FR:Key:tactile_paving</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TactileGuidingStrip" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Indicates whether there are guiding strips. +v1.1</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TactileGuidingStripContrast" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>indicates whether the color of the possible guide strip is sufficiently contrasted with the color of the floor. To compare with the OpenStreetMap tag tactile_paving https://wiki.openstreetmap.org/wiki/FR:Key:tactile_paving</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="TactileGuidingStripStatus" type="TactileGuidingStripStatusEnumeration" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Provides additional details on possible guide strip. To compare with the OpenStreetMap tag tactile_paving https://wiki.openstreetmap.org/wiki/FR:Key:tactile_paving</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:group>
<!-- ======================================================================= -->
Expand Down