C# 클래스 Azavea.Open.DAO.Criteria.Spatial.GreaterDistanceSphereExpression

Looks for features greater than the given distance from the given shape, on a spherical surface.
상속: AbstractDistanceSphereExpression
파일 보기 프로젝트 열기: azavea/net-dao

공개 메소드들

메소드 설명
GreaterDistanceSphereExpression ( string property, IGeometry shape, double distance ) : GeoAPI.Geometries

Looks for features greater than the given distance from the given shape, on a spherical surface.

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

Looks for features greater than the given distance from the given shape, on a spherical surface.

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.

메소드 상세

GreaterDistanceSphereExpression() 공개 메소드

Looks for features greater than the given distance from the given shape, on a spherical surface.
public GreaterDistanceSphereExpression ( 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

GreaterDistanceSphereExpression() 공개 메소드

Looks for features greater than the given distance from the given shape, on a spherical surface.
public GreaterDistanceSphereExpression ( 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