Skip to content

Commit

Permalink
Deploying to gh-pages from @ 836a4d8 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-jts committed Apr 25, 2024
1 parent dbeace7 commit 3e612d2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion search/en.data.min.json

Large diffs are not rendered by default.

15 changes: 14 additions & 1 deletion specifications/wkb/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"url" : "https://libgeos.org/specifications/wkb/",
"headline": "Well-Known Binary (WKB)",
"description": "“Well-known binary” is a scheme for writing a simple features geometry into a platform-independent array of bytes, usually for transport between systems or between programs. By using WKB, systems can avoid exposing their particular internal implementation of geometry storage, for greater overall interoperability.\nGEOS can read and write three “flavours” of WKB:\n Standard WKB Extended WKB ISO WKB When reading WKB, GEOS will transparently detect the flavour of WKB and automatically read it.",
"wordCount" : "1136",
"wordCount" : "1185",
"inLanguage": "en",
"isFamilyFriendly": "true",
"mainEntityOfPage": {
Expand Down Expand Up @@ -1575,6 +1575,19 @@ <h1>Well-Known Binary (WKB)</h1>
Point points[numPoints];
};
</code></pre><div class="gdoc-page__anchorwrap">
<h3 id="empty-geometries"
>
Empty Geometries
<a data-clipboard-text="https://libgeos.org/specifications/wkb/#empty-geometries" class="gdoc-page__anchor clip flex align-center" title="Anchor to: Empty Geometries" aria-label="Anchor to: Empty Geometries" href="#empty-geometries">
<svg class="gdoc-icon gdoc_link"><use xlink:href="#gdoc_link"></use></svg>
</a>
</h3>
</div>
<p>For most geometry types, empty geometries are indicated naturally by having <code>numPoints</code> = 0.
Points do not have a <code>numPoints</code> field, so <code>POINT EMPTY</code> is represented by a <code>Point</code>
with each ordinate value set to an IEEE-754 quiet NaN value
(big endian 0x7ff8000000000000 or little endian 0x000000000000f87f).</p>
<div class="gdoc-page__anchorwrap">
<h3 id="geometry-types"
>
Geometry Types
Expand Down

0 comments on commit 3e612d2

Please sign in to comment.