Add support for satellite tiles, with caching
This commit is contained in:
parent
61351dabf1
commit
b6e1bffd79
18 changed files with 1318 additions and 241 deletions
|
|
@ -7,7 +7,7 @@ var TileCachedImageErrors = &tileCachedImageErrors{
|
|||
ErrUniqueCachedImagePkey: &UniqueConstraintError{
|
||||
schema: "tile",
|
||||
table: "cached_image",
|
||||
columns: []string{"arcgis_id", "x", "y", "z"},
|
||||
columns: []string{"service_id", "x", "y", "z"},
|
||||
s: "cached_image_pkey",
|
||||
},
|
||||
}
|
||||
|
|
|
|||
26
db/dberrors/tile.service.bob.go
Normal file
26
db/dberrors/tile.service.bob.go
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
// Code generated by BobGen psql v0.42.5. DO NOT EDIT.
|
||||
// This file is meant to be re-generated in place and/or deleted at any time.
|
||||
|
||||
package dberrors
|
||||
|
||||
var TileServiceErrors = &tileServiceErrors{
|
||||
ErrUniqueServicePkey: &UniqueConstraintError{
|
||||
schema: "tile",
|
||||
table: "service",
|
||||
columns: []string{"id"},
|
||||
s: "service_pkey",
|
||||
},
|
||||
|
||||
ErrUniqueServiceNameUnique: &UniqueConstraintError{
|
||||
schema: "tile",
|
||||
table: "service",
|
||||
columns: []string{"name"},
|
||||
s: "service_name_unique",
|
||||
},
|
||||
}
|
||||
|
||||
type tileServiceErrors struct {
|
||||
ErrUniqueServicePkey *UniqueConstraintError
|
||||
|
||||
ErrUniqueServiceNameUnique *UniqueConstraintError
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue