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

GBFSMapping - mustPickUpandDRopOffToSameStop #716 #730

Merged
merged 11 commits into from
May 15, 2024
Merged
4 changes: 4 additions & 0 deletions examples/standards/gbfs/Netex_gbfs_exm1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,10 @@ GBFS file: geofencing_zones.json.
<SimpleVehicleTypeRef ref="car1"/>
<!-- GBFS vehicle_type_id -->
</VehicleTypeZoneRestriction>
<VehicleTypeZoneRestriction>
<ZoneUse>mustPickUpAndDropOffInSameZone</ZoneUse>
ue71603 marked this conversation as resolved.
Show resolved Hide resolved
<FloatingVehicles>true</FloatingVehicles>
</VehicleTypeZoneRestriction>
</vehicleRestrictions>
</MobilityServiceConstraintZone>
</mobilityServiceConstraintZones>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ Rail transport, Roads and Road transport
<xsd:enumeration value="mustBoardInZone"/>
<xsd:enumeration value="mustAlightInZone"/>
<xsd:enumeration value="passThroughUseOnly"/>
<xsd:enumeration value="mustPickUpandDropOffToSameStop">
ue71603 marked this conversation as resolved.
Show resolved Hide resolved
<xsd:annotation>
<xsd:documentation>Special zones where vehicles must be returned to the same stop. +v2.0</xsd:documentation>
skinkie marked this conversation as resolved.
Show resolved Hide resolved
ue71603 marked this conversation as resolved.
Show resolved Hide resolved
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="other"/>
</xsd:restriction>
</xsd:simpleType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<xsd:include schemaLocation="../part5_rc/netex_nm_mobilityService_support.xsd"/>
<xsd:include schemaLocation="netex_nm_mobilityServiceConstraintZone_support.xsd"/>
<xsd:include schemaLocation="../../netex_framework/netex_reusableComponents/netex_vehicleType_support.xsd"/>
<xsd:include schemaLocation="../../netex_framework/netex_reusableComponents/netex_vehicle_support.xsd"/>
<!-- ======================================================================= -->
<xsd:include schemaLocation="../../netex_framework/netex_genericFramework/netex_zone_version.xsd"/>
<xsd:annotation>
Expand Down Expand Up @@ -199,6 +200,11 @@ Rail transport, Roads and Road transport
</xsd:annotation>
</xsd:element>
<xsd:element ref="TransportTypeRef" minOccurs="0"/>
<xsd:element name="FloatingVehicles" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The specific ZONE where a vehicle must be collected/returned from a station rather than anywhere in zone. +v2.0</xsd:documentation>
skinkie marked this conversation as resolved.
Show resolved Hide resolved
ue71603 marked this conversation as resolved.
Show resolved Hide resolved
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:group>
<!-- ======================================================================= -->
Expand Down