StopPlace - minimalistic

Content

Blystadlia, Rælingen

A monomodal StopPlace with one Quay

The stop place in Blystadlia is designed to allow a bus to stop at one particular location in a one-way loop. This is modelled as a monomodal stop place (stop place for one transport type), and because it is located on a one-way street in it only has one quay. The stop place is served exclusively by bus, similar to the example for simple bus stop.

The stop place in the example has no facilities beyond a sign showing the transport mode at the stop and is included in order to show the principles of modelling a stop place in its simplest form.

The XML example in it its entirety can be found in the GitHub repository: https://github.com/entur/profile-norway-examples/blob/master/netex/stops/BasicStopPlace_example.xml

Elements

Below is a more detailed description of the most important elements of modelling a stop place.

Note that this is a simplified NeTEx XML. According to the Norwegian profile, there must be several elements for the file to be valid for data transfer to the stop place registry.

See example for simple stop place, bus for XML containing necessary items for successful validation.

PublicationDelivery

All XML files according to the Norwegian NeTEx-profile must be of a PublicationDelivery containing relevant Frames. (See GitHub for a complete example.)

StopPlaces

Lists all StopPlaces defined in this PublicationDelivery.

StopPlace

The stop place is defined with a name, transport- and stop place type, and must have defined accessibility information in order to satisfy the requirements for universal design.

StopPlace
<StopPlace version="any" id="NSR:StopPlace:10000000"> <Name>Blystadlia</Name> <!-- General accessible by wheelchair --> <AccessibilityAssessment version="any" id="NSR:AccessibilityAssessment:1"> <MobilityImpairedAccess>true</MobilityImpairedAccess> <limitations> <!-- Minimum requirements to UU-information --> <AccessibilityLimitation> <WheelchairAccess>true</WheelchairAccess> <StepFreeAccess>true</StepFreeAccess> </AccessibilityLimitation> </limitations> </AccessibilityAssessment> <Covered>outdoors</Covered> <placeEquipments> <PassengerInformationEquipment id="NSR:PassengerInformationEquipment" version="any"> <PassengerInformationFacilityList>passengerInformationDisplay</PassengerInformationFacilityList> </PassengerInformationEquipment> <GeneralSign id="NSR:GeneralSign:1" version="any"> <PrivateCode>512</PrivateCode> <SignContentType>transportMode</SignContentType> </GeneralSign> </placeEquipments> <TransportMode>bus</TransportMode> <StopPlaceType>onstreetBus</StopPlaceType> <quays> <!--- see its own description below --> </quays> </StopPlace>

Quay

The individual positions for boarding/alighting are defined as quays and include descriptions of its connections (parent stop), as well as info about facilities tied to the specific Quay, which may be relevant to the public.

Quay
<Quay version="any" id="NSR:Quay:11111111"> <Centroid> <!-- Always WGS84 --> <Location srsName="WGS84"> <Longitude>11.034508</Longitude> <Latitude>59.931081</Latitude> </Location> </Centroid> <Lighting>wellLit</Lighting> <PublicCode>2</PublicCode> </Quay>