The only thing wrong at this point that I can tell is that address aren't being correctly populated when I reverse geocode.
11 lines
254 B
Go
11 lines
254 B
Go
package geom
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/platform/types"
|
|
)
|
|
|
|
func PostgisPointQuery(location types.Location) string {
|
|
return fmt.Sprintf("ST_SetSRID(ST_MakePoint(%f, %f), 4326)", location.Longitude, location.Latitude)
|
|
}
|