nidus-sync/platform/geom/geom.go
Eli Ribble 7237f5f666
Some checks failed
/ golint (push) Failing after 3m50s
Move internal references to new source hosting
2026-05-19 15:33:57 +00:00

11 lines
259 B
Go

package geom
import (
"fmt"
"source.gleipnir.technology/Gleipnir/nidus-sync/platform/types"
)
func PostgisPointQuery(location types.Location) string {
return fmt.Sprintf("ST_SetSRID(ST_MakePoint(%f, %f), 4326)", location.Longitude, location.Latitude)
}