Click here to Skip to main content
6,293,171 members and growing! (11,528 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » .NET Framework » General     Intermediate License: The Code Project Open License (CPOL)

Geo-referencing {Map Calibration}

By Mohammad Riazi, H.Riazi

Defining a set of equations that transfers Longitude, Latitude to X, Y coordinate system and vice versa
C#, .NET, Win2K, WinXPVS2005, Dev
Posted:5 Feb 2006
Views:69,577
Bookmarked:60 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
37 votes for this article.
Popularity: 5.61 Rating: 3.58 out of 5
4 votes, 11.4%
1
6 votes, 17.1%
2
1 vote, 2.9%
3
5 votes, 14.3%
4
19 votes, 54.3%
5
Sample screenshot

Introduction

As any GPS software requires background maps in order to see where the action takes place, thus any raster image i.e. JPG or BMP file can be used as the background. However, this requires some calibration in order to have the map fitting its true position.

What Is Required?

You need a *.jpg (or *.jpeg) picture file (from a map or from a satellite picture). For this purpose, you can scan a map, or make a screenshot from, for example, GoogleMap. You also need some reference points in order to calibrate it.

Moreover, you need to determine in which hemisphere you live in, i.e. Northern or Southern and Eastern or Western. The solution might change if you are in a different hemisphere. Since we are in N/E we'll give the solution that fits our hemisphere.

Explanations

As you might already know, formats such as BMP, JPG, TIFF, etc. are called Raster Images. The reason to this is the means by which information is stored in their structures, Pixels. In other words the top left corner of the picture is (0,0) pixel i.e. its x=0 increases in the positive X axis (from left to right) and y=0 increases in the negative Y axis (from top to bottom).
In the N/E hemisphere (our hemisphere), Longitude increases in the positive x direction (left to right) and the Latitude increases in the positive y direction (bottom to top*).
* Note the direction of y has changed here.

Raster Format

Now calibrating the map means transferring from x,y coordinate system to longitude, latitude coordinate system or vice versa. This purpose can be achieved in several ways. The method we chose to go with is calculating the coordinate of the top left corner and the rate of change in both latitude and longitude.

Code Clarification

So we need to define some relationship between the two coordinate systems and the simplest method is knowing the X,Y as well as Lat, Long coordinates of one point (In this case, we take 0,0 pixel i.e. Top Left Corner). Ideally the Latitude along the X-axis should not increase if we keep y=0. For example if point (0,0) has Latitude of 10 degrees then all points in the x direction should have lat = 10 degrees. Similarly the Y-axis should obey the mentioned rule.

Rate In Each Axis

Let’s take a look at another new concept, rate in each axis. If we move 1 pixel in Y direction how many degrees/Pixels does this represent?

We know three points for which the latitude and longitude are available. So what we do is take the point with the minimum longitude (leftmost point) and the corresponding x pixel. Name this Long1 and X1.

Next, take the point with the maximum longitude (rightmost point) and the matching x pixel. Name this Long2 and X2.

Calculate the rate of change in X direction, delX as:

[1] degrees per pixel in x direction
delX= (Long2-Long1)/ (X2-X1)
// calculating the deltax
delX = (maxLONG().LONG - minLONG().LONG) / (maxLONG().X - minLONG().X);

Similarly, take the maximum latitude (topmost point) and the corresponding y pixel. Name it Lat1 and Y1, the minimum latitude and the matching y pixel, Lat2 and Y2. We calculate delY as:

[2] degrees per pixel in y direction
delY= (Lat2-Lat1)/ (Y2-Y1)
// calculating the deltay
delY = (minLAT().LAT - maxLAT().LAT) / (minLAT().Y - maxLAT().Y);

Now we're on with the calculation of the reference point (Top, Left). Note the maximum latitude (uppermost point) as Lat4 and Y4.

[3] reference latitude
lat0= Lat4+y4 * delY
lat0 = maxLAT().LAT - maxLAT().Y * dY;

Also the minimum longitude (leftmost point) Long1, X1:

[4] reference longitude
long0= Long1 -x1 * delX
long0 = minLONG().LONG - minLONG().X * dX;

Lat0 and Long0 are the geo coordinate representation of point (0,0).
Having all the above information and formulas, we can simply use the following equations to calculate the X and Y points of any given Latitude and longitude.

Conversion between Geographic and Pixel Coordinates

To convert from latitude and longitude to X and Y, you use the following equation:

[5a – 6a] X and Y Coordinates
X= (long-long0)/delx
Y= (lat-lat0)/delY
public point LatLongtoXY(float Lat, float Long) 
{
    float X = (Long - LONG0) / dX;
        float Y = (Lat - LAT0) / dY;
        point pnt = new point(X, Y, Lat, Long);
        return pnt;
}

To convert to latitude and longitude from any X and Y point:

[5b - 6b] X and Y Coordinates
Longitude= long0 + delX * X
Latitude=lat0 + delY * Y
public point XYtoLatLong(float X, float Y)
{
        float Lat = LAT0 + dY * Y;
        float Long = LONG0 + dX * X;
        point pnt = new point(X, Y, Lat, Long);
        return pnt;
}

As a result, equations [1 2 3 4] will only be used once to digitize (Georeference) the map. From there, you only need equations [5a 5b – 6a 6b] to handle the conversions.

Using the Code

In order for the code to work, you need to build the geoReference library and use it in your projects.

geoReference contains a class point, which represents x, y, latitude and longitude of the reference points. We first create an array of points that hold the three reference points:

geoReference.point[] p = new geoReference.point[] 
{
        new geoReference.point(3.2f,3.1f,29.77f,52.7f),
        new geoReference.point(9.8f,10.2f,29.52f,52.97f),
        new geoReference.point(18.3f,8.6f,29.57f,53.31f)
};

Then we use the geoReference’s methods to convert from x,y to lat/long and vice versa:

geoReference gr = new geoReference(p);
//converting from Lat or Long to X,Y
geoReference.point pt = gr.LatLongtoXY(29.27f, 53.22f);

float x = pt.X;
float y = pt.Y;

Conclusion

You could now load a raster map in a picture box and use the above code to calibrate it. As an outcome if you pass the x and y coordinates to the mouse move event you could see the corresponding geo coordinates.

Special thanks …

To Diego Mijelshon for his excellent article ObjectComparer. It helped us with part of the code implementation.

History

  • 5th February, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Authors

Mohammad Riazi


Member
I was born in Shiraz, Iran. A beautiful city that's famous for its weather, poets, ancient culture.
Got my high school diploma from the QHS.
Studied Computer Eng. at the University of UNB (Canada) & Shiraz University.
Graduated from Shiraz University, department of Engineering 2004.
Currently studying e-Commerce (Masters) at the University of Shiraz.
Occupation: Software Developer (Senior)
Company: HSP - Hamrah sazan payam
Location: Iran, Islamic Republic Of Iran, Islamic Republic Of

H.Riazi


Member
I was born in Shiraz (Iran). The city of popular poets and flowers.
Graduated from Shiraz University in field of Computer Eng.
Studied more than 8 years in Canada and was at UNB (University of New Brunswick) for a year. Love to play Soccer and write C# code.

Occupation: Web Developer
Location: Iran, Islamic Republic Of Iran, Islamic Republic Of

Other popular .NET Framework articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 56 (Total in Forum: 56) (Refresh)FirstPrevNext
Questionproblem with x piwel and y pixel Pinmembermarti315:12 10 Jun '09  
GeneralThumps UP Pinmembermbaocha17:11 4 May '09  
GeneralRe: Thumps UP PinmemberMohammad Riazi2:19 5 May '09  
GeneralAssemblyinfo.cs PinmemberMember 360497323:36 5 Mar '09  
GeneralHi PinmemberCotamayor9:30 27 Jun '08  
GeneralRe: Hi PinmemberMohammad Riazi19:45 27 Jun '08  
GeneralRe: Hi PinmemberCotamayor6:30 30 Jun '08  
GeneralRe: Hi PinmemberMohammad Riazi20:39 30 Jun '08  
GeneralExcellent, you get my 5 Pinmemberjadothebest9:41 5 Jun '08  
GeneralRe: Excellent, you get my 5 PinmemberH.Riazi19:44 5 Jun '08  
GeneralTashakkor Pinmemberelectronlover12:10 28 Feb '08  
GeneralRe: Tashakkor PinmemberMohammad Riazi19:06 28 Feb '08  
Questionwhat about N/W Pinmembernokhod9:58 20 Nov '07  
GeneralThe algorithm is wrong PinmemberAdvantis12:33 6 Oct '07  
QuestionRequest Pinmemberpadamraj15:00 16 Aug '07  
GeneralStoring latitudes and longitudes in millisecond format (Int32) PinmemberPinx3:07 19 Jun '07  
QuestionConverting code to work with NW hemisphere PinmemberBubba Hawkins8:00 14 Jun '07  
GeneralHow to add size info Pinmembermiltash9:47 3 Jan '07  
GeneralMistakes !!! PinmemberMantasg21:45 22 Nov '06  
Generalyou are not taking into account unrectified images Pinmemberbbja4:48 3 Nov '06  
GeneralRe: you are not taking into account unrectified images PinmemberH.Riazi5:38 3 Nov '06  
GeneralRe: you are not taking into account unrectified images [modified] Pinmemberbbja6:41 3 Nov '06  
Generalone more question about georeference Pinmemberfadfooood13:45 30 Oct '06  
GeneralRe: one more question about georeference PinmemberH.Riazi17:33 30 Oct '06  
GeneralRe: one more question about georeference Pinmemberfadfooood1:33 31 Oct '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 5 Feb 2006
Editor: Deeksha Shenoy
Copyright 2006 by Mohammad Riazi, H.Riazi
Everything else Copyright © CodeProject, 1999-2009
Web12 | Advertise on the Code Project