Skip to content

Commit 04eb5e8

Browse files
fix: character lengths in array constructor, otherwise error in compilation with gfortran
added hf_to_obs to .gitignore
1 parent 7a134a6 commit 04eb5e8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ convert_amsu_L1
171171
convert_L2b
172172
convert_goes_ABI_L1b
173173
MOD29E1D_to_obs
174+
hf_to_obs
174175

175176
# Test programs built by developer_tests
176177
rttov_test

observations/obs_converters/HFradar/hf_to_obs.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ program hf_to_obs
6767
integer :: num_copies = 1, & ! number of copies in sequence
6868
num_qc = 1 ! number of QC entries
6969

70-
character(len=30), dimension(3) :: obs_names = ['Eastward Sea Water Velocity' , &
70+
character(len=30), dimension(3) :: obs_names = ['Eastward Sea Water Velocity ' , &
7171
'Northward Sea Water Velocity', &
72-
'Radial Sea Water Velocity' ]
72+
'Radial Sea Water Velocity ' ]
7373

7474
character(len=256) :: next_infile, instrument
7575
character(len=512) :: string1, string2, string3

0 commit comments

Comments
 (0)