BlakeOrth commented on code in PR #8801:
URL: https://github.com/apache/arrow-rs/pull/8801#discussion_r2504812583


##########
parquet-geospatial/src/types.rs:
##########
@@ -0,0 +1,87 @@
+use arrow_schema::{Schema, SchemaBuilder, extension::ExtensionType};
+
+use crate::crs::Crs;
+
+pub struct Geometry {
+    crs: Crs,
+}
+
+impl Geometry {

Review Comment:
   Yes, I agree. I just kinda shoved this in here and stubbed it out so I could 
better understand how the code flow of this crate works since I'm still 
learning my way around. My plan for this was to more or less adopt 
@kylebarron's 
[`WkbType`](https://docs.rs/geoarrow-schema/latest/geoarrow_schema/struct.WkbType.html).
 
   
   That actually brings another good question, which is if we move the 
`WkbType`  here, would the `GeoArrow-rs` family of crates end up using this 
version because it's upstream?



-- 
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]

Reply via email to