Skip to content

Commit edfe547

Browse files
committed
moved package from terranodo to go-spatial
1 parent d396f58 commit edfe547

File tree

178 files changed

+393
-393
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+393
-393
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Tegola
22

33
[![Build Status](https://travis-ci.org/terranodo/tegola.svg?branch=master)](https://travis-ci.org/terranodo/tegola)
4-
[![Report Card](https://goreportcard.com/badge/github.com/terranodo/tegola)](https://goreportcard.com/badge/github.com/terranodo/tegola)
4+
[![Report Card](https://goreportcard.com/badge/github.com/go-spatial/tegola)](https://goreportcard.com/badge/github.com/terranodo/tegola)
55
[![Coverage Status](https://coveralls.io/repos/github/terranodo/tegola/badge.svg?branch=v0.6.0)](https://coveralls.io/github/terranodo/tegola?branch=v0.6.0)
6-
[![Godoc](http://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/terranodo/tegola)
7-
[![license](http://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://github.com/terranodo/tegola/blob/master/LICENSE.md)
6+
[![Godoc](http://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/go-spatial/tegola)
7+
[![license](http://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://github.com/go-spatial/tegola/blob/master/LICENSE.md)
88

99
Tegola is a vector tile server delivering [Mapbox Vector Tiles](https://github.com/mapbox/vector-tile-spec) leveraging PostGIS as the data provider.
1010

@@ -40,7 +40,7 @@ Use "tegola [command] --help" for more information about a command.
4040
```
4141

4242
## Running tegola as a vector tile server
43-
1. Download the appropriate binary of tegola for your platform via the [release page](https://github.com/terranodo/tegola/releases).
43+
1. Download the appropriate binary of tegola for your platform via the [release page](https://github.com/go-spatial/tegola/releases).
4444
2. After the download you will need to make the binary executable. The binary, will be name `tegola_$OS_$ARCH`, to follow along with the instructions make sure to rename it to `tegola`.
4545
2. Setup your config file and run. Tegola expects a `config.toml` to be in the same directory as the binary. You can set a different location for the `config.toml` using a command flag:
4646

@@ -56,7 +56,7 @@ Use "tegola [command] --help" for more information about a command.
5656

5757
The server root will display a built in viewer with an auto generated style. For example:
5858

59-
![tegola built in viewer](https://raw.githubusercontent.com/terranodo/tegola/v0.4.0/docs/screenshots/built-in-viewer.png "tegola built in viewer")
59+
![tegola built in viewer](https://raw.githubusercontent.com/go-spatial/tegola/v0.4.0/docs/screenshots/built-in-viewer.png "tegola built in viewer")
6060

6161

6262
```

atlas/atlas.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"context"
55
"sync"
66

7-
"github.com/terranodo/tegola"
8-
"github.com/terranodo/tegola/cache"
9-
_ "github.com/terranodo/tegola/cache/file"
10-
_ "github.com/terranodo/tegola/cache/s3"
11-
"github.com/terranodo/tegola/geom/slippy"
7+
"github.com/go-spatial/tegola"
8+
"github.com/go-spatial/tegola/cache"
9+
_ "github.com/go-spatial/tegola/cache/file"
10+
_ "github.com/go-spatial/tegola/cache/s3"
11+
"github.com/go-spatial/tegola/geom/slippy"
1212
)
1313

1414
// DefaultAtlas is instanitated for convenience

atlas/atlas_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package atlas_test
22

33
import (
4-
"github.com/terranodo/tegola/atlas"
5-
"github.com/terranodo/tegola/geom"
6-
"github.com/terranodo/tegola/provider/test"
4+
"github.com/go-spatial/tegola/atlas"
5+
"github.com/go-spatial/tegola/geom"
6+
"github.com/go-spatial/tegola/provider/test"
77
)
88

99
var testLayer1 = atlas.Layer{

atlas/layer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package atlas
22

33
import (
4-
"github.com/terranodo/tegola/geom"
5-
"github.com/terranodo/tegola/provider"
4+
"github.com/go-spatial/tegola/geom"
5+
"github.com/go-spatial/tegola/provider"
66
)
77

88
type Layer struct {

atlas/layer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package atlas_test
33
import (
44
"testing"
55

6-
"github.com/terranodo/tegola/atlas"
6+
"github.com/go-spatial/tegola/atlas"
77
)
88

99
func TestLayerMVTName(t *testing.T) {

atlas/map.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import (
99

1010
"github.com/golang/protobuf/proto"
1111

12-
"github.com/terranodo/tegola"
13-
"github.com/terranodo/tegola/basic"
14-
"github.com/terranodo/tegola/geom"
15-
"github.com/terranodo/tegola/geom/slippy"
16-
"github.com/terranodo/tegola/internal/convert"
17-
"github.com/terranodo/tegola/mvt"
18-
"github.com/terranodo/tegola/provider"
19-
"github.com/terranodo/tegola/provider/debug"
12+
"github.com/go-spatial/tegola"
13+
"github.com/go-spatial/tegola/basic"
14+
"github.com/go-spatial/tegola/geom"
15+
"github.com/go-spatial/tegola/geom/slippy"
16+
"github.com/go-spatial/tegola/internal/convert"
17+
"github.com/go-spatial/tegola/mvt"
18+
"github.com/go-spatial/tegola/provider"
19+
"github.com/go-spatial/tegola/provider/debug"
2020
)
2121

2222
// NewMap creates a new map with the necessary default values

atlas/map_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import (
88
"github.com/arolek/p"
99
"github.com/golang/protobuf/proto"
1010

11-
"github.com/terranodo/tegola"
12-
"github.com/terranodo/tegola/atlas"
13-
"github.com/terranodo/tegola/geom/slippy"
14-
"github.com/terranodo/tegola/mvt/vector_tile"
15-
"github.com/terranodo/tegola/provider/test"
11+
"github.com/go-spatial/tegola"
12+
"github.com/go-spatial/tegola/atlas"
13+
"github.com/go-spatial/tegola/geom/slippy"
14+
"github.com/go-spatial/tegola/mvt/vector_tile"
15+
"github.com/go-spatial/tegola/provider/test"
1616
)
1717

1818
func TestMapFilterLayersByZoom(t *testing.T) {

basic/clone.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package basic
22

3-
import "github.com/terranodo/tegola"
3+
import "github.com/go-spatial/tegola"
44

55
// ClonePoint will return a basic.Point for given tegola.Point.
66
func ClonePoint(pt tegola.Point) Point {

basic/geometry_math.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
"errors"
88

9-
"github.com/terranodo/tegola"
10-
"github.com/terranodo/tegola/maths/webmercator"
9+
"github.com/go-spatial/tegola"
10+
"github.com/go-spatial/tegola/maths/webmercator"
1111
)
1212

1313
// ApplyToPoints applys the given function to each point in the geometry and any sub geometries, return a new transformed geometry.

basic/is_valid.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package basic
33
import (
44
"log"
55

6-
"github.com/terranodo/tegola"
7-
"github.com/terranodo/tegola/maths"
6+
"github.com/go-spatial/tegola"
7+
"github.com/go-spatial/tegola/maths"
88
)
99

1010
// IsValid returns whether the line is valid according to the OGC specifiction

0 commit comments

Comments
 (0)