From 6020ff510b92fe48838f53cc27b48daf64c738be Mon Sep 17 00:00:00 2001 From: program-- Date: Tue, 11 Jul 2023 08:39:08 -0700 Subject: [PATCH] rev: add comments regarding WKB implementation changes per https://github.com/NOAA-OWP/ngen/pull/522#discussion_r1258944119 --- include/geopackage/WKB.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/geopackage/WKB.hpp b/include/geopackage/WKB.hpp index d7386324ba..a4927c017b 100644 --- a/include/geopackage/WKB.hpp +++ b/include/geopackage/WKB.hpp @@ -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;