C# Класс Azavea.Open.DAO.Criteria.Spatial.GreaterDistanceExpression

Looks for features greater than the given distance from the given shape.
Наследование: AbstractDistanceExpression
Показать файл Открыть проект

Открытые методы

Метод Описание
GreaterDistanceExpression ( string property, IGeometry shape, double distance ) : GeoAPI.Geometries

Looks for features greater than the given distance from the given shape.

GreaterDistanceExpression ( string property, IGeometry shape, double distance, bool trueOrNot ) : GeoAPI.Geometries

Looks for features greater than the given distance from the given shape.

Invert ( ) : IExpression

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.

Описание методов

GreaterDistanceExpression() публичный Метод

Looks for features greater than the given distance from the given shape.
public GreaterDistanceExpression ( string property, IGeometry shape, double distance ) : GeoAPI.Geometries
property string The data class' property/field being compared. /// May not be null.
shape IGeometry The shape we're measuring distance from.
distance double The distance must be greater than this.
Результат GeoAPI.Geometries

GreaterDistanceExpression() публичный Метод

Looks for features greater than the given distance from the given shape.
public GreaterDistanceExpression ( string property, IGeometry shape, double distance, bool trueOrNot ) : GeoAPI.Geometries
property string The data class' property/field being compared. /// May not be null.
shape IGeometry The shape we're measuring distance from.
distance double The distance must be greater than this.
trueOrNot bool True means look for matches (I.E. > distance), /// False means look for non-matches (I.E. <= distance)
Результат GeoAPI.Geometries

Invert() публичный Метод

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.
public Invert ( ) : IExpression
Результат IExpression