sql >> Database >  >> RDS >> Sqlserver

SQL 2008 geografie en geometrie - welke te gebruiken?

Geografie is het type dat bedoeld is om punten op de aarde te plotten.

Als u een tabel heeft waarin Google Maps-punten als volgt worden opgeslagen:

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

dan zou je er punten in kunnen vullen met deze opgeslagen procedure:

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

Als u vervolgens de breedtegraad, lengtegraad en hoogte wilt opvragen, gebruikt u gewoon het volgende zoekformaat:

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;


  1. Waarom is er geen begrensde, alleen integere catalogiseringsoptie in SQL Server?

  2. Interfacefout (0, '')

  3. Word lid van het Q&A-forum voor ontwikkelaars

  4. Hoe TIMESTAMPADD() werkt in MariaDB