@@ -132,7 +132,7 @@ def parse_args(self, *args, **kwargs):
132
132
nc_dims = ("obs" ,),
133
133
nc_attr = dict (
134
134
long_name = "Rotating sense of the eddy" ,
135
- comment = "Cyclonic -1; Anti-cyclonic +1" ,
135
+ comment = "Cyclonic -1; Anticyclonic +1" ,
136
136
),
137
137
),
138
138
segment_size = dict (
@@ -197,7 +197,7 @@ def parse_args(self, *args, **kwargs):
197
197
nc_attr = dict (
198
198
units = "degrees_east" ,
199
199
axis = "X" ,
200
- comment = "Longitude center of the fit circle" ,
200
+ comment = "Longitude center of the best fit circle" ,
201
201
long_name = "Eddy Center Longitude" ,
202
202
standard_name = "longitude" ,
203
203
),
@@ -214,7 +214,7 @@ def parse_args(self, *args, **kwargs):
214
214
axis = "Y" ,
215
215
long_name = "Eddy Center Latitude" ,
216
216
standard_name = "latitude" ,
217
- comment = "Latitude center of the fit circle" ,
217
+ comment = "Latitude center of the best fit circle" ,
218
218
),
219
219
),
220
220
lon_max = dict (
@@ -268,7 +268,7 @@ def parse_args(self, *args, **kwargs):
268
268
nc_attr = dict (
269
269
long_name = "Speed area" ,
270
270
units = "m^2" ,
271
- comment = "Area enclosed by speed contour in m^2" ,
271
+ comment = "Area enclosed by the speed contour in m^2" ,
272
272
),
273
273
),
274
274
effective_area = dict (
@@ -279,7 +279,7 @@ def parse_args(self, *args, **kwargs):
279
279
nc_attr = dict (
280
280
long_name = "Effective area" ,
281
281
units = "m^2" ,
282
- comment = "Area enclosed by effective contour in m^2" ,
282
+ comment = "Area enclosed by the effective contour in m^2" ,
283
283
),
284
284
),
285
285
speed_average = dict (
@@ -307,7 +307,7 @@ def parse_args(self, *args, **kwargs):
307
307
nc_attr = dict (
308
308
long_name = "Radial Speed Profile" ,
309
309
units = "m/s" ,
310
- comment = "Speed average values from effective contour inwards to smallest contour, evenly spaced points" ,
310
+ comment = "Speed averaged values from the effective contour inwards to the smallest contour, evenly spaced points" ,
311
311
),
312
312
),
313
313
i = dict (
@@ -346,7 +346,7 @@ def parse_args(self, *args, **kwargs):
346
346
nc_attr = dict (
347
347
long_name = "Effective Radius" ,
348
348
units = "m" ,
349
- comment = "Radius of a circle whose area is equal to that enclosed by the effective contour" ,
349
+ comment = "Radius of the best fit circle corresponding to the effective contour" ,
350
350
),
351
351
),
352
352
radius_s = dict (
@@ -360,8 +360,7 @@ def parse_args(self, *args, **kwargs):
360
360
nc_attr = dict (
361
361
long_name = "Speed Radius" ,
362
362
units = "m" ,
363
- comment = "Radius of a circle whose area is equal to that "
364
- "enclosed by the contour of maximum circum-average speed" ,
363
+ comment = "Radius of the best fit circle corresponding to the contour of maximum circum-average speed" ,
365
364
),
366
365
),
367
366
track = dict (
@@ -389,8 +388,8 @@ def parse_args(self, *args, **kwargs):
389
388
nc_type = "int32" ,
390
389
nc_dims = ("obs" ,),
391
390
nc_attr = dict (
392
- long_name = "Previous obs index" ,
393
- comment = "Index of previous obs, if there are a spliting" ,
391
+ long_name = "Previous observation index" ,
392
+ comment = "Index of previous observation in a spliting case " ,
394
393
),
395
394
),
396
395
next_obs = dict (
@@ -399,8 +398,8 @@ def parse_args(self, *args, **kwargs):
399
398
nc_type = "int32" ,
400
399
nc_dims = ("obs" ,),
401
400
nc_attr = dict (
402
- long_name = "Next obs index" ,
403
- comment = "Index of next obs, if there are a merging" ,
401
+ long_name = "Next observation index" ,
402
+ comment = "Index of next observation in a merging case " ,
404
403
),
405
404
),
406
405
previous_cost = dict (
@@ -409,7 +408,7 @@ def parse_args(self, *args, **kwargs):
409
408
nc_type = "float32" ,
410
409
nc_dims = ("obs" ,),
411
410
nc_attr = dict (
412
- long_name = "Previous cost for previous obs " ,
411
+ long_name = "Previous cost for previous observation " ,
413
412
comment = "" ,
414
413
),
415
414
),
@@ -419,7 +418,7 @@ def parse_args(self, *args, **kwargs):
419
418
nc_type = "float32" ,
420
419
nc_dims = ("obs" ,),
421
420
nc_attr = dict (
422
- long_name = "Next cost for next obs " ,
421
+ long_name = "Next cost for next observation " ,
423
422
comment = "" ,
424
423
),
425
424
),
@@ -473,9 +472,9 @@ def parse_args(self, *args, **kwargs):
473
472
nc_type = "u2" ,
474
473
nc_dims = ("obs" ,),
475
474
nc_attr = dict (
476
- longname = "number of point for effective contour" ,
475
+ long_name = "number of points for effective contour" ,
477
476
units = "ordinal" ,
478
- description = "Number of point for effective contour, if greater than NbSample, there is a resampling" ,
477
+ description = "Number of point for effective contour before resampling" ,
479
478
),
480
479
),
481
480
contour_lon_s = dict (
@@ -517,9 +516,9 @@ def parse_args(self, *args, **kwargs):
517
516
nc_type = "u2" ,
518
517
nc_dims = ("obs" ,),
519
518
nc_attr = dict (
520
- longname = "number of point for speed contour" ,
519
+ long_name = "number of point for speed contour" ,
521
520
units = "ordinal" ,
522
- description = "Number of point for speed contour, if greater than NbSample, there is a resampling" ,
521
+ description = "Number of point for speed contour before resampling" ,
523
522
),
524
523
),
525
524
shape_error_e = dict (
@@ -532,8 +531,8 @@ def parse_args(self, *args, **kwargs):
532
531
nc_dims = ("obs" ,),
533
532
nc_attr = dict (
534
533
units = "%" ,
535
- comment = "Error criterion between the effective contour and its fit with the circle of same effective radius " ,
536
- long_name = "Effective Contour Error" ,
534
+ comment = "Error criterion between the effective contour and its best fit circle" ,
535
+ long_name = "Effective Contour Shape Error" ,
537
536
),
538
537
),
539
538
score = dict (
@@ -566,8 +565,8 @@ def parse_args(self, *args, **kwargs):
566
565
nc_dims = ("obs" ,),
567
566
nc_attr = dict (
568
567
units = "%" ,
569
- comment = "Error criterion between the speed contour and its fit with the circle of same speed radius " ,
570
- long_name = "Speed Contour Error" ,
568
+ comment = "Error criterion between the speed contour and its best fit circle" ,
569
+ long_name = "Speed Contour Shape Error" ,
571
570
),
572
571
),
573
572
height_max_speed_contour = dict (
0 commit comments