I created a route based on my way to work.
Since walking and distance depends on time, I decided to use an agenda to create my “frames” over time, and divide the actions I considered key on my path. I took a video of my route which was guided at first by the lights on the street, helping me create the main drawing of my path. On my way, draw and note peculiar things on the streets that could be used as variables while walking. On the agenda, I used the space of each day to write and draw each set of actions, starting from the day it was made; March 27th.
There’s one main route (the one I actually did) illustrated on the agenda. There is one point where the route can change (goto Wed1st or goto Thu2nd), creating a secondary one.
The idea of using this medium for my map is to create the option of “jumping” through the frames, as I call, depending on the decision made. Also, I think it’s an easier way to visualize it.









pseudocode:
// walk.work
:::::::::::::::::::::::::::::::::::::::::::::
goOutside();
doors = 2;
if doors open;
walk outside;
else;
open doors
walk outside;
:::::::::::::::::::::::::::::::::::::::::::::
if brickWall both sides;
keep walking;
else:
stop;
turn right;
:::::::::::::::::::::::::::::::::::::::::::::
walk one block;
if obstacle;
move x = 5;
move y = 5;
move x = -10;
else;
keep walking;
:::::::::::::::::::::::::::::::::::::::::::::
if leftWall = 0;
stop walking;
else;
keep walking;
if light is red;
goto RuteA
:::::::::::::::::::::::::::::::::::::::::::::
ruteA();
walk one block;
for light red;
stop;
for light green;
walk one block;
- - - - - - - - - - - - - -
walk one block;
if rightBuildings = 0;
stop;
turn right;
else;
keep walking;
- - - - - - - - - - - - - -
walk;
for light = blinks;
walk faster;
if (”Home of Cheers” = right);
turn left;
else;
keep walking;
stop;
for light = white;
walk;
- - - - - - - - - - - - - -
for orangeBarrel = true;
move x = 5;
move = 2;
move x = -10;
walk one block;
for railing = true;
move x = -5;
move y = 30;
move x = -10;
walk
- - - - - - - - - - - - - -
if blackFenceRight = true;
keep walking;
else;
stop;
- - - - - - - - - - - - - -
if light = red
RuteA2;
:::::::::::::::::::::::::::::::::::::::::::::
Rute A2();
walk one block;
for phoneBoothLeft = true;
stop;
turn left;
if light = red;
stop;
else;
walk;
cross street;
- - - - - - - - - - - - - -
for phoneBoothLeft = true;
turn right;
if light = red;
stop;
else;
walk;
- - - - - - - - - - - - - -
if (greenWall = closer) && (phoneBoothRight);
stop;
else;
keep walking;
- - - - - - - - - - - - - -
walk one block;
if (blackFootBridge = front) && (light = white);
cross street;
else;
keep walking;
stop;
turn left;
- - - - - - - - - - - - - -
wait;
light = white;
walk;
walk one block;
if stepInPedestrianCrossing;
stop;
else;
keep walking;
- - - - - - - - - - - - - -
turn left;
walk;
if (grayDoor) && (orangeCone);
stop;
else;
walk;
- - - - - - - - - - - - - -
glass door = front;
open door;
:::::::::::::::::::::::::::::::::::::::::::::