emkornfield commented on code in PR #240:
URL: https://github.com/apache/parquet-format/pull/240#discussion_r1793002446
##########
src/main/thrift/parquet.thrift:
##########
@@ -373,6 +480,41 @@ struct JsonType {
struct BsonType {
}
+/**
+ * Geometry logical type annotation (added in 2.11.0)
+ */
+struct GeometryType {
+ /**
+ * Physical type and encoding for the geometry type.
+ * Please refer to the definition of GeometryEncoding for more detail.
+ */
+ 1: required GeometryEncoding encoding;
+ /**
+ * Interpretation for edges of elements of a GEOMETRY logical type, i.e.
whether
+ * the interpolation between points along an edge represents a straight
cartesian
+ * line or the shortest line on the sphere.
+ * Please refer to the definition of Edges for more detail.
+ */
+ 2: required Edges edges;
+ /**
+ * CRS (coordinate reference system) is a mapping of how coordinates refer to
+ * precise locations on earth. A crs is specified by a string, which is a
Parquet
+ * file metadata field whose value is the crs representation. An additional
field
Review Comment:
```suggestion
* file metadata field whose value is the CRS representation. An
additional field
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]