-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhapi_demo.m
392 lines (327 loc) · 10.7 KB
/
hapi_demo.m
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
%% Set-up
% Download hapi.m if not found.
if exist('hapi.m','file') ~= 2
u = 'https://raw.githubusercontent.com/hapi-server/client-matlab/master/hapi.m';
urlwrite(u,'hapi.m');
end
% Download hapi_plot.m if not found.
if exist('hapiplot.m','file') ~= 2
u = 'https://raw.githubusercontent.com/hapi-server/client-matlab/master/hapiplot.m';
urlwrite(u,'hapiplot.m');
end
% Many figures generated, so dock all of them
set(0,'DefaultFigureWindowStyle','docked')
%% Scalar ephemeris from SSCWeb
%
server = 'http://hapi-server.org/servers/SSCWeb/hapi';
dataset = 'ace';
parameters = 'X_TOD';
start = '2012-02-01';
stop = '2012-02-02';
opts = struct('logging',1);
% Get data and metadata
[data,meta] = hapi(server,dataset,parameters,start,stop,opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
% Plot
hapiplot(data,meta)
%% Two scalars from SSCWeb
%
server = 'http://hapi-server.org/servers/SSCWeb/hapi';
dataset = 'ace';
parameters = 'X_TOD,Y_TOD';
start = '2012-02-01';
stop = '2012-02-02';
opts = struct('logging',1);
% Get data and metadata
[data,meta] = hapi(server,dataset,parameters,start,stop,opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
% Plot
hapiplot(data,meta)
%% Scalar string from SSCWeb
%
server = 'http://hapi-server.org/servers/SSCWeb/hapi';
dataset = 'ace';
parameters = 'LT_GEO';
start = '2012-02-01';
stop = '2012-02-02';
opts = struct('logging',1);
% Get data and metadata
[data,meta] = hapi(server,dataset,parameters,start,stop,opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
% Plot
hapiplot(data,meta)
%% Vector from CDAWeb
% Had to modify hapi.m to work because /info?id=AC_H0_MFI¶meters=BGSEc
% returns all parameters, not just BGSEc. Also note the metadata has
% the wrong fill value of "-9.999999848243207E30". It should be "-1e31"
% and a correction was applied below.
server = 'https://cdaweb.gsfc.nasa.gov/hapi';
dataset = 'AC_H0_MFI';
parameters = 'BGSEc';
start = '2002-01-01';
stop = '2002-01-02';
opts = struct('logging',1,'use_cache',0);
% Get data and metadata
[data,meta] = hapi(server,dataset,parameters,start,stop,opts);
meta.parameters{2}.fill = '-1e31'; % Correct fill value.
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
meta.parameters{1}.name = 'Time'; % Fix error in metadata.
% Plot
hapiplot(data,meta)
%% Jeremy's garage temperatures
% He is what we call, euphemistically, 'Temperature involved'.
% Note that hapi.m needed to allow 'float' as a data type
% for this to work.
server = 'http://jfaden.net/HapiServerDemo/hapi';
dataset = '0B000800408DD710';
parameters = '';
start = '2017-06-17T21:20:32.052';
stop = '2017-06-18T21:20:32.520';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
hapiplot(data,meta)
% or
% hapiplot(data,meta,'0B000800408DD710')
%% Test Data: Vector (size = [3] in HAPI notation)
% HAPIPLOT infers that this a parameter that should be displayed as
% multiple time series because the number of components of the vector
% is < 10. Note that the metadata does not provide labels for the
% individual components of the vector, so "Column #" is used in the
% legend. HAPI metadata should include an option to add column labels.
server = 'http://hapi-server.org/servers/TestData2.0/hapi'; ;
dataset = 'dataset1';
parameters = 'vector';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
% Plot
hapiplot(data,meta)
% or
% hapiplot(data,meta,'vector')
%% Test Data: 10-element vector (size = [10] in HAPI notation)
% HAPIPLOT infers that this a parameter that should be displayed as
% a spectra because the number of vector elements is > 9. Note that the
% metadata does not provide labels for the individual components of the
% vector, so "Column" is used as the y-axis label.
server = 'http://hapi-server.org/servers/TestData2.0/hapi'; ;
dataset = 'dataset1';
parameters = 'vector';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
% Plot
hapiplot(data,meta)
% or
% hapiplot(data,meta,'vector')
%% Test Data: 3x3 transformation matrix as 1-D HAPI array
% HAPIPLOT infers that this a parameter that should be displayed as
% a spectra because the number of components is >= 9. Note that the
% metadata does not provide bins so the y-labels are "Column #'. In this
% case the data provider indented to provide a time series of rotation
% transformation matrices (using Javascript array notation)
% [Txx, Txy, Txz, Tyx, Tyy, Tyz, Tzx, Tzy, Tzz]. HAPI metadata should
% include the ability to provide these labels.
server = 'http://hapi-server.org/servers/TestData2.0/hapi';
dataset = 'dataset1';
parameters = 'transform';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
% Plot
hapiplot(data,meta)
% or
% hapiplot(data,meta,'transform')
%% Test Data: 3x3 transformation matrix as 2-D HAPI array
% HAPIPLOT displays each layer of the matrix as three time series with
% y-labels tranformmulti(:,:,1), transformmulti(:,:,2), and
% transformmulti(:,:,3) and legend labels of "Column #", where # = 1, 2, or
% 3. In this case the data provided intended to provided a time series of
% rotation matrices with labels (using HAPI array notation)
% [['Txx','Txy','Txz'],['Tyx','Tyy','Tyz'],['Tzx','Tzy','Tzz']]. HAPI
% should include the ability to provide these labels.
server = 'http://hapi-server.org/servers/TestData2.0/hapi'; ;
dataset = 'dataset1';
parameters = 'transformmulti';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
% Plot
hapiplot(data,meta)
% or
% hapiplot(data,meta,'transformulti')
%% Test Data: Scalar string parameter
% Demonstrating how HAPIPLOT handles this type of parameter.
server = 'http://hapi-server.org/servers/TestData2.0/hapi'; ;
dataset = 'dataset1';
parameters = 'scalarstr';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
hapiplot(data,meta)
% or
% hapiplot(data,meta,'scalarstr')
%% Test Data: Scalar isotime parameter
% HAPIPLOT converts the isotime string to a MATLAB DATENUM to create
% y-axis labels.
server = 'http://hapi-server.org/servers/TestData2.0/hapi'; ;
dataset = 'dataset1';
parameters = 'scalariso';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
hapiplot(data,meta)
% or
% hapiplot(data,meta,'scalariso')
%% Test Data: Scalar integer parameter (with proposed category map)
% A time series of integers intended to communicate a status represented by
% a string. The metadata includes a (non-HAPI standard) map from an
% integer to a string, and this map is used to generate y-axis labels.
server = 'http://hapi-server.org/servers/TestData2.0/hapi'; ;
dataset = 'dataset1';
parameters = 'scalarcats';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
hapiplot(data,meta)
% or
% hapiplot(data,meta,'scalarcats')
%% Test Data: Parameter that is two vectors
% HAPIPLOT creates two time series plots in this case and labels the first
% using MATLAB notation as vectormulti(:,:,1) and second as
% vectormulti(:,:,2).
server = 'http://hapi-server.org/servers/TestData2.0/hapi'; ;
dataset = 'dataset1';
parameters = 'vectormulti';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
hapiplot(data,meta)
% or
% hapiplot(data,meta,'vectormulti')
%% Test Data: Vector of strings
% In this unusual dataset, 3-vector (size = [3] in HAPI notation) of
% strings is given. HAPIPLOT creates three time series plots, one for each
% vector component.
server = 'http://hapi-server.org/servers/TestData2.0/hapi';
dataset = 'dataset1';
parameters = 'vectorstr';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
hapiplot(data,meta)
% or
% hapiplot(data,meta,'vectorstr')
%% Test Data: 100-element time series with no bins
% HAPIPLOT assumes that this is best plotted as a spectra because
% the number of elements is greater than 9.
server = 'http://hapi-server.org/servers/TestData2.0/hapi';
dataset = 'dataset1';
parameters = 'spectranobins';
start = '1970-01-01';
stop = '1970-01-01T00:01:00';
opts = struct('logging',1);
[data,meta] = hapi(server, dataset, parameters, start, stop, opts);
% Display information
data
meta
fprintf('meta.parameters = ');
meta.parameters{:}
hapiplot(data,meta)
% or
% hapiplot(data,meta,'spectranobins')
%% Request list of known HAPI servers
%
Servers = hapi()
%% List datasets from a server
%
sn = 3; % Server number of interest
metad = hapi(Servers{sn})
% or
% metad = hapi(Servers{sn},opts)
%% Get metadata for all parameters in a dataset
%
dn = 2; % Dataset number from server number sn
metap = hapi(Servers{sn}, metad.catalog{dn}.id)
% or
% metap = hapi(Servers{sn},ids{dn},opts);
%% Get parameter metadata for one parameter in a dataset
%
pn = 2; % Parameter number pn in dataset dn from server sn
metapr = hapi(Servers{sn}, metad.catalog{dn}.id, metap.parameters{pn}.name)
% or
% metapr = hapi(Servers{sn}, metad.catalog{dn}.id, metap.parameters{pn}.name)