Udostępnij za pośrednictwem


Point

W SQL Server dane przestrzenne, Point jest to 0-wymiarowa obiekt reprezentujący pojedynczą lokalizację i mogą zawierać Z (podwyższenie poziomu), a wartości M (miara).

Przykłady

Poniższy przykład tworzy geometry Point wystąpienie reprezentujący punkt (3, 4) z SRID 0.

DECLARE @g geometry;
SET @g = geometry::STGeomFromText('POINT (3 4)', 0);

The next example creates a geometryPoint instance representing the point (3, 4) with a Z (elevation) value of 7, an M (measure) value of 2.5, and the default SRID of 0.

DECLARE @g geometry;
SET @g = geometry::Parse('POINT(3 4 7 2.5)');

The final example returns the X, Y, Z, and M values for the geometryPoint instance.

SELECT @g.STX;
SELECT @g.STY;
SELECT @g.Z;
SELECT @g.M;

Wartości Z i M mogą być jawnie określone jako wartość NULL, jak pokazano w poniższym przykładzie.

DECLARE @g geometry;
SET @g = geometry::Parse('POINT(3 4 NULL NULL)');