1
vote
0answers
30 views

Insert XY table data into SQL Spatial column

ArcGIS Server 10.1.1 SQL Server Standard 2012 Current workflow is user submits a table (text file) containing lat-long data (same spatial reference each time); SQL Server Integration services pushes ...
0
votes
0answers
8 views

Does SqlGeography line preserve order?

I am using the SqlGeography type in C# to store and retrieve a line from an SQL database. The direction of the line, and therefore the order of the points is important. My question is if the ...
5
votes
1answer
285 views

STGeomFromText not working on large polygons

I'm using Microsoft.SqlServer.Types to do intersections on polygons. SqlChars scFullSwath = new SqlChars(new SqlString(fullSwath)); SqlGeography fullSwathGeom = ...