You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
822 B

  1. package main
  2. type LocationModel struct {
  3. Type string `json:"type"`
  4. Coordinates []float64 `json:"coordinates"`
  5. }
  6. type CellModel struct {
  7. Radio string `json:"radio"`
  8. MCC string `json:"mcc"`
  9. Net int `json:"net"`
  10. Area int `json:"area"`
  11. Cell int `json:"cell"`
  12. Unit int `json:"unit"`
  13. Lat float64 `json:"lat"`
  14. Lon float64 `json:"lon"`
  15. Location LocationModel `json:"location"`
  16. Range float64 `json:"range"`
  17. Samples int `json:"samples"`
  18. Changeable string `json:"changeable"`
  19. Created int64 `json:"created"`
  20. Updated int64 `json:"updated"`
  21. AverageSignal float64 `json:"averagesignal"`
  22. }