Package geo turns addresses into coordinates and coordinates into bounding
boxes.
Geocoding goes through the Base Adresse Nationale, the French government's
open address database: no API key, no quota worth worrying about, and
house-number precision. It only covers France, which matches the tool —
titres-restaurant are a French scheme.
type Place struct {
Label string `json:"label"`
City string `json:"city"`
Postcode string `json:"postcode"`
Point Point `json:"point"`
Score float64 `json:"score"`
}