Add support for satellite tiles, with caching

This commit is contained in:
Eli Ribble 2026-04-17 17:47:38 +00:00
parent 61351dabf1
commit b6e1bffd79
No known key found for this signature in database
18 changed files with 1318 additions and 241 deletions

View file

@ -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",
},
}

View 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
}