feat: adjust process-stops-from-import.txt to API version v1.1.11

This commit is contained in:
dancingCycle 2022-11-29 12:06:29 +01:00
parent f48a1e1572
commit 5e563236a1
1 changed files with 10 additions and 2 deletions

View File

@ -1,10 +1,18 @@
@startuml
start
repeat
if (Does tmp zone map contains stop key) then (yes)
if (Does fare map record contains stop key) then (yes)
if (Does stop name contains a blank?) then (yes)
:set city and stop name using string manipulation;
else (no)
:set city field using stop import record;
:set stop name field using stop import record;
endif
:update stop in storge;
:remove stop record from stop import;
else (no)
endif
repeat while (next stop record?) is (yes)
repeat while (next stop record in import?) is (yes)
->no;
end
@enduml