Skip to content

Commit

Permalink
rev: add comments regarding WKB implementation
Browse files Browse the repository at this point in the history
changes per #522 (comment)
  • Loading branch information
program-- authored and mattw-nws committed Jul 18, 2023
1 parent 231bfba commit 6020ff5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion include/geopackage/WKB.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ namespace bg = boost::geometry;
namespace geopackage {

/**
* A recursive WKB reader
* A recursive WKB reader.
*
* @note This WKB implementation follows a subset of the
* OGC Specification found in https://www.ogc.org/standard/sfa/.
* This is a strict WKB implementation and does not support
* Extended WKB (EWKB) or Tiny WKB (TWKB).
*/
struct wkb {
using point_t = bg::model::point<double, 2, bg::cs::cartesian>;
Expand Down

0 comments on commit 6020ff5

Please sign in to comment.