covered_by.qbk 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2009-2012 Barend Gehrels, Amsterdam, the Netherlands.
  4. Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
  5. Copyright (c) 2009-2012 Bruno Lalande, Paris, France.
  6. Use, modification and distribution is subject to the Boost Software License,
  7. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  8. http://www.boost.org/LICENSE_1_0.txt)
  9. =============================================================================/]
  10. [def __this_function__ covered_by]
  11. [heading_conformance_no_ogc __this_function__]
  12. [note Both PostGIS and Oracle contain an algorithm with the same name and the
  13. same functionality.
  14. See the [@http://www.postgis.org/docs/ST_CoveredBy.html PostGIS documentation].
  15. ]
  16. [include reference/status/covered_by_status.qbk]
  17. [note In this status matrix above: columns are types of first parameter
  18. and rows are types of second parameter. So a point can be checked to be
  19. covered by a polygon, but not vice versa.
  20. ]
  21. [heading Complexity]
  22. Linear
  23. [heading See also]
  24. * [link geometry.reference.algorithms.within within]
  25. [note The difference with the `within` algorithm is that this algorithm checks the
  26. border by default
  27. ]