paleolimbot commented on code in PR #45459:
URL: https://github.com/apache/arrow/pull/45459#discussion_r1969518746
##########
python/pyarrow/_parquet.pyx:
##########
@@ -312,6 +312,93 @@ cdef _box_flba(ParquetFLBA val, uint32_t len):
return cp.PyBytes_FromStringAndSize(<char*> val.ptr, <Py_ssize_t> len)
+cdef class GeospatialStatistics(_Weakrefable):
+ """Statistics for columns with geospatial data types"""
+
+ def __cinit__(self):
+ pass
+
+ def __repr__(self):
+ return """{}
+ geospatial_types: {}
+ xmin: {}
+ xmax: {}
+ ymin: {}
Review Comment:
I condensed the dimensions to their own lines...I want to make sure this
output still communicates that the way you extract these things is (e.g.)
`geospatial_statistics.xmin` but am definitely open to something better I
haven't thought of!
--
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]