release_notes.qbk 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  1. [/============================================================================
  2. Boost.Geometry (aka GGL, Generic Geometry Library)
  3. Copyright (c) 2009-2017 Barend Gehrels, Geodan, Amsterdam, the Netherlands.
  4. Copyright (c) 2009-2017 Bruno Lalande, Paris, France.
  5. Copyright (c) 2009-2017 Mateusz Loskot <mateusz@loskot.net>, London, UK.
  6. Copyright (c) 2011-2017 Adam Wulkiewicz, Lodz, Poland.
  7. This file was modified by Oracle on 2015, 2017, 2018, 2019.
  8. Modifications copyright (c) 2015-2019, Oracle and/or its affiliates.
  9. Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
  10. Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  11. Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  12. Use, modification and distribution is subject to the Boost Software License,
  13. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  14. http://www.boost.org/LICENSE_1_0.txt)
  15. =============================================================================/]
  16. [section:release_notes Release Notes]
  17. [/=================]
  18. [heading Boost 1.72]
  19. [/=================]
  20. [*Improvements]
  21. * [@https://github.com/boostorg/geometry/pull/500 500] Karney's solution of inverse geodesic problem for internal use (thanks to Adeel Ahmad).
  22. * [@https://github.com/boostorg/geometry/pull/561 561] New algorithm detail::calculate_point_order() for internal use.
  23. * [@https://github.com/boostorg/geometry/pull/584 584] Support for arbitrary dimensions in matrix_transformer (thanks to Tinko Bartels).
  24. * [@https://github.com/boostorg/geometry/pull/616 616] Various improvements of srs::transformation, incl. support for std threading primitives.
  25. * [@https://github.com/boostorg/geometry/pull/627 627] Improved genericity of relational operations.
  26. * Various improvements related to robustness of set and relational operation.
  27. [*Solved issues]
  28. * [@https://github.com/boostorg/geometry/issues/557 557] Invalid result of distance between point and linestring in spherical-equatorial coordinate system.
  29. * [@https://github.com/boostorg/geometry/issues/612 612] Invalid result of set operations in geographic coordinate system.
  30. * [@https://github.com/boostorg/geometry/issues/619 619] Invalid result of set operations in spherical-equatorial coordinate system.
  31. [*Bugfixes]
  32. * [@https://github.com/boostorg/geometry/pull/479 479] Various fixes for set operations in spherical and geographic coordinate systems.
  33. * [@https://github.com/boostorg/geometry/pull/623 623] Potential integral overflow in set and relational operations.
  34. * [@https://github.com/boostorg/geometry/pull/632 632] Fixed errors in generation of asymmetric one-sided buffer.
  35. [/=================]
  36. [heading Boost 1.71]
  37. [/=================]
  38. [*Improvements]
  39. * [@https://github.com/boostorg/geometry/pull/568 568] Add a constructor that takes matrix_type to matrix_transformer.
  40. * [@https://github.com/boostorg/geometry/pull/605 605] Improvement of handling of coordinate systems in various algorithms.
  41. * Various improvements related to robustness of set and relational operation.
  42. [*Solved issues]
  43. * [@https://github.com/boostorg/geometry/issues/596 596] boost::geometry::buffer generates (multi)polygon with spike.
  44. [*Bugfixes]
  45. * [@https://github.com/boostorg/geometry/pull/595 595] Fix inaccuracy in geographic point-segment distance computation.
  46. * Fix various compiler warnings.
  47. [/=================]
  48. [heading Boost 1.70]
  49. [/=================]
  50. [*Improvements]
  51. * [@https://github.com/boostorg/geometry/pull/526 526] New line interpolate algorithm.
  52. [*Solved issues]
  53. * [@https://github.com/boostorg/geometry/issues/450 450] Not supported negative distance in geodesic direct formulas.
  54. * [@https://github.com/boostorg/geometry/issues/466 466] Invalid result of spherical/geographic disjoint(box, polygon).
  55. * [@https://github.com/boostorg/geometry/issues/547 547] Undefined behavior in rtree constructed with zip_iterator.
  56. * [@https://github.com/boostorg/geometry/issues/560 560] Inaccuracy of karney_direct formula.
  57. * [@https://github.com/boostorg/geometry/issues/577 577] R-tree with interprocess allocator compilation error with clang.
  58. * [@https://github.com/boostorg/geometry/issues/579 579] Invalid result of spherical/geographic disjoint(segment, box).
  59. [*Bugfixes]
  60. * [@https://github.com/boostorg/geometry/pull/538 538] Workaround for msvc-12 faulty array initialization.
  61. * [@https://github.com/boostorg/geometry/pull/553 553] Pass spheroid correctly in geographic comparable strategies.
  62. * [@https://github.com/boostorg/geometry/pull/570 570] Fix for spherical/geographic distance between geometries.
  63. * [@https://github.com/boostorg/geometry/pull/571 571] Fix nan result in geographic distance.
  64. * Workarounds in R-tree for compilation errors with gcc-4.6 and msvc-10, 11, 12.
  65. [*Changes in behavior]
  66. * Different strategies expected in envelope for some combinations of geometries.
  67. [/=================]
  68. [heading Boost 1.69]
  69. [/=================]
  70. [*Improvements]
  71. * [@https://github.com/boostorg/geometry/pull/486 486] Karney's solution of direct geodesic problem for internal use (thanks to Adeel Ahmad).
  72. * [@https://github.com/boostorg/geometry/pull/490 490] Discrete Frechet and Hausdorff distance algorithms (thanks to Yaghyavardhan Singh Khangarot).
  73. * [@https://github.com/boostorg/geometry/pull/496 496] New run-time and upgraded compile-time SRS transformation interfaces (undocumented for now due to potential interface changes).
  74. [*Solved issues]
  75. * [@https://github.com/boostorg/geometry/issues/520 520] Missing documentation for dsv().
  76. * [@https://github.com/boostorg/geometry/issues/521 521] Wrong documentation description for distance().
  77. * [@https://github.com/boostorg/geometry/issues/524 524] Fixed 'enumeration values not handled in switch' warnings.
  78. * [@https://github.com/boostorg/geometry/issues/527 527] Workaround for VS 2017 (msvc-15).
  79. [*Bugfixes]
  80. * [@https://github.com/boostorg/geometry/pull/505 505] Fixed overflow in overlay algorithms (thanks to Dane Springmeyer).
  81. * [@https://github.com/boostorg/geometry/pull/518 518] Fixed passing of temporaries in append() (thanks to xventura81).
  82. * [@https://github.com/boostorg/geometry/pull/522 522] Support python3 in building documentation.
  83. [/=================]
  84. [heading Boost 1.68]
  85. [/=================]
  86. [*Improvements]
  87. * [@https://github.com/boostorg/geometry/pull/469 469] Horizontal grid shift (nadgrids) in SRS transformations (undocumented for now due to potential interface changes).
  88. * [@https://github.com/boostorg/geometry/pull/478 478] Box-Segment distance for spherical and geographic coordinate systems.
  89. * [@https://github.com/boostorg/geometry/pull/487 487] Missing combinations of geometries in distance for spherical and geographic cs
  90. * [@https://github.com/boostorg/geometry/pull/489 489] Additional direct geodesic problem formulas for internal use
  91. [*Solved issues]
  92. * [@https://github.com/boostorg/geometry/issues/470 470] Assertion failure with short spherical and geographic segments.
  93. * [@https://github.com/boostorg/geometry/issues/471 471] Invalid envelope of spherical polygon
  94. * [@https://github.com/boostorg/geometry/issues/498 498] Unexpected results with expand() and make_inverse() for spherical and geographic CS
  95. * [@https://github.com/boostorg/geometry/issues/504 504] Unused parameter warnings.
  96. [*Bugfixes]
  97. * [@https://github.com/boostorg/geometry/pull/488 488] Handle non-true-references in closing_iterator and ever_circling_range_iterator
  98. * [@https://github.com/boostorg/geometry/pull/495 495] VxWorks 7 cross-compilation issue.
  99. [/=================]
  100. [heading Boost 1.67]
  101. [/=================]
  102. [*Improvements]
  103. * New map projection and SRS transformation representations (undocumented for now due to potential interface changes).
  104. * New densify() algorithm.
  105. * No longer using std::iterator (thanks to Daniela Engert).
  106. * No longer using allocator directly in the rtree. Replaced with boost::container::allocator_traits (thanks to Daniela Engert).
  107. * Default rtree allocator changed to boost::container::new_allocator to still support move semantics emulation in C++03 with boost::container::allocator_traits.
  108. * Area strategies interface changed. This is potentially a breaking change.
  109. * Radius or Sphere can be passed into spherical strategies.
  110. * Added Point-Box and Box-Box spherical and geographic distance() strategies.
  111. * Simplify (multi)polygons will discard output rings of 2 points or (for closed polygons) 3 points, but it tries to avoid creating those
  112. * Simplify (multi)polygons will omit empty interior rings or polygons from output
  113. [*Solved issues]
  114. * [@https://svn.boost.org/trac10/ticket/13386 13386] Workaround for some gcc compilers
  115. * [@https://svn.boost.org/trac10/ticket/13381 13381] Compile error with matrix_transformer in Visual C++ 2015
  116. * [@https://svn.boost.org/trac10/ticket/13436 13436] Incorrectness in boost::geometry::model::polygon documentation
  117. [*Bugfixes]
  118. * Add missing strategy resolving in length() algorithm, affecting Variant support.
  119. * Simplify (multi)polygons now simplifies closing point
  120. [*Changes in behavior]
  121. * Simplify (multi)polygons now usually rotates input rings before simplifying to select a non collinear point on its convex hull. This improves output.
  122. [/=================]
  123. [heading Boost 1.66]
  124. [/=================]
  125. [*Improvements]
  126. * Add distance for geographic PointLike/AnyGeometry.
  127. [*Solved issues]
  128. * [@https://svn.boost.org/trac10/ticket/12503 12503] Validity of complex polygon
  129. [*Bugfixes]
  130. * Fixes in validity of union/intersection/difference which were sometimes invalid. In most cases, results are valid now.
  131. * Fixes in validity of buffer which were sometimes invalid. In most cases, results are valid now.
  132. * Fixes in results of union/intersection/difference which could be incorrect in very complex cases
  133. * Fixes in set and relational operations for non-cartesian coordinate systems.
  134. [/=================]
  135. [heading Boost 1.65]
  136. [/=================]
  137. [*Improvements]
  138. * Add correct() overload taking area strategy
  139. * Add is_convex() overload taking side strategy
  140. * Add missing relational operations (covered_by, crosses, equals, etc.) for MultiPoint/AnyGeometry
  141. [*Solved issues]
  142. * [@https://svn.boost.org/trac/boost/ticket/12410 12410] Lack of support of geographic coordinate system in correct()
  143. * [@https://svn.boost.org/trac/boost/ticket/13035 13035] Wrong result of non-cartesian intersection strategies for segments near poles.
  144. * [@https://svn.boost.org/trac/boost/ticket/13057 13057] Wrong result of intersects() for linestrings caused by numerical issue in disjoint() for boxes.
  145. [*Bugfixes]
  146. * Fix is_valid which could return false for multipolygons where an interior ring touches another interior ring
  147. * Fix is_valid which could return false for multipolygons where a polygon was located in an interior ring, all touching each other
  148. * Fix union which could produce invalid results (for some cases, this needs to define BOOST_GEOMETRY_INCLUDE_SELF_TURNS)
  149. * Fix intersection (idem), but some cases are still not yet valid
  150. * Fix difference (idem), but some cases are still not yet valid
  151. * Fix propagation of area strategy into the internals of various algorithms from intersection strategy
  152. * Fix uninitialized variable in relate and reference to temporary in overlay
  153. * Fix error in disjoint for geographic Segment/Box
  154. * Fix handling of non-cartesian geometries in various algorithms
  155. [/=================]
  156. [heading Boost 1.64]
  157. [/=================]
  158. [*Improvements]
  159. * matrix transformation is now based on Boost.QVM instead of Boost.Ublas
  160. [*Breaking changes]
  161. * ublas_transformer is renamed to matrix_transformer
  162. * explicit modifier is added to constructors of rtree index::dynamic_* parameters
  163. * strategy::area::huiller replaced by strategy::area::spherical
  164. [*Solved issues]
  165. * [@https://github.com/boostorg/geometry/issues/363 363] Missing includes in geometry/index/parameters.hpp
  166. * [@https://github.com/boostorg/geometry/issues/364 364] within(Linear, Areal) compilation error when arguments use different point types
  167. * [@https://github.com/boostorg/geometry/issues/370 370] Buffer Seg Faults with Ring as Input
  168. [*Solved tickets]
  169. * [@https://svn.boost.org/trac/boost/ticket/11899 11899] boost::geometry::equals doesn't handle open polygons
  170. * [@https://svn.boost.org/trac/boost/ticket/11930 11930] Inaccuracy of area::huiller strategy
  171. * [@https://svn.boost.org/trac/boost/ticket/11931 11931] Wrong spherical area with pole encircling polygons
  172. * [@https://svn.boost.org/trac/boost/ticket/12566 12566] Ambiguous template instantiation in equal_to<> when pair value contains raw pointer
  173. * [@https://svn.boost.org/trac/boost/ticket/12861 12861] Segmentation fault in stdlibc++ (gcc 4.8.2) affecting rtree
  174. * [@https://svn.boost.org/trac/boost/ticket/12885 12885] Use BOOST_THROW_EXCEPTION instead of throw
  175. [*Bugfixes]
  176. * Fix distance_measure in get_turn_info
  177. [/=================]
  178. [heading Boost 1.63]
  179. [/=================]
  180. [*Improvements]
  181. * Intersection: take care that output is valid (work in progres, not yet finished - but more is valid)
  182. [*Solved tickets]
  183. * [@https://svn.boost.org/trac/boost/ticket/12289 12289] Avoid warning/compilation error for std::cout
  184. * [@https://svn.boost.org/trac/boost/ticket/12412 12412] Invalid result of covered_by() with geographic Points and Boxes
  185. * [@https://svn.boost.org/trac/boost/ticket/12413 12413] rtree::remove() not working properly with geographic Points
  186. [/=================]
  187. [heading Boost 1.62]
  188. [/=================]
  189. [*Improvements]
  190. * Union: take care that output is valid (with some exceptions), also with self-tangent polygons or shared edges
  191. * SVG: support boost::variant of geometries
  192. * SVG: coordinates are now written as double (by default) to svg
  193. * Rename namespace concept to concepts to avoid conflicts with the newest compilers
  194. * New spherical intersection strategy used in relational and set operations for spherical and geographic Geometries (previously cartesian intersection strategy was used for all coordinate systems).
  195. [*Solved tickets]
  196. * [@https://svn.boost.org/trac/boost/ticket/12189 12189] Relational operations not compiling when point types of inputs are different (cartesian, affecting rtree)
  197. * [@https://svn.boost.org/trac/boost/ticket/12287 12287] Invalid result of rtree.query() for contains() predicate
  198. * [@https://svn.boost.org/trac/boost/ticket/12342 12342] Relational operations not compiling when point types of inputs are different (geographic, affecting rtree)
  199. [/=================]
  200. [heading Boost 1.61]
  201. [/=================]
  202. [*Additional functionality]
  203. * Support within and covered_by for Box/Box in spherical and geographic coordinate systems.
  204. [*Improvements]
  205. * Overlay: handle_tangencies replaced by clusters, fixing many cases with colocated turns
  206. [*Solved tickets]
  207. * [@https://svn.boost.org/trac/boost/ticket/9162 9162] Invalid result of relational operations for non-cartesian Point/Areal.
  208. * [@https://svn.boost.org/trac/boost/ticket/10866 10866] union_ doesn't work in 1.56 and 1.57.
  209. * [@https://svn.boost.org/trac/boost/ticket/11018 11018] Invalid geometry intersection
  210. * [@https://svn.boost.org/trac/boost/ticket/11576 11576] Intersection gives wrong results.
  211. * [@https://svn.boost.org/trac/boost/ticket/11637 11637] Unused parameter warning.
  212. * [@https://svn.boost.org/trac/boost/ticket/11725 11725] union_ fails to create holes
  213. * [@https://svn.boost.org/trac/boost/ticket/11789 11789] Assertion failure or invalid result of set operations for spherical_equatorial coordinate system.
  214. * [@https://svn.boost.org/trac/boost/ticket/11917 11917] Andoyer distance strategy returns 0 for antipodal points (default geographic distance).
  215. * [@https://svn.boost.org/trac/boost/ticket/11928 11928] Improvement of the accuracy of surveyor (cartesian) area strategy.
  216. * [@https://svn.boost.org/trac/boost/ticket/11966 11966] Compilation error in svg() for box and non-int coordinate type.
  217. * [@https://svn.boost.org/trac/boost/ticket/11984 11984] union_() generates self-intersecting polygon
  218. * [@https://svn.boost.org/trac/boost/ticket/11987 11987] rtree::remove() not compiling for geographic CS.
  219. * [@https://svn.boost.org/trac/boost/ticket/12000 12000] Uninitialized reference in (unused) constructor of relate's mask_handler.
  220. * [@https://svn.boost.org/trac/boost/ticket/12106 12106] Invalid assertion failure in envelope() for non-cartesian very short segments.
  221. [*Bugfixes]
  222. * Fix intersects and disjoint for Segment/Box in cartesian coordinate system when Segment is parallel to Box's face.
  223. * Fix relation operations for Point/Areal in spherical and geographic coordinate systems for edge cases.
  224. * Fix intersects and disjoint for Point/Box and Box/Box in spherical and geographic coordinate systems for some cases.
  225. * Fix within and covered_by for Point/Box in spherical and geographic coordinate systems for some cases.
  226. [/=================]
  227. [heading Boost 1.60]
  228. [/=================]
  229. [*Solved tickets]
  230. * [@https://svn.boost.org/trac/boost/ticket/10803 10803] Union algorithm returning invalid geometry
  231. * [@https://svn.boost.org/trac/boost/ticket/11522 11522] Namespace clash in buffer for traits::detail
  232. * [@https://svn.boost.org/trac/boost/ticket/11533 11533] Assert failure in rtree caused by a bug in remove() if min elements number is 1
  233. * [@https://svn.boost.org/trac/boost/ticket/11607 11607] Private geometry::exception::what()
  234. * [@https://svn.boost.org/trac/boost/ticket/11709 11709] is_simple segfault
  235. * [@https://svn.boost.org/trac/boost/ticket/11710 11710] is_simple - empty geometry logic
  236. * [@https://svn.boost.org/trac/boost/ticket/11711 11711] is_simple and is_valid - Points that are NaN or Infinity
  237. [*Bugfixes]
  238. * Fix colocations of touching interior ring / exterior ring, where it also touches another polygon
  239. * Fix removing values from an empty rtree - no effect and 0 returned instead of assertion failure
  240. * Fix segfault in centroid for multi geometries containing empty single geometries (thanks to Jiri Drbalek)
  241. * Fix liang_barsky strategy for integral coordinates (thanks to Dane Springmeyer)
  242. [/=================]
  243. [heading Boost 1.59]
  244. [/=================]
  245. [*Additional functionality]
  246. * Added rtree const_iterator, begin(), end() and the support for Boost.Range.
  247. * The support for C++11 `std::initializer_list` in geometries models.
  248. * Disjoint and intersects support the following geometry combinations: multipoint/linestring, multipoint/multilinestring.
  249. * Added relate() and relation() algorithms.
  250. * Intersection has been implemented for combinations of pointlike and linear geometries
  251. * Added implementation for difference(pointlike, linear)
  252. * New algorithm is_empty, returning true if the geometry represents the empty set
  253. * The envelope algorithm supports pointlike and linear geometries in the spherical equatorial coordinate system
  254. * The envelope algorithm supports pointlike geometries in the geographic coordinate system
  255. [*Improvements]
  256. * Upgraded rtree const_query_iterator category to ForwardIterator.
  257. * Buffer performance of buffers around multi-points is improved significantly
  258. [*Breaking changes]
  259. * buffer side strategy now returns error_code instead of bool. If you have your own custom side strategy, it should be adapted
  260. [*Solved tickets]
  261. * [@https://svn.boost.org/trac/boost/ticket/11113 11113] Support easy enumeration of all elements with BOOST_FOREACH
  262. * [@https://svn.boost.org/trac/boost/ticket/11232 11232] Feature request - relate()
  263. * [@https://svn.boost.org/trac/boost/ticket/11236 11236] Invalid result of centroid() for integer coordinate type
  264. * [@https://svn.boost.org/trac/boost/ticket/11268 11268] Regression in boost::geometry::intersection interface with multi_linestring and box -- does not compile on 1.57 VS 1.55
  265. * [@https://svn.boost.org/trac/boost/ticket/11332 11332] Assertion failure in buffer for extreme coordinate differences
  266. * [@https://svn.boost.org/trac/boost/ticket/11346 11346] Segment iterator does not work with ranges returning values instead of references
  267. * [@https://svn.boost.org/trac/boost/ticket/11436 11436] sym_difference(py1, py2, mpy) returns invalid multipolygon
  268. [*Bugfixes]
  269. * Buffer: use a more robust way to calculate the side of an intersection, this fixes several errors in buffer generation
  270. * Fix in selection of segment to which calculate from IP from, in intersection of two segments. Now is selected the one close to a segment-point point, or else the one on the shortest segment. This avoids (rarely occuring) generation of tiny triangles making output polygons invalid
  271. * In rescaling round instead of truncate to the integer grid (this fix and the previous mentioned can have some impact on output geometries)
  272. * Fix potential infinite loop in detail::has_spikes (the loop can happen if the points passed have NaN coordinates)
  273. [/=================]
  274. [heading Boost 1.58]
  275. [/=================]
  276. [*Additional functionality]
  277. * New algorithm num_segments, returning the number of segments of a geometry
  278. * New overload for is_valid algorithm, that takes a string reference as a second argument and fills it with a message related to the validity or invalidity of the geometry
  279. * New overload for is_valid algorithm, that takes an enum reference as a second argument and fills it with a value related to the validity or invalidity of the geometry
  280. * Disjoint and intersects support the following geometry combinations: point/multipoint, multipoint/multipoint, multipoint/segment, multipoint/box
  281. [*Improvements]
  282. * Buffer now supports flat-ends for linestrings with a bend close to the start (such that buffered segment crosses flat-end).
  283. * Buffer performance is improved significantly
  284. * Partition performance is improved significantly for polygons, potentially enhancing all overlay operations
  285. [*Solved tickets]
  286. * [@https://svn.boost.org/trac/boost/ticket/8379 8379] Invalid comparison of the result of determinant
  287. * [@https://svn.boost.org/trac/boost/ticket/10108 10108] Error in overlay operations in specific cases where geometries touch at one point
  288. * [@https://svn.boost.org/trac/boost/ticket/10201 10201] Suggestion to use different function to compare coordinates [wontfix]
  289. * [@https://svn.boost.org/trac/boost/ticket/10467 10467] Template parameter name coliding with B0 macro name defined in termios.h
  290. * [@https://svn.boost.org/trac/boost/ticket/10640 10640] Invalid result of buffer() for CCW Polygons.
  291. * [@https://svn.boost.org/trac/boost/ticket/10666 10666] MSVC compiler warning C4127: conditional expression is constant
  292. * [@https://svn.boost.org/trac/boost/ticket/10747 10747] Error in rescaling causing errors in areal/areal set operations
  293. * [@https://svn.boost.org/trac/boost/ticket/10770 10770] Buffer fails for large distances, or rough round joins, where concavities where not intersected properly
  294. * [@https://svn.boost.org/trac/boost/ticket/10658 10658] sym_difference yields bad result for int polygons
  295. * [@https://svn.boost.org/trac/boost/ticket/10835 10835] Difference of multilinestring and polygon yields wrong result
  296. * [@https://svn.boost.org/trac/boost/ticket/10861 10861] Rtree failing to compile for Value being a pair or a tuple containing pointer to Geometry and the default equal_to<> used
  297. * [@https://svn.boost.org/trac/boost/ticket/10863 10863] Template parameter name coliding with B0 macro name defined in termios.h (duplicate of 10467)
  298. * [@https://svn.boost.org/trac/boost/ticket/10887 10887] Invalid result of within() and relate() for Linear/MultiPolygon
  299. * [@https://svn.boost.org/trac/boost/ticket/10890 10890] Invalid result of disjoint() for Point/Segment.
  300. * [@https://svn.boost.org/trac/boost/ticket/10904 10904] Invalid calculation of most significant Dimension of a segment in relate_cartesian_segments strategy
  301. * [@https://svn.boost.org/trac/boost/ticket/10912 10912] Invalid result of within() and relate() for Areal/Areal
  302. * [@https://svn.boost.org/trac/boost/ticket/10951 10951] Tests failing on windows with intel compiler due to lack of /bigobj flag.
  303. * [@https://svn.boost.org/trac/boost/ticket/10957 10957] Assertion failure and invalid results of various relational operations.
  304. * [@https://svn.boost.org/trac/boost/ticket/10958 10958] Invalid results of disjoint() L/L and L/A.
  305. * [@https://svn.boost.org/trac/boost/ticket/10959 10959] Assertion failure in get_turns() used with no_rescale_policy.
  306. * [@https://svn.boost.org/trac/boost/ticket/10960 10960] Invalid result of get_turns() for L/A, missing turn.
  307. * [@https://svn.boost.org/trac/boost/ticket/10961 10961] Invalid result of get_turns() for L/A, invalid turn for a Linear spike.
  308. * [@https://svn.boost.org/trac/boost/ticket/11112 11112] Compilation failure on Solaris due to a CS name clash (used for a macro on this platform)
  309. * [@https://svn.boost.org/trac/boost/ticket/11121 11121] Invalid result of difference() for integral coordinates
  310. [*Bugfixes]
  311. * Bug in multipoint/polygon multipoint/multipolygon distance computation (wrong detection of points inside the areal geometry)
  312. * Bug in flatten_iterator's assignment operator causing an access violation
  313. * Bug in Cartesian segment-segment intersection strategy when one segment degenerates to a point and is collinear to the other non-degenerate segment
  314. * Bug in centroid(), non-deterministic result if calculated for e.g. a Polygon with zero-area.
  315. * Bug in buffers for joins with a limited number of points
  316. * Bug in buffers for round joins with limited number of points around sharp corners
  317. * Bug in buffers for joins with large buffer distances
  318. * Bug in buffers for round ends with an odd number of points
  319. * Bug in buffers for flat ends with large buffer distances
  320. * Bug in buffers for interior rings with large negative buffer distances
  321. * Bug in closing_iterator not working properly when the input range is empty
  322. * Bug in is_simple, not handling properly closed simple linestrings within multilinestrings
  323. * Bug in rtree constructors taking a pair of Iterators or a Range (packing algorithm), the use of reference to destroyed temporary when Iterator's reference is not true reference, e.g. for some of the Range Adaptors. It also affects distance() and comparable_distance(). This bug may cause unexpected behavior of the rtree or distance() algorithm, e.g. an assertion failure or a SEGFAULT.
  324. * Bug in rtree count() member function, the use of reference to destroyed temporary when object of type convertible but not the same as value_type or indexable_type is passed. If this happens, wrong result may be returned, in most cases 0.
  325. * Bugs related to the handling of Ranges, preventing compilation of Geometries using non-Container Ranges in some algorithms (thanks to Samuel Debionne)
  326. [/=================]
  327. [heading Boost 1.57]
  328. [/=================]
  329. [*Improvements]
  330. * The support of parameters convertible to value_type in rtree insert(), remove() and count() functions
  331. * Support for counterclockwise input/output in algorithm buffer
  332. * Support for open-geometry input in algorithm buffer (open output not yet supported)
  333. * Support for degenerate input (point-like linestrings, polygons) in algorithm buffer
  334. [*Solved tickets]
  335. * [@https://svn.boost.org/trac/boost/ticket/6443 6443] Wrong degenerated hulls returned by convex_hull().
  336. * [@https://svn.boost.org/trac/boost/ticket/8402 8402] Implicit conversion warnings
  337. * [@https://svn.boost.org/trac/boost/ticket/9354 9354] Bug in winding strategy affecting within() and covered_by() for non-cartesian coordinate systems
  338. * [@https://svn.boost.org/trac/boost/ticket/10177 10177] Missing include
  339. * [@https://svn.boost.org/trac/boost/ticket/10345 10345] Distance fails to compile for some coordinate types
  340. * [@https://svn.boost.org/trac/boost/ticket/10398 10398] Wrong neighbour check in buffer, calculating turns
  341. * [@https://svn.boost.org/trac/boost/ticket/10421 10421] Invalid Point-Box distance for spherical CS
  342. * [@https://svn.boost.org/trac/boost/ticket/10562 10562] Invalid number of Points in the result of convex_hull() for open output
  343. * [@https://svn.boost.org/trac/boost/ticket/10615 10615] Rtree constructor feature request
  344. * [@https://svn.boost.org/trac/boost/ticket/10643 10643] Invalid point_on_surface() result for big coordinates
  345. * [@https://svn.boost.org/trac/boost/ticket/10647 10647] Invalid result of disjoint() in some cases when polygon is inside inner ring of other polygon
  346. * [@https://svn.boost.org/trac/boost/ticket/10668 10668] Implicit conversion warnings (duplicated 8402)
  347. [*Bugfixes]
  348. * Several fixes of bugs in algorithm buffer
  349. * Bug in point_on_surface() for CCW Polygons (extreme_points()) and numerical issue (thanks to Matt Amos)
  350. * Bug in disjoint() for A/A fixed by replacement of point_on_surface() with point_on_border() (thanks to Matt Amos)
  351. * The result of convex_hull(), duplicated Point in open output, too small number of Points for 1- and 2-Point input
  352. * Imprecision for big coordinates in centroid(), fixed by Points translation (related with ticket 10643)
  353. * for_each_segment() not taking into account the last segment of open Geometry
  354. [/=================]
  355. [heading Boost 1.56]
  356. [/=================]
  357. [*Additional functionality]
  358. * New algorithm buffer for inflating/deflating geometries (buffer itself already existed but that was only to enlarge a box)
  359. * New algorithm remove_spikes, algorithm to remove spikes from a ring, polygon or multi_polygon
  360. * New algorithm point_on_surface, generating a point lying on the surface (interior) of the polygon
  361. * New algorithm is_simple, returning true if a geometry is simple according to the OGC standard
  362. * New algorithm is_valid, returning true if a geometry is valid according to the OGC standard
  363. * New algorithm crosses for checking this spatial relation according to the OGC standard
  364. * The set operation algorithms (difference, intersection, sym_difference and union_) now support as input pairs of pointlike or linear geometries
  365. * The distance and comparable_distance algorithms now support all pairs of geometry combinations
  366. * The spatial relations which didn't support it (covered_by, touches, within, etc.) now support as input linear and/or areal geometries
  367. * The support for boost::variants as input geometries in various algorithms
  368. * The rtree support for indexing segments
  369. * The rtree nearest() predicate support for arbitrary geometries
  370. [*Improvements]
  371. * The rtree pack-creation algorithm optimization (thanks to Lu Wang)
  372. [*Solved tickets]
  373. * [@https://svn.boost.org/trac/boost/ticket/8310 8310] Wrong results with overlapping polygons (fixed using point_on_surface for disjoint)
  374. * [@https://svn.boost.org/trac/boost/ticket/8375 8375] sym_difference of non-closed polygons returns closed polygon
  375. * [@https://svn.boost.org/trac/boost/ticket/8376 8376] difference of non-closed polygons returns closed polygon
  376. * [@https://svn.boost.org/trac/boost/ticket/9081 9081] Booleans create self-intersecting polygons from non-self-intersecting polygons
  377. * [@https://svn.boost.org/trac/boost/ticket/9245 9245] Check for process errors in make_qbk.py
  378. * [@https://svn.boost.org/trac/boost/ticket/9563 9563] (Sym)difference not successful, fixed by rescaling to robust type
  379. * [@https://svn.boost.org/trac/boost/ticket/9628 9628] Wrong result of within() due to the winding strategy not working correctly for nearly-horizontal segments
  380. * [@https://svn.boost.org/trac/boost/ticket/9828 9828] boost::geometry::union_(...) creates redundant closing point
  381. * [@https://svn.boost.org/trac/boost/ticket/9871 9871] Remove spike in polygon with only a spike
  382. * [@https://svn.boost.org/trac/boost/ticket/9941 9941] Add support for touches(box, box)
  383. * [@https://svn.boost.org/trac/boost/ticket/9947 9947] Missing info about WKT in documentation
  384. * [@https://svn.boost.org/trac/boost/ticket/9759 9759] Invalid results of R-tree knn queries for non-cartesian coordinate systems
  385. * [@https://svn.boost.org/trac/boost/ticket/10019 10019] Difference of Linestring and Box returns their intersection
  386. * [@https://svn.boost.org/trac/boost/ticket/10077 10077] Wrong types in concept checks in boost/geometry/arithmetic/arithmetic.hpp
  387. * [@https://svn.boost.org/trac/boost/ticket/10234 10234] Wrong results of covered_by() for nearly-horizontal segments
  388. [*Bugfixes]
  389. * intersects(polygon) could return a self-intersection-point for its closing point, fixed
  390. * equals() could return invalid results for non-simple linear geometries according to the OGC standard, fixed
  391. * touches() didn't work properly for CCW areal geomtries, fixed
  392. * rtree nearest queries returned wrong elements for non-cartesian coordinate systems, fixed
  393. * rtree crashed in some cases when used with Interprocess allocator, fixed
  394. [/=================]
  395. [heading Boost 1.55]
  396. [/=================]
  397. [*Additional functionality]
  398. * Added centroid for segment type
  399. * Added intersects() and disjoints() for Segment-Box and Linestring-Box
  400. * Added rtree creation using packing algorithm
  401. * Added contains() and covers() spatial query predicates
  402. * Added iterative queries
  403. [*Documentation]
  404. [*Bugfixes]
  405. * In some cases .back() or .clear() was called, violating the usage of Concepts. Fixed for the reported cases
  406. * Use consistent side information in cart_intersect and get_turn_info and handle_tangencies and enrich_intersection_info. This
  407. is done by switching to integer (if necessary) for the specific 6 points only, zooming in on the 4 or 3 segments
  408. [*Solved tickets]
  409. * [@https://svn.boost.org/trac/boost/ticket/6958 6958] Intersection generates self-intersection. Caused by spike, fixed
  410. * [@https://svn.boost.org/trac/boost/ticket/8364 8364] Invalid input exception, caused by spikes in previous steps, fixed
  411. * [@https://svn.boost.org/trac/boost/ticket/8365 8365] Invalid input exception, caused by spikes in previous steps, fixed
  412. * [@https://svn.boost.org/trac/boost/ticket/8969 8969] boost::geometry::model::point single argument constructor should be explicit
  413. * [@https://svn.boost.org/trac/boost/ticket/8825 8825] Patch adding member variable documentation to doxygen_xml2qbk
  414. * [@https://svn.boost.org/trac/boost/ticket/8652 8652] Intersection fails for triangle-triangle intersection. Caused by spike, fixed
  415. * [@https://svn.boost.org/trac/boost/ticket/9047 9047] Boost files that include themselves (strategies/intersection.hpp), fixed
  416. [*Internal changes]
  417. * Adapted projected_point<> distance strategy, point-type in template is replaced by calculation-type
  418. * Adapted transform strategies, they have points now as member-template, and calculation-type as template. Similar to what was done for projected_point distance
  419. * Spikes (could be generated in difference) in integer-based overlays are now avoided during generation
  420. * Cleanup, removed old MSVC2005 project files
  421. * R*-tree balancing algorithm optimized
  422. [/=================]
  423. [heading Boost 1.54]
  424. [/=================]
  425. [*Additional functionality]
  426. * added Spatial Index, developed for Boost.Geometry by Adam Wulkiewicz. The spatial index was originally started by Federico J. Fernandez during the Google Summer of Code 2008 program, mentored by Hartmut Kaiser.
  427. * added SVG-output, this was already in extensions for several years
  428. [*Documentation]
  429. * small fixes of missing words
  430. * fixes in doc of template parameters (convex_hull, exterior_ring, return_buffer)
  431. [*Bugfixes]
  432. * collinear opposite segments did sometimes (in circles) have a robustness issue, fixed
  433. * fixed insertion of false intersection point (found by buffer)
  434. * applied patch of Vladimir Petrovic for debugging traversals
  435. [*Solved tickets]
  436. * [@https://svn.boost.org/trac/boost/ticket/7462 7462] degenerate union result for float, fixed
  437. * [@https://svn.boost.org/trac/boost/ticket/7465 7465] wrong construtors access type in scale_transformer class, fixed
  438. * [@https://svn.boost.org/trac/boost/ticket/7802 7802] cart_intersect.hpp unused parameter warnings, fixed
  439. * [@https://svn.boost.org/trac/boost/ticket/8254 8254] faulty intersection, fixed
  440. * [@https://svn.boost.org/trac/boost/ticket/8393 8393] polygon model doesn't adhere to stated Polygon concept rules, doc updated.
  441. * [@https://svn.boost.org/trac/boost/ticket/8403 8403] silenced compiler warning C4127: conditional expression is constant
  442. * [@https://svn.boost.org/trac/boost/ticket/8405 8405] silenced compiler warning C4189: '...' : local variable is initialized but not referenced
  443. [*Internal changes]
  444. * Made several algorithms variant-aware (append, area, clear, convert, equals, length, num_points)
  445. [/=================]
  446. [heading Boost 1.53]
  447. [/=================]
  448. [*Bugfixes]
  449. * avoid generating output polygons with interior rings below minimum size (e.g. one or two points)
  450. * `geometry::disjoint` for degenerate segments (patched by Karsten Ahnert)
  451. * problem in `geometry::difference` for missing handling tangency, reported by H2
  452. * fixed `geometry::for_each` for use with Lambda's
  453. * fixed `geometry::comparable_distance` point-linestring (and -range, -polygon)
  454. [*Additional functionality]
  455. * combinations for `geometry::disjoint`: point/ring, point/polygon, point/multi_polygon
  456. * combinations for `geometry::intersects`: point/ring, point/polygon, point/multi_polygon
  457. [*Internal changes]
  458. * updates in specializations/not_implemented for various algorithms (as in an earlier version, these changes are still going on; they take care for simplified structs, better error reporting, and automatized documentation)
  459. * fixes in unit tests
  460. [/=================]
  461. [heading Boost 1.51]
  462. [/=================]
  463. [*Breaking changes]
  464. * points accessed through a pointer (e.g. in a linestring) should now be specialized without the pointer. In previous versions a type `my_point` used like `linestring<my_point*>` had to be specalized like: `template<> struct tag<my_point*>`. Now the library itself removes the pointer before calling the traits class, so now it should be like: `template<> struct tag<my_point>`
  465. [*Bugfixes]
  466. * intersection was sometimes wrong for integer points, fixed
  467. * documentation, order of parameters in simplify was wrong, fixed
  468. [*Solved tickets]
  469. * [@https://svn.boost.org/trac/boost/ticket/7030 7030] spherical distance, fixed (by patch of Karsten Ahnert)
  470. [/=================]
  471. [heading Boost 1.50]
  472. [/=================]
  473. [*Bugfixes]
  474. * the return type of comparable projected point strategy for integer points was wrong (integer), fixed
  475. * several robustness issues in intersection of segments and polygons, fixed
  476. * invalid intersection output is filtered out
  477. * disjoint for multi_polygon's might incorrectly return true, fixed
  478. [*Solved tickets]
  479. * [@https://svn.boost.org/trac/boost/ticket/6585 6585] patch for alternative syntax multipoint, applied
  480. * [@https://svn.boost.org/trac/boost/ticket/6584 6584] patch for bug in distance, applied
  481. * [@https://svn.boost.org/trac/boost/ticket/5730 5730] same issue as 6584, fixed
  482. * [@https://svn.boost.org/trac/boost/ticket/6166 6166] patch for missing transformation, applied
  483. * [@https://svn.boost.org/trac/boost/ticket/6696 6696] invalid intersection output, was (by chance) already fixed in Trunk before reported
  484. [*Additional functionality]
  485. * added algorithm "touches" (OGC SF compliant) for *polygon/*polygon
  486. [/=================]
  487. [heading Boost 1.49]
  488. [/=================]
  489. [*Breaking changes]
  490. * point_xy was accidentally included in one of the headerfiles. If the point_xy class is used, it should be included explicitly now.
  491. [*Bugfixes]
  492. * bugfix: distance for multi-geometries ignored specified distance strategy. Fixed
  493. * bugfix: difference for polygon/multi_polygon (reported 2011/10/24 on GGL-list)
  494. * bugfix: raise exception for calculation of distances of multi-geometrie(s) where one of them is empty
  495. * bugfix: multi DSV did not correctly use settings, fixed
  496. * bugfix: self-intersections could sometimes be missed (introduced in 1.48), fixed
  497. * bugfix: convex hull crashed on empty range (e.g. empty multi point), fixed
  498. * bugfix: area/centroid/side/intersection/distance did not work for "int" type filled with large (but not overflowing) integers. Fixed.
  499. * bugfix: disjoint/intersect did not work for degenerate linestrings. Fixed.
  500. * bugfix: covered_by did not compile for a ring. Fixed.
  501. [*Solved tickets]
  502. * [@https://svn.boost.org/trac/boost/ticket/6019 6019] convex_hull / area, fixed.
  503. * [@https://svn.boost.org/trac/boost/ticket/6021 6021] convex_hull / append (multipoint), fixed.
  504. * [@https://svn.boost.org/trac/boost/ticket/6028 6028] Documentation: closure, fixed.
  505. * [@https://svn.boost.org/trac/boost/ticket/6178 6178] Missing headerfile, fixed.
  506. [*Additional functionality]
  507. * support for line/polygon intersections and differences
  508. * support for convert of segment/box of different point types
  509. * support for append for multi point
  510. * the scalar function distance now throws an empty_input_exception on empty input
  511. [*Documentation]
  512. * updated support status in several algorithms
  513. * updated conformance to OGC or std
  514. * other updates and fixes
  515. [*Internal changes]
  516. * updates in specializations/not_implemented for distance/convert/assign/area/with/covered_by
  517. * move of wkt/dsv to io folder, making domains redundant
  518. * warnings: strategy concepts assigned to zero to avoid clang warnings (patched by Vishnu)
  519. * warnings: there were several unused parameters, for which gcc/clang warned (patched by Christophe)
  520. [/=================]
  521. [heading Boost 1.48]
  522. [/=================]
  523. [*Bugfixes]
  524. * Robustness issue, in some circumstances the union failed to output. Fixed.
  525. * Robustness issue, in some circumstances the calculated intersection point was outside the segment. Fixed.
  526. * Concept issue, cartesian intersect didn't understand segments other than the provided one. Fixed.
  527. * Sometimes self-intersections in linestrings were missed. Fixed.
  528. * The fusion coordinate system was not registered correctly. Fixed.
  529. [*Solved tickets]
  530. * [@https://svn.boost.org/trac/boost/ticket/5726 5726] Segment intersection algorithm still assumes 'first', 'second' members
  531. * [@https://svn.boost.org/trac/boost/ticket/5744 5744] Mistake in fusion adapt example
  532. * [@https://svn.boost.org/trac/boost/ticket/5748 5748] Needed to include <boost/foreach.hpp>
  533. * [@https://svn.boost.org/trac/boost/ticket/5954 5954] distance_pythagoras skips sqrt() step
  534. [*Improvements on algorithms]
  535. * Checking self-intersections is now not done automatically, this can blast performance.
  536. * Besides that, checking self-intersections is made faster.
  537. * Intersections now avoid outputting duplicate points. So they output the minimal set.
  538. [*Additional algorithms]
  539. * covered_by: within is defined as "within, not on boundary". covered_by is "within or on boundary"
  540. [*Additional functionality]
  541. * within: strategies can now be specified for within<point, box> and within<box, box>
  542. * convert: a much broader range of conversions is supported
  543. * assign: idem, (currently partly) synonym for convert (but reversed arguments)
  544. [*Additional coordinate types]
  545. * Basic (limited) support for Boost.Rational
  546. [heading Boost 1.47]
  547. Original release
  548. [endsect]