This visual execution shows how Redis stores geo locations in a sorted set using GEOADD. Two locations, Palermo and Catania, are added with their longitude and latitude. Then GEORADIUS queries locations within 200 km of point (15,37), returning Catania and Palermo sorted by distance ascending. The WITHDIST option includes the distance in the results. The execution table tracks each command and result, and the variable tracker shows how the 'places' set and query results change. Key moments clarify why sorting happens by distance and what WITHDIST does. The quiz tests understanding of distances, command steps, and radius effects. This helps beginners see step-by-step how geo proximity queries work with Redis sorted sets.