Gautam Dey

Results 28 issues of Gautam Dey

Refactored code to have a Provider. All migration code is now in a Provider that provides migrations functionality. This helps isolate various parts of the migrations and prevents multiple migrations...

Should there be a new test case here that checks for `config.ErrMVTDifferentProviders` and `config.ErrMixedProviders`? From: https://github.com/go-spatial/tegola/blob/303488246a833a65a77e5fa0d0ee8029a187f0b3/cmd/internal/register/maps.go#L108 https://github.com/go-spatial/tegola/blob/303488246a833a65a77e5fa0d0ee8029a187f0b3/cmd/internal/register/maps.go#L120 _Originally posted by @ear7h in https://github.com/go-spatial/tegola/pull/687_

Here are some video's, there ar more. https://www.youtube.com/watch?v=pf_HKS7P77Y https://media.ccc.de/v/bucharest-329-building-a-national-vector-tile-set-for-the-netherlands

Like the wkb package, the Encode functions should be the following: ``` EncodeBytes(g geom.Geometry)([]byte,error) Encode(w io.Writer, g geom.Geometry) error ``` This will make the package interface for the encoding methods...

Right now we have a couple of hand-coded recursive descent parsers. We should really just write up a formal peg grammar and run pigeon on it. https://github.com/mna/pigeon This will not...

Move/Consolidate the Rectangle and Triangle shapes with the geom package. Part #269

Sometimes the makevalid function will create a polygon with a cutout that is not completely surrounded by the main ring. This results in a triangle artifact being rendered. Here is...

The only things we are using from this package is the LineString and functions it depends on. Remove extra code, and update tests as needed. part of #269

Change over the maths.Point type from a struct to a [2]float64. This will simplify quite a bit of code and remove the need for some conversion code. #269

We want to start moving over to go-spatial types. This is the first issue towards this goal. https://github.com/go-spatial/geom