0 out of 2 rated this helpful - Rate this topic

CollectionAggregate (geography Data Type)

SQL Server 2012

Creates a GeometryCollection instance from a set of geography objects.

ConvexHullAggregate ( geography_operand )
geography_operand

Is a geography type table column that represents a set of geography objects to be listed in the GeometryCollection instance.

SQL Server return type: geography

Throws a FormatException when there are input values that are not valid. See STIsValid (geography Data Type)

Method returns null when the input is empty or the input has different SRIDs. See Spatial Reference Identifiers (SRIDs)

Method ignores null inputs.

Note Note

Method returns null if all inputted values are null.

The following example returns a GeometryCollection instance that contains a set of geography objects.

USE AdventureWorks2012

GO

SELECT geography::CollectionAggregate(SpatialLocation).ToString() AS SpatialLocation

FROM Person.Address

WHERE City LIKE ('Bothell')

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.