11 lines
272 B
Go
11 lines
272 B
Go
package geo
|
|
|
|
// Town represents a Canadian populated place.
|
|
// Shared by both the updater and lookup system.
|
|
type Town struct {
|
|
Name string `json:"name"`
|
|
Province string `json:"province"`
|
|
Lat float64 `json:"lat"`
|
|
Lon float64 `json:"lon"`
|
|
}
|