Geographie ist der Typ, der zum Zeichnen von Punkten auf der Erde gedacht ist.
Wenn Sie eine Tabelle haben, die Google Maps-Punkte wie diese speichert:
CREATE TABLE geo_locations (
location_id uniqueidentifier NOT NULL,
position_point geography NOT NULL
);
dann könnten Sie Punkte darin mit dieser gespeicherten Prozedur füllen:
CREATE PROCEDURE proc_AddPoint
@latitude decimal(9,6),
@longitude decimal(9,6),
@altitude smallInt
AS
DECLARE @point geography = NULL;
BEGIN
SET NOCOUNT ON;
SET @point = geography::STPointFromText('POINT(' + CONVERT(varchar(15), @longitude) + ' ' +
CONVERT(varchar(15), @latitude) + ' ' +
CONVERT(varchar(10), @altitude) + ')', 4326)
INSERT INTO geo_locations
(
location_id,
position_point
)
VALUES
(
NEWID(),
@point
);
END
Wenn Sie dann Breitengrad, Längengrad und Höhe abfragen möchten, verwenden Sie einfach das folgende Abfrageformat:
SELECT
geo_locations.position_point.Lat AS latitude,
geo_locations.position_point.Long AS longitude,
geo_locations.position_point.Z AS altitude
FROM
geo_locations;