tegola icon indicating copy to clipboard operation
tegola copied to clipboard

Tegola is a Mapbox Vector Tile server written in Go

Results 143 tegola issues
Sort by recently updated
recently updated
newest added

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

Vector Tiles have no projection, thus any cylindrical projection on the WGS84 Datum can be rendered into Vector Tiles in meters. The default is currently web-mercator (3857), but 3395 (Elliptical...

Hi, I'm looking for a config.toml where it's layer names matches with osm-liberity.json layer names The osm-liberity style can be found here: https://maputnik.github.io/editor/#0.8/-0/0. Also, is there a matching style with...

**To Reproduce:** Run this go program: ```go package main import ( "fmt" tegola "github.com/terranodo/tegola" ) func main() { zoom := 14 var lon, lat float64 lon = 0 lat =...

bug

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

Multipolygons don't appear to be handled correctly. This is tile `9/81/197`: ![image](https://user-images.githubusercontent.com/45/42006408-77018902-7a2e-11e8-9fb7-60dba8a94f02.png) In context: ![image](https://user-images.githubusercontent.com/45/42006249-8a67c476-7a2d-11e8-8202-dbc89ec45242.png) Data for this tile: [problems.sql.gz](https://github.com/go-spatial/tegola/files/2143304/problems.sql.gz) Layer definition: ```toml [[providers.layers]] name = "states_territories" id_fieldname = "id_num"...

![image](https://user-images.githubusercontent.com/1190866/36691432-1926dc18-1aea-11e8-920d-644166827364.png) In the red box the water has had a point dropped from the region of the green circle which is essential, resulting in the line pointed at by the...

This is with `TEGOLA_OPTIONS=DontSimplifyGeo` ![image](https://user-images.githubusercontent.com/1190866/36653641-70f1f9b6-1a6b-11e8-9e0f-5c385e9f3dcd.png) The geometry in blue/green is from Tegola, converted to GeoJSON. Number of points is a significant factor in tile size.

![image](https://user-images.githubusercontent.com/1190866/36624079-bab3a084-18bf-11e8-87a3-ee33d9cbceca.png) These are water polygons, and the island just north of the middle is clipped. The location is 7/48.945/-123.437 and the data is ne_ocean from Natural Earth. I'm having trouble...

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