Sqlserver
 sql >> Base de données >  >> RDS >> Sqlserver

Géographie et géométrie SQL 2008 - lequel utiliser ?

La géographie est le type destiné à tracer des points sur la terre.

Si vous avez un tableau qui stocke des points Google Maps comme celui-ci :

CREATE TABLE geo_locations (
    location_id       uniqueidentifier  NOT NULL,
    position_point    geography         NOT NULL
);

alors vous pourriez y remplir des points avec cette procédure stockée :

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

Ensuite, si vous souhaitez interroger la latitude, la longitude et l'altitude, utilisez simplement le format de requête suivant :

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;