I have created a list of 28 link ids which are in a sequence of bus-stop numbers and I want to assign those ids to the bus stop with the same id numbers.. I am writing a code like this:
//create transitStops
Map<String, Coord> busStopToCoordinate = getStopsCoordinates(); //contains the bus stop ids and coordinate.
for (Map.Entry<String, Coord> entry : busStopToCoordinate.entrySet()) {
String k = entry.getKey();
Coord v = entry.getValue();
TransitStopFacility stop = factory.createTransitStopFacility(Id.create(k, TransitStopFacility.class), v, false);
//stopLinkIds
final List<Id<Link>> stopLinkIdList = List.of(Id.createLinkId("5823673530001f"), Id.createLinkId("5145215680000f"), Id.createLinkId("317565150006f"),
Id.createLinkId("1504018850006f"), Id.createLinkId("5705260710001f"), Id.createLinkId("317565100018f"), Id.createLinkId("5637147670004f"),
Id.createLinkId("5606511090002f"), Id.createLinkId("5831437080006f"), Id.createLinkId("6568056490001f"), Id.createLinkId("6888270010007f"), //11
Id.createLinkId("6140720190001f"), Id.createLinkId("6598332090009f"), Id.createLinkId("6044866480001f"), Id.createLinkId("5637147760010f"), //15
Id.createLinkId("5418873140000f"), Id.createLinkId("295304080021f"), Id.createLinkId("6866052960004f"), //18-need to edit the link
Id.createLinkId("5542886270001f"), Id.createLinkId("281215370005f"), Id.createLinkId("5714501110001f"), Id.createLinkId("6036480960000f"), //22-traffic signal
Id.createLinkId("1504018850002f"), Id.createLinkId("6156254680000f"), Id.createLinkId("317565150042f"), Id.createLinkId("773640050003f"),
Id.createLinkId("3120319040006f"), Id.createLinkId("1912048840014f"));
//adding link ids to the stop. ~ Main Problem
for (int i = 0; i < stopLinkIdList.size(); i++) {
stop.setLinkId(stopLinkIdList.get(i));
}
\\adding stop to the transit schedule
schedule.addStopFacility(stop);
}
But the last link id is getting added to all the stops. How to rectify this error? I am adding the image of the output, so that one can better understand the question and the problem.enter image description here
You mentioned in your question:
And to do so you should replace this for loop:
by this:
and you better define the "stopLinkIdList" list in the beginning of your code instead of inside the foreach loop