-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponses.go
225 lines (192 loc) · 5.84 KB
/
responses.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package openaq
import "time"
type Meta struct {
Name string `json:"name"`
Website string `json:"website"`
Page int64 `json:"page"`
Limit int64 `json:"limit"`
Found any `json:"found"`
}
// a coordinate pair of latitude and longitude in WGS84
type Coordinates struct {
Latitude float64 `json:"latitude"`
Longitude float64 `json:"longitude"`
}
type Datetime struct {
UTC time.Time `json:"utc"`
Local time.Time `json:"local"`
}
type ProviderBase struct {
ID int64 `json:"id"`
Name string `json:"name"`
Units string `json:"units"`
DisplayName string `json:"displayName"`
}
type OwnerBase struct {
ID int64 `json:"id"`
Name string `json:"name"`
}
type InstrumentBase struct {
ID int64 `json:"id"`
Name string `json:"name"`
}
type ParameterBase struct {
ID int64 `json:"id"`
Name string `json:"name"`
Units string `json:"units"`
DisplayName string `json:"displayName"`
}
type SensorBase struct {
ID int64 `json:"id"`
Name string `json:"name"`
Parameter ParameterBase `json:"parameter"`
}
type OwnerEntityBase struct {
ID int64 `json:"id"`
Name string `json:"name"`
}
type Instrument struct {
ID int64 `json:"id"`
Name string `json:"name"`
Manufacturer ManufacturerBase `json:"manufacturer"`
}
type InstrumentsResponse struct {
Meta Meta `json:"meta"`
Results []Instrument `json:"results"`
}
type Parameter struct {
ID int64 `json:"id"`
Name string `json:"name"`
Units string `json:"units"`
DisplayName string `json:"displayName"`
Description string `json:"description"`
}
type ParametersResponse struct {
Meta Meta `json:"meta"`
Results []Parameter `json:"results"`
}
type Location struct {
ID int64 `json:"id"`
Name string `json:"name"`
Locality string `json:"locality"`
Timezone string `json:"timezone"`
Country struct {
ID int64 `json:"id"`
Code string `json:"code"`
Name string `json:"name"`
} `json:"country"`
Owner struct {
ID int64 `json:"id"`
Name string `json:"name"`
} `json:"owner"`
Provider ProviderBase `json:"provider"`
IsMobile bool `json:"isMobile"`
IsMonitor bool `json:"isMonitor"`
Instruments []InstrumentBase `json:"instruments"`
Sensors []SensorBase `json:"sensors"`
Coordinates Coordinates `json:"coordinates"`
Bounds []float64 `json:"bounds"`
Distance float64 `json:"distance"`
DatetimeFirst Datetime `json:"datetimeFirst"`
DatetimeLast Datetime `json:"datetimeLast"`
}
type LocationsResponse struct {
Meta Meta `json:"meta"`
Results []Location `json:"results"`
}
// bounding box to define the geographic bounds of the data
// coordinates in the form of []
type Bbox struct {
Type string `json:"type"`
Coordinates []interface{} `json:"coordinates"`
}
type Country struct {
ID int64 `json:"id"`
Code string `json:"code"`
Name string `json:"name"`
DatetimeFirst time.Time `json:"datetimeFirst"`
DatetimeLast time.Time `json:"datetimeLast"`
Parameters []ParameterBase `json:"parameters"`
}
type CountriesResponse struct {
Meta Meta `json:"meta"`
Results []Country `json:"results"`
}
type Provider struct {
ID int64 `json:"id"`
Name string `json:"name"`
SourceName string `json:"sourceName"`
ExportPrefix string `json:"exportPrefix"`
License string `json:"license"`
DatetimeAdded time.Time `json:"datetimeAdded"`
DatetimeFirst time.Time `json:"datetimeFirst"`
DatetimeLast time.Time `json:"datetimeLast"`
OwnerEntity OwnerEntityBase `json:"ownerEntity"`
Parameters []ParameterBase `json:"parameters"`
Bbox Bbox `json:"bbox"`
}
type ProvidersResponse struct {
Meta Meta `json:"meta"`
Results []Provider `json:"results"`
}
type ManufacturerBase struct {
ID int64 `json:"id"`
Name string `json:"name"`
}
type Manufacturer struct {
ID int64 `json:"id"`
Name string `json:"name"`
Instruments []InstrumentBase `json:"instruments"`
}
type ManufacturersResponse struct {
Meta Meta `json:"meta"`
Results []Manufacturer `json:"results"`
}
type period struct {
Label string `json:"label"`
Interval string `json:"interval"`
DatetimeFrom Datetime `json:"datetimeFrom"`
DatetimeTo Datetime `json:"datetimeTo"`
}
type summary struct {
Min float64 `json:"min"`
Q02 float64 `json:"q02"`
Q25 float64 `json:"q25"`
Median float64 `json:"median"`
Q75 float64 `json:"q75"`
Q98 float64 `json:"q98"`
Max float64 `json:"max"`
StdDev float64 `json:"sd"`
}
type coverage struct {
ExpectedCount int64 `json:"expectedCount"`
ExpectedInterval string `json:"expectedInterval"`
ObservedCount int64 `json:"observedCount"`
ObservedInterval string `json:"observedInterval"`
PercentComplete float64 `json:"percentComplete"`
PercentCoverage float64 `json:"percentCoverage"`
DatetimeFrom Datetime `json:"datetimeFrom"`
DatetimeTo Datetime `json:"datetimeTo"`
}
type Measurement struct {
Period period `json:"period"`
Value float64 `json:"value"`
Parameter ParameterBase `json:"parameter"`
Coordinates Coordinates `json:"coordinates"`
Summary summary `json:"summary"`
Coverage coverage `json:"coverage"`
}
type MeasurementsResponse struct {
Meta Meta `json:"meta"`
Results []Measurement `json:"results"`
}
type Owner struct {
ID int64 `json:"id"`
Name string `json:"name"`
}
type OwnersResponse struct {
Meta Meta `json:"meta"`
Results []Owner `json:"results"`
}
type SensorsResponse struct{}
type TrendsResponse struct{}