nidus-sync/platform/geom/geom.go

10 lines
176 B
Go
Raw Normal View History

package geom
import (
"fmt"
)
func PostgisPointQuery(longitude, latitude float64) string {
return fmt.Sprintf("ST_GeometryFromText('Point(%f %f)')", longitude, latitude)
}