Click here to Skip to main content
15,867,330 members
Articles / Web Development / ASP.NET

A Simple Geo Fencing Using Polygon Method

Rate me:
Please Sign up or sign in to vote.
4.13/5 (13 votes)
7 Mar 2010CPOL2 min read 225.7K   7.1K   58   53
A Simple Geo fencing using polygon method

Introduction

One of the important feature of GPS Tracking software using GPS Tracking devices is geo-fencing and its ability to help keep track of assets. Geo-fencing allows users of a GPS Tracking Solution to draw zones (i.e., a Geo Fence) around places of work, customer’s sites and secure areas. These geo fences when crossed by a GPS equipped vehicle or person can trigger a warning to the user or operator via SMS or Email.

Geo Fence

A Geo fence is a virtual perimeter on a geographic area using a location-based service, so that when the geo fencing device enters or exits the area, a notification is generated. The notification can contain information about the location of the device and might be sent to a mobile telephone or an email account. Reference: http://en.wikipedia.org/wiki/Geofence.

Background

For geo-fencing, I used Polygonal geo-fencing method where a polygon is drawn around the route or area. Using this method, GPS Tracking devices can be tracked either inside or outside of the polygon.

Determining a Point

The function will return true if the point X,Y is inside the polygon, or false if it is not. If the point is exactly on the edge of the polygon, then the function may return true or false. Thanks for the article “Determining Whether A Point Is Inside A Complex Polygon”.

C#
public bool FindPoint(double X, double Y)
{
            int sides = this.Count() - 1;
            int j = sides - 1;
            bool pointStatus = false;
            for (int i = 0; i < sides; i++)
            {
                if (myPts[i].Y < Y && myPts[j].Y >= Y || 
			myPts[j].Y < Y && myPts[i].Y >= Y)
                {
                    if (myPts[i].X + (Y - myPts[i].Y) / 
			(myPts[j].Y - myPts[i].Y) * (myPts[j].X - myPts[i].X) < X)
                    {
                        pointStatus = !pointStatus ;                        
                    }
                }
                j = i;
            }
            return pointStatus;
}

Creating a Polygon

Image 1

On the map, draw a polygon to the area which is to be geo-fenced and capture the corner points of the polygon and store into XML file (see: PolygonPoints.XML). loadData() function will create a polygon using defined corner points in the XML file.

C#
private void loadData()
{
    DataSet ds = new DataSet();
    ds.ReadXml("PolygonPoints.XML");

    foreach (DataRow dr in ds.Tables[0].Rows)
    {
        Point p = new Point();

        //Convert Latitude into degrees
        String Lat = dr[0].ToString();
        double LatSec = Double.Parse(Lat.Substring(4, 4)) / 6000;
        double LatMin = (Double.Parse(Lat.Substring(2, 2)) + LatSec) / 60;
        p.X = Double.Parse(Lat.Substring(0, 2)) + LatMin;

        //Convert Longitude into degrees
        String Long = dr[1].ToString();
        double LongSec = Double.Parse(Long.Substring(5, 4)) / 6000;
        double LongMin = (Double.Parse(Long.Substring(3, 2)) + LongSec) / 60;
        p.Y = Double.Parse(Long.Substring(0, 3)) + LongMin;
        points.Add(p);              
    }
} 

Sample Code

Image 2

When you run and enter latitude and longitude outside the polygon, then a message shows point not found in the route and otherwise it shows point found in the route.

Image 3
C#
PolyGon myRoute = new PolyGon(points);
bool stat = myRoute.FindPoint(Double.Parse(txtLat.Text.ToString()), 
		Double.Parse(txtLang.Text.ToString()));
if(stat)
{
    lblResult.Text = "Point found in the route";
}
else
    lblResult.Text = "Point not found in the route";

License

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


Written By
Architect R2 Technologies
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: ask about coordinat in the xml file? Pin
RajuBhupathi16-Aug-10 1:09
professionalRajuBhupathi16-Aug-10 1:09 
GeneralRe: ask about coordinat in the xml file? Pin
RajuBhupathi16-Aug-10 1:10
professionalRajuBhupathi16-Aug-10 1:10 
GeneralRe: ask about coordinat in the xml file? Pin
oldsap16-Aug-10 13:23
oldsap16-Aug-10 13:23 
GeneralRe: ask about coordinat in the xml file? Pin
oldsap17-Aug-10 20:48
oldsap17-Aug-10 20:48 
GeneralRe: ask about coordinat in the xml file? Pin
RajuBhupathi17-Aug-10 21:56
professionalRajuBhupathi17-Aug-10 21:56 
GeneralRe: ask about coordinat in the xml file? Pin
oldsap17-Aug-10 22:07
oldsap17-Aug-10 22:07 
GeneralRe: ask about coordinat in the xml file? Pin
RajuBhupathi17-Aug-10 22:22
professionalRajuBhupathi17-Aug-10 22:22 
GeneralRe: ask about coordinat in the xml file? Pin
oldsap17-Aug-10 22:23
oldsap17-Aug-10 22:23 
GeneralRe: ask about coordinat in the xml file? Pin
oldsap17-Aug-10 22:59
oldsap17-Aug-10 22:59 
GeneralRe: ask about coordinat in the xml file? Pin
RajuBhupathi17-Aug-10 23:01
professionalRajuBhupathi17-Aug-10 23:01 
QuestionHow do you capture the points of the polygon? Pin
Qwertie8-Mar-10 18:15
Qwertie8-Mar-10 18:15 
AnswerRe: How do you capture the points of the polygon? Pin
RajuBhupathi9-Mar-10 19:52
professionalRajuBhupathi9-Mar-10 19:52 
GeneralZIP corrupt Pin
Member 32792737-Mar-10 3:17
Member 32792737-Mar-10 3:17 
I can not download the ZIP, is corrupted.
GeneralRe: ZIP corrupt Pin
RajuBhupathi7-Mar-10 4:34
professionalRajuBhupathi7-Mar-10 4:34 
GeneralRe: ZIP corrupt Pin
Member 32792737-Mar-10 7:41
Member 32792737-Mar-10 7:41 
GeneralMessage Removed Pin
5-Mar-10 10:52
mvaPaulo Zemek5-Mar-10 10:52 
GeneralRe: My vote of 2 Pin
RajuBhupathi7-Mar-10 4:33
professionalRajuBhupathi7-Mar-10 4:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.