Skip to end of banner
Go to start of banner

Stopplace - Simple (i arbeid)

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Content

Bryn Skole, Oslo

Monomodal StopPlace with two Quays

Bryn skole (at Ole Deviks vei) is modeled as a  monomodal stop place (stopplace for one transport type) with two quays, and serves as an example of a stopplace that is only operated by bus. Stopplaces that are only operated by one type of transport, such as tram, metro, train or boat, must be modeled in a similar manner.

The stopplace for Bryn Skole has no facilities beyond a sign showing that there is a bus stop, with information board showing the busroute and timetable.

The entire XML example file is located on the projects's GitHub-repository at https://github.com/entur/profile-norway-examples/blob/master/netex/stops/BasicStopPlace-two-quays_example.xml

Elements

The following is a more detailed description of the most important elements that must be included in the data transfer to the stopplaceregister:

PublicationDelivery

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

Validity

Describes validity criteria for the data set, in the example validity from a given date (without end date).


ValidityConditions
<validityConditions>
	<AvailabilityCondition version="any" id="NSR:AvailabilityCondition:1">
		<FromDate>2017-03-08T12:12:00.0Z</FromDate>
	</AvailabilityCondition>
</validityConditions>

Organization

Each operator, as well as other authorities, has its own "namespace" - Xmlns - (cf. Administration Code) which uniquely defines the submitter of the dataset.

Will be managed by the stopplaceregister

Codespace
<codespaces>
	<Codespace id="NRS">
		<Xmlns>NSR</Xmlns>
		<XmlnsUrl>http://www.entur.org/ns/nsr</XmlnsUrl>
	</Codespace>
</codespaces>

Site Frame

This block contains the information relevant to describing "physical" objects, including StopPlace, Quay and Facilities / Equipment found on them.

<SiteFrame version="any" id="NSR:SiteFrame:1">
	<!-- ===Stoppesteder=== -->
	<!-- Detaljene for StopPlace og Quay vises lenger ned i eksempelet -->
	<stopPlaces>
		<StopPlace>
			[...]
			<quays>
				<Quay>[...]</Quay>
			</quays>
		</StopPlace>
	</stopPlaces>
	
	<siteFacilitySets>
		<SiteFacilitySet id="NSR:SiteFacilitySet:timetablePoster" version="any">
			<PassengerInformationEquipmentList>timetablePoster</PassengerInformationEquipmentList>
		</SiteFacilitySet>
		<SiteFacilitySet id="NSR:SiteFacilitySet:lineNetworkPlan" version="any">
			<PassengerInformationEquipmentList>lineNetworkPlan</PassengerInformationEquipmentList>
		</SiteFacilitySet>
		<SiteFacilitySet id="NSR:SiteFacilitySet:fareInformation" version="any">
			<PassengerInformationEquipmentList>fareInformation</PassengerInformationEquipmentList>
		</SiteFacilitySet>
	</siteFacilitySets>
</SiteFrame>

Stop Place

The stopplace is generally described by name, short name, location and should as a minimum have defined overall accessibility information to satisfy universal design requirements. (Note that for the more complicated stopplace, this should be modeled as NavigationPaths when relevant.)

Stoppestedet beskrives overordnet med navn, kortnavn, lokasjon og skal som minimum ha definert overordnet tilgjenelighetsinformasjon for å tilfredsstille krav om universell utforming. (Merk at for mer kompliserte stoppestedet bør dette modeleres som NavigationPaths når relevant.)

The stopplace must also define the type of transport and the stopplace type.

<!-- Merk: Holdeplass-ID vil komme fra Holdeplassregisteret -->
<StopPlace version="any" id="NSR:StopPlace:12345678">
	<Centroid>
		<Location srsName="WGS84" id="NSR:Location:1">
			<Longitude>10.824609</Longitude>
			<Latitude>59.913915</Latitude>
		</Location>
	</Centroid>
	<AccessibilityAssessment version="any" id="NSR:AccessibilityAssessment:1">
		<MobilityImpairedAccess>true</MobilityImpairedAccess>
		<limitations>
			<AccessibilityLimitation>
				<WheelchairAccess>true</WheelchairAccess>
				<StepFreeAccess>true</StepFreeAccess>
			</AccessibilityLimitation>
		</limitations>
	</AccessibilityAssessment>

	<placeEquipments>
		<GeneralSign id="NSR:GeneralSign:1" version="any">
			<PrivateCode>512</PrivateCode>
			<SignContentType>transportMode</SignContentType>
		</GeneralSign>
	</placeEquipments>

	<TransportMode>bus</TransportMode>
	<StopPlaceType>onstreetBus</StopPlaceType>

	<quays>
		[...]
	</quays>
</StopPlace>

Quay

The individual stopplace for disembarking/ boarding is defined as a Quay with connection description, for example relevant nearby roads, direction and relevant info to be presented to the public.

<Quay version="any" id="NSR:Quay:12345679">
	<Centroid>
		<Location>
			<Longitude>59.9139819</Longitude>
			<Latitude>10.8247039</Latitude>
		</Location>
	</Centroid>
	<Lighting>poorlyLit</Lighting>
	<facilities>
		<SiteFacilitySetRef ref="NSR:SiteFacilitySet:timetablePoster"/>
		<SiteFacilitySetRef ref="NSR:SiteFacilitySet:fareInformation"/>
	</facilities>
	<PublicCode>Sør</PublicCode>
	<CompassBearing>200</CompassBearing>
</Quay>
  • No labels