
MarkLogic 10 Product Documentation
geo:circle-intersectsgeo:circle-intersects(
   $circle as cts:circle,
   $region as cts:region*,
   [$options as xs:string*]
) as xs:boolean
Summary
  Returns true if the circle intersects with a region.
	    
	    
	  
	    
	      | Parameters | 
	    
	  
	    
	      | circle | 
	      
  A geographic circle.
   | 
	    
	    
	      | region | 
	      
    One or more geographic regions (boxes, circles, polygons, or points).
    Where multiple regions are specified, return true if any region intersects
    the target circle.
   | 
	    
	    
	      | options | 
	      
  Options for the operation. The default is ().
   Options include: 
      
        
        - "coordinate-system=string"
 
        - Use the given coordinate system. Valid values are:
          
          - wgs84
 - The WGS84 coordinate system.
 
          - wgs84/double
 - The WGS84 coordinate system at double precision.
 
          - etrs89
 - The ETRS89 coordinate system.
 
          - etrs89/double
 - The ETRS89 coordinate system at double precision.
 
          - raw
 - The raw (unmapped) coordinate system.
 
          - raw/double
 - The raw coordinate system at double precision.
 
           
           
          - "precision=value"
 
          - Use the coordinate system at the given precision. Allowed values:
          
float and double. 
        - "units=value"
 
        - Measure distance, radii of circles, and tolerance in the specified units.
         Allowed values: 
miles (default), km,
         feet, meters. 
        - "tolerance=distance"
 
        - Tolerance is the largest allowable variation in geometry calculations.
        If the distance between two points is less than tolerance, then the two
        points are considered equal. For the raw coordinate system, use the units
        of the coordinates. For geographic coordinate systems, use the units
        specified by the units option.
 
        - "boundaries-included"
 
        - Points on boxes', circles', and polygons' boundaries are counted as
        matching.  This is the default.
 
        - "boundaries-excluded"
 
        - Points on boxes', circles', and polygons' boundaries are not
    counted as matching.
 
        - "boundaries-latitude-excluded"
 
        - Points on boxes' latitude boundaries are not counted as
    matching.
 
        - "boundaries-longitude-excluded"
 
        - Points on boxes' longitude boundaries are not counted as
    matching.
 
        - "boundaries-south-excluded"
 
        - Points on the boxes' southern boundaries are not counted as
    matching.
 
        - "boundaries-west-excluded"
 
        - Points on the boxes' western boundaries are not counted as
    matching.
 
        - "boundaries-north-excluded"
 
        - Points on the boxes' northern boundaries are not counted as
    matching.
 
        - "boundaries-east-excluded"
 
        - Points on the boxes' eastern boundaries are not counted as
    matching.
 
        - "boundaries-circle-excluded"
 
        - Points on circles' boundary are not counted as matching.
 
        - "boundaries-endpoints-excluded"
 
        - Points on linestrings' boundary (the endpoints) are not counted as matching.
 
        
   | 
	    
	  
Usage Notes
  The value of the 
precision option takes precedence over
  that implied by the governing coordinate system name, including the
  value of the 
coordinate-system option. For example, if the
  governing coordinate system is "wgs84/double" and the 
precision
  option is "float", then the operation uses single precision.
See Also
Example
(: Is the Greenwich Observatory within a mile of the A2 Blackheath Road? Yes.
 :)
geo:circle-intersects(
  cts:circle(1, cts:point(51.48,0)),
  cts:linestring((
    cts:point(51.4745404, -0.0238609),
    cts:point(51.4742464, -0.0212431),
    cts:point(51.4731772, -0.0186682),
    cts:point(51.4729901, -0.0151920),
    cts:point(51.4722950, -0.0132608),
    cts:point(51.4727495, -0.0084972),
    cts:point(51.4718139, -0.0015020),
    cts:point(51.4728029, 0.0095701),
    cts:point(51.4747810, 0.0241184))))
==> true