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"` }