Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
4 changes: 3 additions & 1 deletion examples/functions/newModes/NewModes-CarPoolingExample.xml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,8 @@ In addition CUSTOMER PURCHASE PACKAGES showing the parameters that might be held
</Quay>
</quays>
</StopPlace>
</stopPlaces>
<taxiRanks>
<TaxiRank version="any" id="alphaville_hdv_taxi">
<Name>Taxi Rank at Alphaville Hotel de Ville</Name>
<adjacentSites>
Expand All @@ -276,7 +278,7 @@ In addition CUSTOMER PURCHASE PACKAGES showing the parameters that might be held
</TaxiStand>
</taxiStands>
</TaxiRank>
</stopPlaces>
</taxiRanks>
<pointsOfInterest>
<PointOfInterest version="any" id="alphaville_hdv">
<Name>ALphaville Hotel de Ville</Name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,8 @@
</Quay>
</quays>
</StopPlace>
</stopPlaces>
<taxiRanks>
<TaxiRank version="any" id="alphaville_hdv_taxi">
<Name>Taxi Rank at Alphaville Hotel de Ville</Name>
<adjacentSites>
Expand All @@ -409,7 +411,7 @@
</TaxiStand>
</taxiStands>
</TaxiRank>
</stopPlaces>
</taxiRanks>
<pointsOfInterest>
<PointOfInterest version="any" id="alphaville_hdv">
<Name>Alphaville Hotel de Ville</Name>
Expand Down
6 changes: 6 additions & 0 deletions xsd/netex_part_1/part1_frames/netex_siteFrame_version.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<xsd:include schemaLocation="../part1_ifopt/netex_ifopt_flexibleStopPlace_version.xsd"/>
<xsd:include schemaLocation="../part1_ifopt/netex_ifopt_pointOfInterest_version.xsd"/>
<xsd:include schemaLocation="../part1_ifopt/netex_ifopt_parking_version.xsd"/>
<xsd:include schemaLocation="../part1_ifopt/netex_taxiPlace_version.xsd"/>
<!-- ======================================================================= -->
<xsd:annotation>
<xsd:appinfo>
Expand Down Expand Up @@ -168,6 +169,11 @@ Rail transport, Roads and Road transport
<xsd:documentation>STOP PLACEs in frame.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="taxiRanks" type="taxiRanksInFrame_RelStructure" minOccurs="0">
<xsd:annotation>
<xsd:documentation>TAXI RANKs in frame.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="pointsOfInterest" type="pointsOfInterestInFrame_RelStructure" minOccurs="0">
<xsd:annotation>
<xsd:documentation>POINTS OF INTEREST in frame.</xsd:documentation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ Rail transport, Roads and Road transport
<!-- ===ENTIITY IN VERSION IN FRAME====(Used in SITE FRAME)=================================================== -->
<xsd:complexType name="stopPlacesInFrame_RelStructure">
<xsd:annotation>
<xsd:documentation>Type for containment in frame of STOP PLACE, VEHICLE MEETING POINT, TAXI RANK.</xsd:documentation>
<xsd:documentation>Type for containment in frame of STOP PLACE</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="containmentAggregationStructure">
<xsd:sequence>
<xsd:element ref="StopPlace_" maxOccurs="unbounded">
<xsd:element ref="StopPlace" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Can be a STOP PLACE, VEHICLE MEETING POINT, TAXI RANK.</xsd:documentation>
<xsd:documentation>Can be a STOP PLACE.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
Expand Down
16 changes: 16 additions & 0 deletions xsd/netex_part_1/part1_ifopt/netex_taxiPlace_version.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,22 @@ Rail transport, Roads and Road transport
<xsd:documentation>TAXI PLACE data types</xsd:documentation>
</xsd:annotation>
<!-- ======TAXI RANK ======================================================== -->
<xsd:complexType name="taxiRanksInFrame_RelStructure">
<xsd:annotation>
<xsd:documentation>Type for containment in frame of TAXI RANKs.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="containmentAggregationStructure">
<xsd:sequence>
<xsd:element ref="TaxiRank" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>TAXI RANK.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="TaxiRank" abstract="false" substitutionGroup="StopPlace_">
<xsd:annotation>
<xsd:documentation>A place comprising one or more locations where taxis may stop to pick up or set down passengersA place comprising one or more locations where taxis may stop to pick up or set down passengers. +v1.2.2
Expand Down