Partager via


Méthode SqlGeography.EnvelopeCenter

Returns a point that can be used as the center of a bounding circle for the geography instance.

Espace de noms :  Microsoft.SqlServer.Types
Assembly :  Microsoft.SqlServer.Types (en Microsoft.SqlServer.Types.dll)

Syntaxe

'Déclaration
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)> _
Public Function EnvelopeCenter As SqlGeography
'Utilisation
Dim instance As SqlGeography 
Dim returnValue As SqlGeography 

returnValue = instance.EnvelopeCenter()
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public SqlGeography EnvelopeCenter()
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public:
SqlGeography^ EnvelopeCenter()
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
member EnvelopeCenter : unit -> SqlGeography
public function EnvelopeCenter() : SqlGeography

Valeur de retour

Type : Microsoft.SqlServer.Types.SqlGeography
A SqlGeography value that specifies the location of the center of a bounding circle.

Notes

To determine the bounding circle, each point in the instance is described as a vector from the center of the Earth to the point on the Earth's surface. The center point of the bounding circle is calculated by averaging all of the vectors. For closed loops, either in a polygon instance or a linestring instance, the first and last point is used only once.

This method returns a point. When used with EnvelopeAngle, the EnvelopeCenter method returns a bounding circle of a SqlGeography instance.

The EnvelopeCenter method returns a bounding circle for a SqlGeography instance, but the results are not guaranteed to produce the minimal bounding circle. In contrast, the SqlGeometry data type method STEnvelope is guaranteed to return the minimum bounding box when it is applied to a SqlGeometry instance.

Voir aussi

Référence

SqlGeography Classe

Espace de noms Microsoft.SqlServer.Types