Help for this page

Select Code to Download


  1. or download this
      while (read_from_file(&newzip, &newlat, &newlon)) {
        mydist = great_circle_distance(newlat,newlon,origlat,origlon);
    ...
        }
        ...
      }
    
  2. or download this
      float dist1cosine = cos(25.0 / EARTH_RADIUS);
      float dist2cosine = cos(50.0 / EARTH_RADIUS);
    ...
        }
        ...
      }
    
  3. or download this
       static inline float great_circle_distance_cosine(float lat1,
                                                 float long1,
    ...
                          sin(lat1) sin(lat2) */
               return (temp1 + temp2);
       }