Skip to content
Snippets Groups Projects
Commit 48a73110 authored by tomrink's avatar tomrink
Browse files

change 'radians' to 'rad'

parent 88e0fe9e
No related branches found
No related tags found
No related merge requests found
...@@ -714,7 +714,7 @@ def write_icing_file(clvrx_str_time, output_dir, preds_dct, probs_dct, x, y, lon ...@@ -714,7 +714,7 @@ def write_icing_file(clvrx_str_time, output_dir, preds_dct, probs_dct, x, y, lon
if x is not None: if x is not None:
x_ds = h5f_out.create_dataset('x', data=x, dtype='f8') x_ds = h5f_out.create_dataset('x', data=x, dtype='f8')
x_ds.attrs.create('units', data='radians') x_ds.attrs.create('units', data='rad')
x_ds.attrs.create('standard_name', data='projection_x_coordinate') x_ds.attrs.create('standard_name', data='projection_x_coordinate')
x_ds.attrs.create('long_name', data='GOES PUG W-E fixed grid viewing angle') x_ds.attrs.create('long_name', data='GOES PUG W-E fixed grid viewing angle')
x_ds.attrs.create('scale_factor', data=5.58879902955962e-05) x_ds.attrs.create('scale_factor', data=5.58879902955962e-05)
...@@ -723,7 +723,7 @@ def write_icing_file(clvrx_str_time, output_dir, preds_dct, probs_dct, x, y, lon ...@@ -723,7 +723,7 @@ def write_icing_file(clvrx_str_time, output_dir, preds_dct, probs_dct, x, y, lon
x_ds.attrs.create('COFF', data=2750.5) x_ds.attrs.create('COFF', data=2750.5)
y_ds = h5f_out.create_dataset('y', data=y, dtype='f8') y_ds = h5f_out.create_dataset('y', data=y, dtype='f8')
y_ds.attrs.create('units', data='radians') y_ds.attrs.create('units', data='rad')
y_ds.attrs.create('standard_name', data='projection_y_coordinate') y_ds.attrs.create('standard_name', data='projection_y_coordinate')
y_ds.attrs.create('long_name', data='GOES PUG S-N fixed grid viewing angle') y_ds.attrs.create('long_name', data='GOES PUG S-N fixed grid viewing angle')
y_ds.attrs.create('scale_factor', data=-5.58879902955962e-05) y_ds.attrs.create('scale_factor', data=-5.58879902955962e-05)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment