plantuml-sandbox/src/stops-import/process-stops-from-import.txt

19 lines
456 B
Plaintext

@startuml
start
repeat
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 in import?) is (yes)
->no;
end
@enduml