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

LesserDistanceExpression() public method

Looks for features less than the given distance from the given shape.
public LesserDistanceExpression ( 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 less than this.
return GeoAPI.Geometries
        public LesserDistanceExpression(string property, IGeometry shape, double distance)
            : this(property, shape, distance, true)
        {
        }

Same methods

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