-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdorade_to_radar.c
509 lines (449 loc) · 17.7 KB
/
dorade_to_radar.c
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
/*
NASA/TRMM, Code 910.1.
This is the TRMM Office Radar Software Library.
Copyright (C) 1996-1999
John H. Merritt
Space Applications Corporation
Vienna, Virginia
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#define USE_RSL_VARS
#include "rsl.h"
#include "dorade.h"
extern int radar_verbose_flag;
/********************************************************************/
/* */
/* find_rsl_field_index */
/* */
/********************************************************************/
int find_rsl_field_index(char *dorade_field_name)
{
/*
* Dorade: VE, DM, SW, DBZ, ZDR, PHI, RHO, LDR, DX, CH, AH, CV, AV
* RSL: VR, DM, SW, DZ, ZD, PH, RH, LR, *DX, *CH, *AH, *CV, *AV.
*/
if (strncasecmp(dorade_field_name, "ve", 2) == 0) return VR_INDEX;
if (strncasecmp(dorade_field_name, "vr", 2) == 0) return VR_INDEX;
if (strncasecmp(dorade_field_name, "dm", 2) == 0) return DM_INDEX;
if (strncasecmp(dorade_field_name, "sw", 2) == 0) return SW_INDEX;
if (strncasecmp(dorade_field_name, "dz", 2) == 0) return DZ_INDEX;
if (strncasecmp(dorade_field_name, "zt", 2) == 0) return ZT_INDEX;
if (strncasecmp(dorade_field_name, "dbz", 3) == 0) return DZ_INDEX;
if (strncasecmp(dorade_field_name, "zdr", 3) == 0) return ZD_INDEX;
if (strncasecmp(dorade_field_name, "phi", 3) == 0) return PH_INDEX;
if (strncasecmp(dorade_field_name, "rho", 3) == 0) return RH_INDEX;
if (strncasecmp(dorade_field_name, "ldr", 3) == 0) return LR_INDEX;
if (strncasecmp(dorade_field_name, "sq", 2) == 0) return SQ_INDEX;
if (strncasecmp(dorade_field_name, "dx", 2) == 0) return DX_INDEX;
if (strncasecmp(dorade_field_name, "ch", 2) == 0) return CH_INDEX;
if (strncasecmp(dorade_field_name, "ah", 2) == 0) return AH_INDEX;
if (strncasecmp(dorade_field_name, "cv", 2) == 0) return CV_INDEX;
if (strncasecmp(dorade_field_name, "av", 2) == 0) return AV_INDEX;
if (strncasecmp(dorade_field_name, "vs", 2) == 0) return VS_INDEX;
if (strncasecmp(dorade_field_name, "vl", 2) == 0) return VL_INDEX;
if (strncasecmp(dorade_field_name, "vg", 2) == 0) return VG_INDEX;
if (strncasecmp(dorade_field_name, "vt", 2) == 0) return VT_INDEX;
if (strncasecmp(dorade_field_name, "ncp", 2) == 0) return NP_INDEX;
return -1;
}
void prt_skipped_field_msg(char *dorade_field_name)
{
#define MAXFIELDS 20
char prtname[9];
int i, already_printed;
static int nskipped = 0;
static char skipped_list[MAXFIELDS][9];
/* Make sure name is a properly formed string. */
strncpy(prtname, dorade_field_name, 8);
prtname[8] = '\0';
/* We don't want to repeat messages for the same field, so keep a list of
* fields already printed.
*/
already_printed = 0;
i = 0;
while (!already_printed && i < nskipped) {
if (strncmp(prtname, skipped_list[i], 2) == 0) already_printed = 1;
i++;
}
if (!already_printed) {
fprintf(stderr, "Unknown DORADE parameter type <%s> -- skipping.\n", prtname);
strcpy(skipped_list[nskipped], prtname);
nskipped++;
}
}
/* For date conversion routines. */
static int daytab[2][13] = {
{0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365},
{0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366}
};
/*************************************************************/
/* */
/* julian */
/* */
/*************************************************************/
static int julian(int year, int mo, int day)
{
/* Converts a calendar date (month, day, year) to a Julian date.
Returns:
Julian day.
*/
int leap;
leap = (year%4 == 0 && year%100 != 0) || year%400 == 0;
return(day + daytab[leap][mo-1]);
}
/*************************************************************/
/* */
/* ymd */
/* */
/*************************************************************/
static void ymd(int jday, int year, int *mm, int *dd)
{
/* Input: jday, yyyy */
/* Output: mm, dd */
/* Copied from hdf_to_radar.c, written by Mike Kolander. */
int leap;
int i;
leap = (year%4 == 0 && year%100 != 0) || year%400 == 0;
for (i=0; daytab[leap][i]<jday; i++) continue;
*mm = i;
i--;
*dd = jday - daytab[leap][i];
}
/* Secretly defined in uf_to_radar.c */
Volume *copy_sweeps_into_volume(Volume *new_volume, Volume *old_volume);
/**********************************************************************/
/* */
/* RSL_dorade_to_radar */
/* */
/**********************************************************************/
Radar *RSL_dorade_to_radar(char *infile)
{
Radar *radar;
Volume *new_volume;
Sweep *sweep;
Ray *ray;
int iv, iray, iparam;
int range_bin1, gate_size;
int nbins, data_len, word_size;
short *ptr2bytes;
int *ptr4bytes;
float scale, offset, value;
int datum, missing_data_flag;
float prf;
float (*f)(Range x);
Range (*invf)(float x);
FILE *fp;
Comment_block *cb;
Volume_desc *vd;
Sensor_desc **sd;
Sweep_record *sr;
Radar_desc *rd;
Data_ray *dray;
Parameter_data *pd;
Ray_info *ray_info;
Platform_info *platform_info;
int nsweep;
int i;
char buf[1024];
int degree, minute;
float second;
int year, month, day, jday, jday_vol;
radar = NULL;
if (infile == NULL) {
int save_fd;
save_fd = dup(0);
fp = fdopen(save_fd, "r");
} else
if((fp=fopen(infile, "r"))==(FILE *)NULL) {
perror(infile);
return radar;
}
fp = uncompress_pipe(fp); /* Transparently, use gunzip. */
cb = dorade_read_comment_block(fp);
/**********************************************************************/
vd = dorade_read_volume_desc(fp); /* R E A D */
if (radar_verbose_flag) dorade_print_volume_desc(vd); /* P R I N T */
/* R E A D */
sd = (Sensor_desc **) calloc(vd->nsensors, sizeof(Sensor_desc *));
for (i=0; i<vd->nsensors; i++) {
sd[i] = dorade_read_sensor(fp);
}
/* P R I N T */
if (radar_verbose_flag) {
for (i=0; i<vd->nsensors; i++) {
fprintf(stderr, "============ S E N S O R # %d =====================\n", i);
dorade_print_sensor(sd[i]);
}
}
/* R E A D sweeps. */
if (vd->nsensors > 1) {
fprintf(stderr, "RSL_dorade_to_radar: Unable to process for more than 1 sensor.\n");
fprintf(stderr, "RSL_dorade_to_radar: Number of sensors is %d\n", vd->nsensors);
return NULL;
}
/* Use sensor 0 for vitals. */
rd = sd[0]->radar_desc;
range_bin1 = sd[0]->cell_range_vector->range_cell[0];
gate_size = sd[0]->cell_range_vector->range_cell[1] - range_bin1;
radar = RSL_new_radar(MAX_RADAR_VOLUMES);
radar->h.month = vd->month;
radar->h.day = vd->day;
radar->h.year = vd->year;
radar->h.hour = vd->hour;
radar->h.minute = vd->minute;
radar->h.sec = vd->second;
sprintf(radar->h.radar_type, "dorade");
radar->h.number = 0;
strncpy(radar->h.name, vd->flight_num, sizeof(radar->h.name));
strncpy(radar->h.radar_name, rd->radar_name, sizeof(radar->h.radar_name));
strncpy(radar->h.project, vd->project_name, sizeof(radar->h.project));
sprintf(radar->h.city, "Unknown");
strncpy(radar->h.state, "UKN", 3);
sprintf(radar->h.country, "Unknown");
/* Convert lat to d:m:s */
degree = (int)rd->latitude;
minute = (int)((rd->latitude - degree) * 60);
second = (rd->latitude - degree - minute/60.0) * 3600.0;
radar->h.latd = degree;
radar->h.latm = minute;
radar->h.lats = second;
/* Convert lat to d:m:s */
degree = (int)rd->longitude;
minute = (int)((rd->longitude - degree) * 60);
second = (rd->longitude - degree - minute/60.0) * 3600.0;
radar->h.lond = degree;
radar->h.lonm = minute;
radar->h.lons = second;
radar->h.height = rd->altitude * 1000.0;
radar->h.spulse = 0; /* FIXME */
radar->h.lpulse = 0; /* FIXME */
year = vd->year;
month = vd->month;
day = vd->day;
jday_vol = julian(year, month, day);
/* TODO:
Get any threshold values present in parameter descriptors.
Note: The parameter descriptor contains an 8-character string which may
contain the, "Name of parameter upon which this parameter is thresholded".
According to documentation, if there is no thresholding parameter, the
string will be "NONE". In practice, this string has occasionally been
seen to contain only spaces for this condition. The corresponding
missing-data-flag for threshold may also vary, the nominal value being
-999, but has also been -32768.
Pseudo code:
nparam = rd->nparam_desc; [<--useable code, i.e., not pseudo]
create string array for threshold parameter names, size nparams.
for each param:
strcpy thresh param name from param desc to threshold param array.
if string is all blanks, replace with 'NONE'.
endfor
*/
/* Begin volume code. */
/* We don't know how many sweeps per volume exist, until we read
* the file. So allocate a large number of pointers, hope we don't
* exceed it, and adjust the pointer array at the end. This is
* efficient because we'll be manipulating pointers to the sweeps and
* not the sweeps themselves.
*/
if (radar_verbose_flag)
fprintf(stderr, "Number of parameters: %d\n", rd->nparam_desc);
/* All the parameters are together, however, their order within
* the ray is not guarenteed. For instance, VE could appear after
* DM. For this we'll keep a list of parameter names and perform
* a (linear) search. The result will be an index into the RSL
* volume array (radar->v[i]). It is likely that the order will be
* consistant within a file, therefore, we'll keep track of the index of
* our previous parameter type and begin the search from there; the next
* index should be a match.
*
* The dorade parameter names and the rsl mapping is:
*
* Dorade: VE, DM, SW, DBZ, ZDR, PHI, RHO, LDR, DX, CH, AH, CV, AV
* RSL: VR, DM, SW, DZ, ZD, PH, RH, LR, *DX, *CH, *AH, *CV, *AV.
*
* * means this is a new RSL name.
*/
#define DORADE_MAX_SWEEP 20
nsweep = 0;
while((sr = dorade_read_sweep(fp, sd))) {
for(iray = 0; iray < sr->nrays; iray++) {
dray = sr->data_ray[iray];
/* Now, loop through the parameters and fill the rsl structures. */
for (iparam = 0; iparam < dray->nparam; iparam++) {
pd = dray->parameter_data[iparam];
iv = find_rsl_field_index(pd->name);
if (iv < 0) {
prt_skipped_field_msg(pd->name);
continue;
}
if (radar->v[iv] == NULL) {
radar->v[iv] = RSL_new_volume(DORADE_MAX_SWEEP); /* Expandable */
} else if (nsweep >= radar->v[iv]->h.nsweeps) {
/* Must expand the number of sweeps. */
/* Expand by another DORADE_MAX_SWEEP. */
if (radar_verbose_flag) {
fprintf(stderr, "nsweeps (%d) exceeds radar->v[%d]->h.nsweeps (%d)."
"\n", nsweep, iv, radar->v[iv]->h.nsweeps);
fprintf(stderr, "Increasing it to %d sweeps\n",
radar->v[iv]->h.nsweeps+DORADE_MAX_SWEEP);
}
new_volume = RSL_new_volume(radar->v[iv]->h.nsweeps+DORADE_MAX_SWEEP);
/* Look in uf_to_radar.c for 'copy_sweeps_into_volume' */
new_volume = copy_sweeps_into_volume(new_volume, radar->v[iv]);
radar->v[iv] = new_volume;
}
if ((sweep = radar->v[iv]->sweep[nsweep]) == NULL) {
sweep = radar->v[iv]->sweep[nsweep] = RSL_new_sweep(sr->s_info->nrays);
sweep->h.sweep_num = sr->s_info->sweep_num;
sweep->h.elev = sr->s_info->fixed_angle;
sweep->h.beam_width = rd->horizontal_beam_width;
sweep->h.vert_half_bw = rd->vertical_beam_width / 2.0;
sweep->h.horz_half_bw = rd->horizontal_beam_width / 2.0;
sweep->h.f = RSL_f_list[iv];
sweep->h.invf = RSL_invf_list[iv];
}
data_len = dray->data_len[iparam];
word_size = dray->word_size[iparam];
if (word_size != 2 && word_size != 4) {
fprintf(stderr,"RSL_dorade_to_radar: dray->word_size[%d] = %d\n",
iparam, dray->word_size[iparam]);
fprintf(stderr,"Expected value is 2 or 4.\n");
return NULL;
}
nbins = data_len / word_size;
/* Allocate the ray and load the parameter data. */
if ((ray = sweep->ray[iray]) == NULL) {
if (radar_verbose_flag)
fprintf(stderr, "Allocating %d bins for ray %d\n",
dray->data_len[iparam], iray);
ray = sweep->ray[iray] = RSL_new_ray(nbins);
}
/* Load ray header. */
ray_info = dray->ray_info;
jday = ray_info->jday;
if (jday != jday_vol) {
if (jday > 0 && jday < 367) {
/* Recompute year month day */
if (jday < jday_vol) year++;
ymd(jday, year, &month, &day);
jday_vol = jday;
}
else { /* Invalid jday */
}
}
ray->h.year = year;
ray->h.month = month;
ray->h.day = day;
ray->h.hour = ray_info->hour;
ray->h.minute = ray_info->minute;
ray->h.sec = ray_info->second + ray_info->msec / 1000.;
ray->h.azimuth = ray_info->azimuth;
ray->h.ray_num = iray + 1;
ray->h.elev = ray_info->elevation;
ray->h.elev_num = ray_info->sweep_num;
ray->h.unam_rng = rd->unambiguous_range;
ray->h.nyq_vel = rd->unambiguous_velocity;
ray->h.azim_rate = ray_info->scan_rate;
/* TODO
ray->h.fix_angle = ;
*/
ray->h.range_bin1 = range_bin1;
ray->h.gate_size = gate_size;
platform_info = dray->platform_info;
ray->h.pitch = platform_info->pitch;
ray->h.roll = platform_info->roll;
ray->h.heading = platform_info->heading;
ray->h.pitch_rate = platform_info->pitch_rate;
ray->h.heading_rate = platform_info->heading_rate;
ray->h.lat = platform_info->latitude;
ray->h.lon = platform_info->longitude;
ray->h.alt = platform_info->altitude;
ray->h.vel_east = platform_info->ew_speed;
ray->h.vel_north = platform_info->ns_speed;
ray->h.vel_up = platform_info->v_speed;
/* TODO: Does DORADE have Doppler velocity res?
A: No.
ray->h.vel_res = N/A
*/
ray->h.beam_width = rd->horizontal_beam_width;
/* TODO
ray->h.frequency = @Radar Descriptor
Get parm_desc.xmit_freq
Find first set-bit, use frequency from corresponding index in rad_desc frequenies.
ray->h.pulse_count = Is it number samples used? @Param desc. Probably not.
* The following are DONE *
ray->h.pulse_width = @Parameter Descriptor--not same--it's in meters--
we use micro-sec. They're using pulse length.
pulse width = pulse length/c
ray->h.wavelength = Can compute using Nyquist velocity and PRF or PRT:
wl = 4*vmax/PRF or wl = 4*vmax*PRT
ray->h.prf = Can compute if nothing else: prf = c/(2*Rmax)
*/
/* DORADE is actually using pulse length. Convert to pulse width. */
ray->h.pulse_width = (sd[0]->p_desc[iparam]->pulse_width/
RSL_SPEED_OF_LIGHT) * 1e6;
prf = RSL_SPEED_OF_LIGHT/(2.*rd->unambiguous_range*1000.);
ray->h.prf = prf;
ray->h.wavelength = (4.*rd->unambiguous_velocity)/prf;
ray->h.nbins = nbins;
ray->h.f = RSL_f_list[iv];
ray->h.invf = RSL_invf_list[iv];
/* Copy the ray data into the RSL ray. */
/* Assign pointer to data.
* Get datum using word size and proper cast.
* Convert and store in rsl ray->range.
* Increment pointer to data based on word size.
*/
ptr2bytes = (short *) pd->data;
ptr4bytes = (int *) pd->data;
scale = sd[0]->p_desc[iparam]->scale_factor;
offset = sd[0]->p_desc[iparam]->offset_factor;
missing_data_flag = sd[0]->p_desc[iparam]->missing_data_flag;
for (i=0; i<nbins; i++) {
if (word_size == 2) datum = *ptr2bytes++;
else datum = *ptr4bytes++;
/*
TODO: If there is a threshold parameter for this parameter then
apply threshold value. I think threshold works like this: If there's a
threshold parameter, as with VT (threshold parm = NCP), then use
threshold value from that parameter unless it is the missing data value.
*/
if (datum != missing_data_flag) {
value = ((float)datum - offset) / scale;
}
else value = BADVAL;
ray->range[i] = ray->h.invf(value);
}
if (iray == 0) {
radar->v[iv]->h.nsweeps = nsweep + 1;
radar->v[iv]->h.f = RSL_f_list[iv];
radar->v[iv]->h.invf = RSL_invf_list[iv];
}
}
}
nsweep++;
if (radar_verbose_flag) fprintf(stderr, "______NEW SWEEP__<%d>____\n", nsweep);
/* Save for loading into volume structure. */
dorade_free_sweep(sr);
}
/* The following avoids a broken pipe message, since a VOLD at the end
* is not read yet.
*/
while(fread(buf, sizeof(buf), 1, fp)) continue; /* Read til EOF */
rsl_pclose(fp);
return radar;
}