Mit Hilfe der beiden gegebenen Funktionen kann man nun der beiden Eckpaare mit Hilfe der mapll-Funktion Koordinaten in Kilometern angeben:

   1 lat1,lon1=70,10 
   2 lat2,lon2=75,15
   3 xpc1,ypc1=mapll(lat1,lon1,1) 
   4 xpc2,ypc2=mapll(lat2,lon2,1)
   5 
   6 shiftx=(xpc1-xpc2) #Eckpunkte x,y in [km]
   7 shifty=(ypc1-ypc2) #Eckpunkte x,y in [km]
   8 
   9 A=sqrt(shiftx**2+shifty**2)

A gibt nun den Abstand der beiden Punkte aus: A=578.09 km