Search in sources :

Example 1 with StopPlace

use of org.rutebanken.netex.model.StopPlace in project OpenTripPlanner by opentripplanner.

the class StopAndStationMapper method mapStopPlaceAllVersionsToStation.

private Station mapStopPlaceAllVersionsToStation(List<StopPlace> stopPlaceAllVersions) {
    // Map the highest priority StopPlace version to station
    StopPlace selectedStopPlace = first(stopPlaceAllVersions);
    Station station = stationMapper.map(selectedStopPlace);
    if (selectedStopPlace.getParentSiteRef() != null) {
        resultStationByMultiModalStationRfs.put(selectedStopPlace.getParentSiteRef().getRef(), station);
    }
    resultStations.add(station);
    return station;
}
Also used : Station(org.opentripplanner.model.Station) StopPlace(org.rutebanken.netex.model.StopPlace)

Example 2 with StopPlace

use of org.rutebanken.netex.model.StopPlace in project OpenTripPlanner by opentripplanner.

the class StopAndStationMapper method mapParentAndChildStops.

/**
 * @param stopPlaces all stop places including multiple versions of each.
 */
void mapParentAndChildStops(final Collection<StopPlace> stopPlaces) {
    // Prioritize StopPlace versions. Highest priority first.
    // TODO OTP2 - This should pushed up into the ReadOnlyHierarchicalVersionMapById as part of
    // - Issue: Netex import resolve version for all entities , not just stops #2781
    List<StopPlace> stopPlaceAllVersions = sortStopPlacesByValidityAndVersionDesc(stopPlaces);
    Station station = mapStopPlaceAllVersionsToStation(stopPlaceAllVersions);
    List<FareZone> fareZones = mapTariffZones(stopPlaceAllVersions);
    // never versions of the StopPlace
    for (StopPlace stopPlace : stopPlaceAllVersions) {
        for (Quay quay : listOfQuays(stopPlace)) {
            addNewStopToParentIfNotPresent(quay, station, fareZones);
        }
    }
}
Also used : Station(org.opentripplanner.model.Station) StopPlace(org.rutebanken.netex.model.StopPlace) Quay(org.rutebanken.netex.model.Quay) FareZone(org.opentripplanner.model.FareZone)

Example 3 with StopPlace

use of org.rutebanken.netex.model.StopPlace in project OpenTripPlanner by opentripplanner.

the class NetexImportDataIndexTest method stopPlace.

/* private methods */
private static StopPlace stopPlace(String id, String image) {
    StopPlace stopPlace = new StopPlace();
    stopPlace.setId(id);
    stopPlace.withImage(image);
    return stopPlace;
}
Also used : StopPlace(org.rutebanken.netex.model.StopPlace)

Example 4 with StopPlace

use of org.rutebanken.netex.model.StopPlace in project OpenTripPlanner by opentripplanner.

the class NetexImportDataIndexTest method lookupStopsById.

@Test
public void lookupStopsById() {
    StopPlace stopPlaceA = stopPlace(ID, null);
    StopPlace stopPlaceB = stopPlace(ID, "image_1");
    root.stopPlaceById.add(stopPlaceA);
    child.stopPlaceById.add(stopPlaceB);
    assertEquals(singletonList(stopPlaceA), root.stopPlaceById.lookup(ID));
    assertEquals(singletonList(stopPlaceB), child.stopPlaceById.lookup(ID));
    assertTrue(child.stopPlaceById.lookup(ID_2).isEmpty());
}
Also used : StopPlace(org.rutebanken.netex.model.StopPlace) Test(org.junit.Test)

Example 5 with StopPlace

use of org.rutebanken.netex.model.StopPlace in project OpenTripPlanner by opentripplanner.

the class StopAndStationMapperTest method mapStopPlaceAndQuays.

@Test
public void mapStopPlaceAndQuays() {
    Collection<StopPlace> stopPlaces = new ArrayList<>();
    StopPlace stopPlaceNew = createStopPlace("NSR:StopPlace:1", "Oslo S", "2", 59.909584, 10.755165, VehicleModeEnumeration.TRAM);
    StopPlace stopPlaceOld = createStopPlace("NSR:StopPlace:1", "Oslo S", "1", 59.909584, 10.755165, VehicleModeEnumeration.TRAM);
    stopPlaces.add(stopPlaceNew);
    stopPlaces.add(stopPlaceOld);
    Quay quay1a = createQuay("NSR:Quay:1", "", "1", 59.909323, 10.756205, "a");
    Quay quay1b = createQuay("NSR:Quay:1", "", "2", 59.909911, 10.753008, "A");
    Quay quay2 = createQuay("NSR:Quay:2", "", "1", 59.909911, 10.753008, "B");
    Quay quay3 = createQuay("NSR:Quay:3", "", "1", 59.909911, 10.753008, "C");
    stopPlaceNew.setQuays(new Quays_RelStructure().withQuayRefOrQuay(quay1b).withQuayRefOrQuay(quay2));
    stopPlaceOld.setQuays(new Quays_RelStructure().withQuayRefOrQuay(quay1a).withQuayRefOrQuay(quay3));
    HierarchicalVersionMapById<Quay> quaysById = new HierarchicalVersionMapById<>();
    quaysById.add(quay1a);
    quaysById.add(quay1a);
    quaysById.add(quay2);
    quaysById.add(quay3);
    StopAndStationMapper stopMapper = new StopAndStationMapper(MappingSupport.ID_FACTORY, quaysById, null, new DataImportIssueStore(false));
    stopMapper.mapParentAndChildStops(stopPlaces);
    Collection<Stop> stops = stopMapper.resultStops;
    Collection<Station> stations = stopMapper.resultStations;
    assertEquals(3, stops.size());
    assertEquals(1, stations.size());
    Station parentStop = stations.stream().filter(s -> s.getId().getId().equals("NSR:StopPlace:1")).findFirst().get();
    Stop childStop1 = stops.stream().filter(s -> s.getId().getId().equals("NSR:Quay:1")).findFirst().get();
    Stop childStop2 = stops.stream().filter(s -> s.getId().getId().equals("NSR:Quay:2")).findFirst().get();
    Stop childStop3 = stops.stream().filter(s -> s.getId().getId().equals("NSR:Quay:3")).findFirst().get();
    assertEquals("NSR:StopPlace:1", parentStop.getId().getId());
    assertEquals("NSR:Quay:1", childStop1.getId().getId());
    assertEquals("NSR:Quay:2", childStop2.getId().getId());
    assertEquals("NSR:Quay:3", childStop3.getId().getId());
    assertEquals(59.909911, childStop1.getLat(), 0.0001);
    assertEquals(10.753008, childStop1.getLon(), 0.0001);
    assertEquals("A", childStop1.getCode());
}
Also used : StopPlace(org.rutebanken.netex.model.StopPlace) HierarchicalVersionMapById(org.opentripplanner.netex.loader.util.HierarchicalVersionMapById) Stop(org.opentripplanner.model.Stop) ArrayList(java.util.ArrayList) Quays_RelStructure(org.rutebanken.netex.model.Quays_RelStructure) Station(org.opentripplanner.model.Station) Quay(org.rutebanken.netex.model.Quay) DataImportIssueStore(org.opentripplanner.graph_builder.DataImportIssueStore) Test(org.junit.Test)

Aggregations

StopPlace (org.rutebanken.netex.model.StopPlace)7 Station (org.opentripplanner.model.Station)3 Quay (org.rutebanken.netex.model.Quay)3 Test (org.junit.Test)2 ArrayList (java.util.ArrayList)1 Collection (java.util.Collection)1 DataImportIssueStore (org.opentripplanner.graph_builder.DataImportIssueStore)1 FareZone (org.opentripplanner.model.FareZone)1 Stop (org.opentripplanner.model.Stop)1 HierarchicalVersionMapById (org.opentripplanner.netex.loader.util.HierarchicalVersionMapById)1 DayTypeRefsToServiceIdAdapter (org.opentripplanner.netex.support.DayTypeRefsToServiceIdAdapter)1 Authority (org.rutebanken.netex.model.Authority)1 DayType (org.rutebanken.netex.model.DayType)1 DestinationDisplay (org.rutebanken.netex.model.DestinationDisplay)1 GroupOfLines (org.rutebanken.netex.model.GroupOfLines)1 GroupOfStopPlaces (org.rutebanken.netex.model.GroupOfStopPlaces)1 JourneyPattern (org.rutebanken.netex.model.JourneyPattern)1 Line (org.rutebanken.netex.model.Line)1 Notice (org.rutebanken.netex.model.Notice)1 NoticeAssignment (org.rutebanken.netex.model.NoticeAssignment)1