Differences between revisions 2 and 3
Revision 2 as of 2008-04-28 13:16:52
Size: 279
Comment:
Revision 3 as of 2008-04-28 13:24:02
Size: 436
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Mit Hilfe der beiden gegebenen Funktionen kann man nun der beiden Eckpaare mit Hilfe der mapll-Funktion Koordinaten in Kilometern angeben:
Line 2: Line 4:
Line 8: Line 9:
shiftx=(xpc1-xpc2) #in [km]
shifty=(ypc1-ypc2) #in [km]
shiftx=(xpc1-xpc2) #Eckpunkte x,y in [km]
shifty=(ypc1-ypc2) #Eckpunkte x,y in [km]
Line 14: Line 15:
Der Vektor A gibt nun den Abstand der beiden Punkte aus: A=578.09 km A gibt nun den Abstand der beiden Punkte aus: A=578.09 km

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

LehreWiki: SiaExercisesLesson3LoesungPolarstereoGitter (last edited 2008-04-28 14:10:54 by NinaMaass)