using System.Collections.Generic;
public static void Main()
List<GeoFence.Point> points = new List<GeoFence.Point>();
points.Add(new GeoFence.Point(41.003444, -109.045223));
points.Add(new GeoFence.Point(41.003444, -102.041524));
points.Add(new GeoFence.Point(36.993076, -102.041524));
points.Add(new GeoFence.Point(36.993076, -109.045223));
points.Add(new GeoFence.Point(41.003444, -109.045223));
GeoFence gf = new GeoFence(points);
GeoFence densegf = Densify(gf, new Distance(10, DistanceType.Kilometers));
foreach(var p in densegf.Points)
Console.WriteLine(p.Latitude + "," + p.Longitude);
Coordinate c = new Coordinate(41.02, -109.02, new EagerLoad(false));
Console.WriteLine(densegf.IsPointInPolygon(c));
c = new Coordinate(41.002, -109.02, new EagerLoad(false));
Console.WriteLine(densegf.IsPointInPolygon(c));
public static GeoFence Densify(GeoFence gf, Distance distance)
throw new InvalidOperationException("You cannot perform densification a Geofence that has less than 2 points.");
List<GeoFence.Point> ogpoints = new List<GeoFence.Point>(gf.Points);
List<List<GeoFence.Point>> inserts = new List<List<GeoFence.Point>>();
for (int x = 0; x < ogpoints.Count - 1; x++)
var p2 = ogpoints[x + 1];
List<GeoFence.Point> ipoints = new List<GeoFence.Point>();
Coordinate mc = new Coordinate(p1.Latitude, p1.Longitude, new EagerLoad(false));
Coordinate dc = new Coordinate(p2.Latitude, p2.Longitude, new EagerLoad(false));
while (new Distance(mc, dc).Meters > distance.Meters)
mc.Move(dc, distance, Shape.Ellipsoid);
ipoints.Add(new GeoFence.Point(mc.Latitude.ToDouble(), mc.Longitude.ToDouble()));
List<GeoFence.Point> densePoints = new List<GeoFence.Point>();
for (int x = 0; x < ogpoints.Count - 1; x++)
foreach (var dp in inserts[x])
densePoints.Add(ogpoints.Last());
return new GeoFence(densePoints);