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>mustPickUpAndDropOffAtSameStop</ZoneUse>
<FloatingVehicles>true</FloatingVehicles>
</VehicleTypeZoneRestriction>
</vehicleRestrictions>
</MobilityServiceConstraintZone>
</mobilityServiceConstraintZones>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Rail transport, Roads and Road transport
</xsd:simpleType>
<xsd:simpleType name="ZoneUseEnumeration">
<xsd:annotation>
<xsd:documentation>Allowed values for Zone Use.</xsd:documentation>
<xsd:documentation>Allowed values for zone use.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="forbiddenZone"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,11 @@ Rail transport, Roads and Road transport
<xsd:enumeration value="mustPickUpAndDropOffInSameZone"/>
<xsd:enumeration value="noPassThrough"/>
<xsd:enumeration value="passThroughUseOnly"/>
<xsd:enumeration value="mustPickUpAndDropOffAtSameStop">
<xsd:annotation>
<xsd:documentation>Zones where vehicles must be returned to the same stop. +v2.0</xsd:documentation>
</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>If false, a vehicle must be picked up / dropped off at a station rather than anywhere in the ZONE. +v2.0</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:group>
<!-- ======================================================================= -->
Expand Down
Loading