नोट
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप साइन इन करने या निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
Error parsing WKT: <parseError>
at position <pos>
Parameters
- parseError: Description of the kind of parse error encountered.
- pos: The 1-based position in the WKT string where the parse error occurred.
Explanation
Some geospatial functions may return this error when parsing the input, that is expected to be in well-known text (WKT) format. Learn more about WKT.
Examples
-- Feeding an empty point in WKT format into the h3_polyfillash3 function (as opposed to a polygon or multipolygon).
> SELECT h3_polyfillash3('POINT EMPTY', 2)
[WKT_PARSE_ERROR] Error parsing WKT: Invalid or unsupported type 'POINT' at position 1
-- Feeding a polygon with less than 4 vertices into the h3_polyfillash3 function.
> SELECT h3_polyfillash3('POLYGON((-122.4194 37.7749,-118.2437 34.0522,-74.0060 40.7128))', 2)
[WKT_PARSE_ERROR] Error parsing WKT: Too few points in ring at position 63
Functions emitting the error class
h3_coverash3
functionh3_coverash3string
functionh3_pointash3
functionh3_pointash3string
functionh3_polyfillash3
functionh3_polyfillash3string
functionh3_tessellateaswkb
function