geoparquet icon indicating copy to clipboard operation
geoparquet copied to clipboard

Spatial filters?

Open donnyv opened this issue 1 year ago • 4 comments

Do you think Spatial filters will be added?

donnyv avatar Jun 28 '24 14:06 donnyv

Of course, have to look at 1.1

bertt avatar Jun 28 '24 15:06 bertt

I don't see the branch.

donnyv avatar Jun 29 '24 02:06 donnyv

https://github.com/bertt/geoparquet/tree/to_1_1_0

But there is a build error because wrong code is generated for bbox property xmin,xmax,ymin,ymax:

        public System.Tuple<string, object> Xmin { get; set; } = new System.Tuple<string, object>();

Related Json schema code:

                  "properties": {
                    "xmin": {
                      "type": "array",
                      "items": [
                        {
                          "type": "string",
                          "minLength": 1
                        },
                        {
                          "const": "xmin"
                        }
                      ],
                      "minItems": 2,
                      "maxItems": 2
                    },

bertt avatar Jun 29 '24 06:06 bertt

Got the build error fixed with a workaround

bertt avatar Jun 29 '24 07:06 bertt