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

LesserDistanceSphereExpression() public method

Looks for features less than the given distance from the given shape, on a spherical surface.
public LesserDistanceSphereExpression ( 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 LesserDistanceSphereExpression(string property, IGeometry shape, double distance)
            : this(property, shape, distance, true)
        {
        }

Same methods

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