The sqlgeography tag has no wiki summary.
5
votes
1answer
73 views
Convert SQL geography to C#
What is the equivalent of this code in c #?
DECLARE @g geography;
DECLARE @h geography;
SET @g = geography::STGeomFromText('POLYGON((-122.358 47.653, -122.348 47.649, -122.348 47.658, -122.358 ...
-2
votes
0answers
18 views
SQL Azure Geography defaulting to input lat/long on insert?
This may seem like a dumb question, but I have a table with geography, and two numeric columns for lat/long.
I want to make it so the default value of geography is something like:
...
1
vote
0answers
68 views
Creating a sqlGeography LINESTRING using .NET
I am building an application that parses a variety of external map file formats (i.e. ShapeFiles, MapPoint, KML, etc.) and stores the shapes in a centralized database that will be used for a central ...
1
vote
0answers
54 views
Calculate square bounds on Earth with given radius for center point
I'm trying to calculate bounds for square with particular radius and when center of square is known(longitude, latitude). But I'm getting into troubles with it.
I've tried to use haversine formula ...
0
votes
3answers
82 views
.NET Equivalent of SQL Server STDistance
I can use the following SQL to calculate the distance between a fixed location and the location against the venues in the database.
SELECT Location.STDistance(geography::Point(51, -2, 4326)) * ...
0
votes
0answers
53 views
SQL Server 2012 SQLProject won't build when adding Geography query
I have a stored procedure that I am writing as a mock up for linking existing user gps to a road network I have uploade.. I have loaded southern california osm file into SQL Server 2012 ...
0
votes
0answers
180 views
No mapping exists from object type System.Data.Spatial.DbGeography to a known managed provider native type
I am building an app using the DotNetNuke 7 platform and am trying to write Geography data to the database. Here is some background on the project. I am building in VS 2012 and just upgraded to Server ...
0
votes
1answer
56 views
SQL error while using MySQL geometry function
ALTER PROCEDURE dbo.StoredProcedure1
AS
DECLARE @Seedid int, @data1 float, @data2 float, @g geometry
DECLARE member_cursor CURSOR FOR
SELECT id from test1 ;
OPEN member_cursor;
FETCH ...
0
votes
1answer
116 views
SQL Server 2008 Spatial Query performance
I have an application where user's store their commute routes in our database.
The routes are stored as polylines (linestrings).
The database also stores incidents, traffic accidents that kind of ...
0
votes
0answers
47 views
Why the area of CW and CCW polygons differes when using SqlGeography?
Problem Definition:
I'm using a SqlGeographyBuilder to make a simple polygon (with SRID of WGS84). When I add the vertices CW and call the STArea() method, The area would be very large. When I add ...
2
votes
3answers
269 views
Is a point within a geographical radius - SQL Server 2008
Given the following data, would it be possible, and if so which would be the most efficient method of determining whether the location 'Shurdington' in the first table is contained within the given ...
2
votes
1answer
85 views
SQL Summarize and Average
I am fairly new to SQL Server, .NET and MVC 3/4, so please bear with me. I had created a query in Linq-to-SQL that returned the data I needed, but unfortunately my host provider does not support the ...
0
votes
1answer
148 views
Enter data in geography column in SQL Server management studio
Perhaps a stupid question, but I couldn't figure it out for the life of me...
I've created a new table in SQL Server Management Studio, which includes a Geography column.
Now, I'm trying to enter ...
0
votes
0answers
210 views
How display results from SQL Server geography type on ASP.NET page?
I have latitude and longitude coordinates for polygons (each a plat of land) stored in a SQL Server database per the geography data type.
In SQL, it's very cool how they have a "Spatial results" tab ...
1
vote
1answer
145 views
Calculating distances between two tables full of GEOGRAPHY points
I'm using SQL Server.
I have two tables like this:
Table1:
Column1, Column2, Column3, GeoLoc
-----------------------------------
a b c 0xE61...
Table2:
Column1, Column2, ...
3
votes
1answer
420 views
SQL Server 2008 Spatial Query. How to group polygons if they intersect each other?
In my table there is a geometry field that stores polygons.
The polygons that intersects each other must be attached to and form a single polygon (see below)
The results can not be calculated but ...
0
votes
1answer
99 views
Bug in SQL Server geography?
Can someone please confirm if this is a bug or I'm doing something wrong please?
I've this stored procedure (SQL Server 2008)
ALTER PROCEDURE [dbo].[Distance]
@origin varchar(50),@destination ...
2
votes
1answer
56 views
What Big Data product or platform can I use to store geographical data?
I'm looking for a Big Data solution for storing records with geographical locations (Lat/Lng), and then performing a proximity search.
For instance, storing all buildings in a database, and then ...
2
votes
1answer
165 views
sql server union on geography columns
I'm using sql server 2008 R2, and I have two tables, Regions and Facilities. Both have a column containing a geography element.
I want to calculate the union on the intersection of the geograpy ...
1
vote
1answer
109 views
SQL Timeout Geography Query
I Get a random/intermittent SQL timeout on this query looks like it generates a lot of processing from a simple query. Is this correct behavior?
I have a simple stored procedure like this:
CREATE ...
4
votes
3answers
442 views
How to correct Polygon Ring Orientation using C# Entity Framework 5 DbGeography Spatial Data
I'm working with the new Entity-Framework 5 using the Spatial data type DbGeography as part of my model for storing in one instance, a POINT and in another instance a POLYGON.
When setting the value ...
4
votes
1answer
240 views
Is there an implementation for SqlGeometryBuilder ?
Before the implementation of spatial types (System.Data.Spatial.DBGeometry) in the Entity Framework we could handle the lack of spatial support using "Microsoft.SqlServer.Types.SqlGeometry". This ...
0
votes
2answers
331 views
Mapping SqlGeography with Dapper
I have entity "Point", that contains Id, Text and geography coordinates.
CREATE TABLE [Point] (
[Id] INT IDENTITY CONSTRAINT [PK_Point_Id] PRIMARY KEY,
[Coords] GEOGRAPHY NOT NULL,
...
0
votes
1answer
171 views
Microsoft.SqlServer.Types.GLArgumentException: 24205
Hi i am trying to create an geography area our of North-West lat & long, South-east lat&long
But i get this exception when i run query with these co-ordinates.
Select ...
2
votes
0answers
194 views
How to use the dbGeography spacial data type of EFv5 with a WCF RIA domain service class
I am using EFv5 which now has the geography data type. So i have an entity called Place and it has a property called geoLocation that is of type geography. VS 2012 has automatically created the code ...
0
votes
0answers
171 views
ASP .NET MVC, Windows Azure and SQL Geography
I used this tutorial to create ASP .NET MVC Site which manages table of Persons.
Now, I want to add another table (with controller) which manage a table with SQLGeography type. EF 4.3 don't support ...
0
votes
1answer
259 views
One of the identified items was in an invalid format - Microsoft.SqlServer.Type
I'm trying to retrieve geography data from my SQl Server 2012 DB with:
new SqlDataAdapter("SELECT [SpatialColumn] FROM [SpatialTable]", myConnection).Fill(myDatatable);
When the data is a Sql ...
0
votes
1answer
1k views
Create a SqlGeography polygon-circle from a center and radius
I would like to save a circle in a sql-server 2008 geography field, using c#.
In c# I have a latitude, a longitude and a radius but I just can't find a way to calculate the polygon that would ...
0
votes
1answer
79 views
Get position from geography column
I'm migrating a table containing geographic information as latitude, longitude, to one using a geography column (in SQL server 2008).
I need to update a stored procedure which returns those values.
...
0
votes
1answer
1k views
SQL Server - From longitude and latitude to geometry data type [duplicate]
Possible Duplicate:
SQL Server 2008 Spatial: find a point in polygon
I am working on an application that uses an SQL Server 2008 database. In this database I have a table named Session that ...
1
vote
1answer
438 views
GML to SQL Geography - 24200: The specified input does not represent a valid geography instance
I am currently in the process of integrating Google Maps into one of our applications. One of the requirements is to store a user defined area into the database. To do this I have been using the ...
1
vote
1answer
930 views
Mapping SqlGeography using Entity Framework code first
I am playing around with Entity Framework 4 and the sqlgeography datatype. I am having trouble getting Entity Framework map my sqlgeography types to the db. I have defined my class as POCO and would ...
0
votes
1answer
795 views
Search nearby points from a geography column
I have a geography typed column in my table with spatial index. How can I select the top N rows that is within X meters of a given Latitude/Longitude while making use of the index to improve ...
2
votes
1answer
161 views
Selecting from two tables into an XML
I'm trying to execute the following SQL:
SELECT * FROM Table2
INNER JOIN
(SELECT * FROM Table1
INNER JOIN
(SELECT MAX(DateTime) AS LastMeasurement, MeasurementId as LastMeasurementId
...
1
vote
1answer
379 views
SQL Query to return Geography type as XML
I'm trying to return an XML from a table which holds a Geography type.
SQL query:
SELECT *
From Events
ORDER BY HydrantId ASC
FOR XML RAW ('Event'), ROOT ('Events'), ELEMENTS XSINIL;
I'm getting ...
6
votes
1answer
352 views
Spatial index slowing down query
Background
I have a table that contains POLYGONS/MULTIPOLYGONS which represent customer territories:
The table contains roughly 8,000 rows
Approximately 90% of the polygons are circles
The ...
1
vote
1answer
121 views
When Using STUnion to construct a polygon, is it faster to do it on code or let the Database handle it?
I was just wondering which is faster:
Constructing a wkt polygon using SQLGeography's STUnion method.
Constructing a wkt polygon using the STUnion method built into MS SQL Server.
I only ask ...
0
votes
1answer
376 views
Calculating short distances between lat/long points
I have a MySQL table with Spatial Points, and need to calculate distances. I found lots of material on doing this using the Haversine formula, however all of these assume a large distance between ...
2
votes
1answer
515 views
NHibernate pass Geography type to Named Query SetParameter()
I'm in the process of introducing NHibernate 3 into a data access layer for an ASP.NET MVC web application.
Within the SQL Server 2008 R2 database, a geography datatype is used to store lat/long ...
1
vote
0answers
169 views
Return percentage of LINESTRING (SQL Server 2008 Geography)
I want to create a function in SQL 2008 R2 that, given 3 parameters (@path geography, @start_pct float, @end_pct float), will return a linestring based on percentage of length of @path.
For example
...
2
votes
2answers
1k views
'The specified input does not represent a valid geography instance' exception when using SqlGeographyBuilder
I've written a small application that reads in from a series of KML files and then converts them into the Microsoft.SqlServer.Types.SqlGeography type using the following code:
private ...
0
votes
2answers
107 views
Extra clauses with a CTE and Geopgraphy datatype
I'm creating a query to match based on distance people using zip codes using the Geography datatype in SQL Server. I have it 99% there, but I have two problems. At the moment, this searches by zip, ...
1
vote
1answer
877 views
How to bulk insert geography into a new sql server 2008 table
I have a very large shape file with hundreds of thousands of rows of polygons and other associated data, like formatted addressing and APN numbers. How do I get this data into a table with geography ...
0
votes
1answer
203 views
Efficient SQL Geography wilcard name search for 20mill+ records
We have a SQL 2008 database with 20million+ geoWe locations (and growing) , each location includes the standard name/address/Geography/ID/Etc columns.
We need a way to efficiently search through the ...
0
votes
1answer
327 views
Convert XAML to ShapeFile or SqlGeometry formats
I have some XAML based diagrams that consist of Paths embedded in Canvas objects e.g.
<Canvas x:Name="c1" Width="55.2533" Height="18.2933" Canvas.Left="194.606" Canvas.Top="194.131">
<Path ...
1
vote
2answers
605 views
Reformat SQLGeography polygons to JSON
I am building a web service that serves geographic boundary data in JSON format.
The geographic data is stored in an SQL Server 2008 R2 database using the geography type in a table. I use ...
0
votes
2answers
644 views
Ms SQL geography.STDistance returns wrong distance
I'm trying to query any locations within a specified distance from another location. The query is not the problem, but the distance returned by geography.STDistance is.
It seems STDistance makes ...
0
votes
1answer
110 views
SQL Server Geography datatype: weird behavior
I have an application that has been running for years now with no issues. Recently I decided to add a Geography type column to one of the tables, application uses. After doing so, the website on ...
6
votes
3answers
236 views
Geospatial data in SQL
I have been experimenting with geography datatype lately and just love it. But I can't decide should i convert from my current schema, that stores latitude and longitude in two separate numeric(9,5) ...
0
votes
1answer
423 views
SQL Server 2008 geography - spatial result - color based on another column value
I have a table like this in SQL Server 2008:
serv_type coords
------------------------
shop 0xE6100000010CE4857478080B49401CD2A8C0C9DE2C40
shop ...

