JosiahParry / serde_esri

Esri JSON struct definitions and serde integration.
https://josiahparry.github.io/serde_esri/
7 stars 1 forks source link

propagate CRS #12

Open JosiahParry opened 7 months ago

JosiahParry commented 7 months ago

The spatial reference is captured by a FeatureSet in multiple places. These are not carried forward onto the geoarrow array. This should be.

One complication, though is the esri spatial reference syntax is probably not compatible with geoarrow?

JosiahParry commented 5 months ago

We can create proj json easily if we only support wkid fields for a featureset

For example

impl SpatialReference {
  fn as_proj_json(&self) -> Option<String> {
  }
}