Skip to content

Commit

Permalink
moving mercator pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
tgrigsby-sc committed Sep 9, 2022
1 parent 6f098c1 commit 77429b3
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion encoding/mvt/projection.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package mvt

import (
"github.com/paulmach/orb/mercator"
"math"
"math/bits"

"github.com/paulmach/orb"
"github.com/paulmach/orb/internal/mercator"
"github.com/paulmach/orb/maptile"
)

Expand Down
2 changes: 1 addition & 1 deletion maptile/tile.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
package maptile

import (
"github.com/paulmach/orb/mercator"
"math"
"math/bits"

"github.com/paulmach/orb"
"github.com/paulmach/orb/geojson"
"github.com/paulmach/orb/internal/mercator"
)

// Tiles is a set of tiles, later we can add methods to this.
Expand Down
2 changes: 1 addition & 1 deletion maptile/tile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ package maptile

import (
"fmt"
"github.com/paulmach/orb/mercator"
"math"
"testing"

"github.com/paulmach/orb"
"github.com/paulmach/orb/internal/mercator"
)

func TestQuadKey(t *testing.T) {
Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions project/define_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package project

import (
"github.com/paulmach/orb/mercator"
"math"
"testing"

"github.com/paulmach/orb/internal/mercator"
)

func TestDefineDeg2Rad(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion project/projections_test.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package project

import (
"github.com/paulmach/orb/mercator"
"math"
"testing"

"github.com/paulmach/orb"
"github.com/paulmach/orb/internal/mercator"
)

func TestMercator(t *testing.T) {
Expand Down

0 comments on commit 77429b3

Please sign in to comment.