TSQL SQL Server 2008 r2
Is it possible to store a Polygon consisting of Latitudes and Longitudes and then perform a search within that Polygon to see whether given a given Latitude/Longitude exists within that Polygon?
If so, how does one go about this?
If not, can someone provide a suggestion as to the best way to go about this?
Example Polygon
LatLng(55.297622963050465, -4.627166781574488),
LatLng(55.25851203752759, -3.5724792815744877),
LatLng(55.034056344339206, -3.5450134612619877),
LatLng(54.955277168321636, -3.7647400237619877),
LatLng(54.92372217917785, -4.113555941730738),
LatLng(54.96946883538248, -4.561248812824488),
LatLng(55.151935308382306, -4.712310824543238);
Lat/Long to search
LatLng(55.10029008969451, -4.100017953449488),
Thanks in advance