Table of Contents

Constructor SpatialCovers

Namespace
YndigoBlue.Velocity.Functions
Assembly
YndigoBlue.Velocity.dll

SpatialCovers(Column, Geometry)

Initializes a new instance of ST_Covers with a column and geometry literal.

public SpatialCovers(Column column, Geometry geometry)

Parameters

column Column

The spatial column to test.

geometry Geometry

The geometry to test if it is covered by the column.

SpatialCovers(Column, Geography)

Initializes a new instance of ST_Covers with a column and geography literal.

public SpatialCovers(Column column, Geography geogpraphy)

Parameters

column Column

The spatial column to test.

geogpraphy Geography

The geography to test if it is covered by the column.

SpatialCovers(Geometry, Column)

Initializes a new instance of ST_Covers with a geometry literal and column.

public SpatialCovers(Geometry geometry, Column column)

Parameters

geometry Geometry

The geometry to test.

column Column

The spatial column to test if it is covered by the geometry.

SpatialCovers(Geography, Column)

Initializes a new instance of ST_Covers with a geography literal and column.

public SpatialCovers(Geography geogpraphy, Column column)

Parameters

geogpraphy Geography

The geography to test.

column Column

The spatial column to test if it is covered by the geography.

SpatialCovers(Column, Column)

Initializes a new instance of ST_Covers with two columns for spatial joins.

public SpatialCovers(Column column1, Column column2)

Parameters

column1 Column

The first spatial column (covering geometry).

column2 Column

The second spatial column (covered geometry).

SpatialCovers(Function, Geometry)

Initializes a new instance of ST_Covers with a function result and Geometry literal for function chaining.

public SpatialCovers(Function function, Geometry geometry)

Parameters

function Function

A spatial function that returns a geometry to test as covering.

geometry Geometry

The geometry to test if it is covered.

SpatialCovers(Function, Geography)

Initializes a new instance of ST_Covers with a function result and Geography literal for function chaining.

public SpatialCovers(Function function, Geography geography)

Parameters

function Function

A spatial function that returns a geography to test as covering.

geography Geography

The geography to test if it is covered.

SpatialCovers(Geometry, Function)

Initializes a new instance of ST_Covers with a Geometry literal and function result for function chaining.

public SpatialCovers(Geometry geometry, Function function)

Parameters

geometry Geometry

The geometry to test as covering.

function Function

A spatial function that returns a geometry to test if it is covered.

SpatialCovers(Geography, Function)

Initializes a new instance of ST_Covers with a Geography literal and function result for function chaining.

public SpatialCovers(Geography geography, Function function)

Parameters

geography Geography

The geography to test as covering.

function Function

A spatial function that returns a geography to test if it is covered.

SpatialCovers(Function, Column)

Initializes a new instance of ST_Covers with a function result and column for function chaining.

public SpatialCovers(Function function, Column column)

Parameters

function Function

A spatial function that returns a geometry to test as covering.

column Column

The column containing geometries to test if they are covered.

SpatialCovers(Column, Function)

Initializes a new instance of ST_Covers with a column and function result for function chaining.

public SpatialCovers(Column column, Function function)

Parameters

column Column

The column containing geometries to test as covering.

function Function

A spatial function that returns a geometry to test if it is covered.

SpatialCovers(Function, Function)

Initializes a new instance of ST_Covers with two function results for function chaining.

public SpatialCovers(Function function1, Function function2)

Parameters

function1 Function

A spatial function that returns a geometry to test as covering.

function2 Function

A spatial function that returns a geometry to test if it is covered.