Feeds:
Posts
Comments

Archive for December, 2008

hmm while am working on maps , i got a problem to find the distance between two latitudes and longitudes ..here is the code for that ..here unit =k is distance in kilometers and n is nautical miles…
private double distance(double lat1, double lon1, double lat2, double lon2, char unit)
{
double theta = lon1 – lon2;
double dist [...]

Read Full Post »