Ejemplo n.º 1
0
 public static QueryToken Disjoint(string fieldName, ShapeToken shape, double distanceErrorPct)
 {
     return(new WhereToken
     {
         FieldName = fieldName,
         ParameterName = null,
         WhereOperator = WhereOperator.Spatial_Disjoint,
         WhereShape = shape,
         DistanceErrorPct = distanceErrorPct
     });
 }
Ejemplo n.º 2
0
 public static QueryToken Intersects(string fieldName, ShapeToken shape, double distanceErrorPct)
 {
     return(new WhereToken
     {
         FieldName = fieldName,
         ParameterName = null,
         WhereOperator = WhereOperator.Intersects,
         WhereShape = shape,
         DistanceErrorPct = distanceErrorPct
     });
 }
Ejemplo n.º 3
0
 public WhereOptions(ShapeToken shape, double distance)
 {
     WhereShape       = shape;
     DistanceErrorPct = distance;
 }