GeometryOperationExtensions.IsValid(Geometry) Method

Definition

Determines if the geometry specified is valid and can be indexed or used in queries by Azure Cosmos DB service.

If a geometry is not valid, it will not be indexed. Also during query time invalid geometries are equivalent to undefined.

public static bool IsValid (this Microsoft.Azure.Documents.Spatial.Geometry geometry);
static member IsValid : Microsoft.Azure.Documents.Spatial.Geometry -> bool
<Extension()>
Public Function IsValid (geometry As Geometry) As Boolean

Parameters

geometry
Geometry

The geometry to check for validity.

Returns

true if geometry is valid. false otherwise.

Examples

This example select all the documents which contain invalid geometries which were not indexed.

var invalidDocuments = documents.Where(document => !document.Location.IsValid());

Remarks

Currently this function supports geometry of type Point and Polygon.

Applies to