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

GreaterDistanceSphereExpression() public method

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

Same methods

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