Transpose[xlist,ylist,zlist]
list=Transpose[xlist,ylist,zlist] returns this error: Transpose::nonopt: Options expected (instead of {333333,77777}) beyond position 2 in Transpose[{111111,55555},{222222,66666},{333333,77777}]. An option must be a rule or a list of rules. >>
Sorry,
Transpose[{xlist,ylist,zlist}]
Thanks. Now that I have a list of 3 dimensional points, how do I find out how many points are in the list? I need to write a for loop that goes through them all, converts them all to latitude/longitude, and puts them all on the same 2d map.
Length[myList]