Azavea.Open.DAO.Criteria.Spatial.GreaterDistanceExpression.GreaterDistanceExpression C# (CSharp) Method

GreaterDistanceExpression() public method

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.
return GeoAPI.Geometries
        public GreaterDistanceExpression(string property, IGeometry shape, double distance)
            : this(property, shape, distance, true)
        {
        }

Same methods

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