Skip to content

Commit c3896c2

Browse files
committed
remove vscode and change file name to grb2
1 parent ed3f277 commit c3896c2

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ log*
1010
~
1111
.DS_Store
1212

13+
.vscode/

src/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
build
22
install
3+
.vscode

src/ocnicepost.fd/ocnicepost.F90

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ program ocnicepost
262262
!--------------------------------------------------------
263263

264264
if(grib2) then
265-
gout = trim(ftype)//'.'//trim(fdst)//'.gb2'
265+
gout = trim(ftype)//'.'//trim(fdst)//'.grb2'
266266
if (debug) write(logunit, '(a)')'GRIB2 2D output file: '//trim(gout)
267267

268268
if (allocated(rgb2d) .and. allocated(rgc2d)) then
@@ -287,7 +287,7 @@ program ocnicepost
287287
call write_grib2_2d(gout, g2d, (/nxr,nyr/), nconsd2d+nbilin2d, grib2d, vfill)
288288

289289
if (allocated(rgb3d)) then
290-
gout = trim(ftype)//'.'//trim(fdst)//'_3D.gb2'
290+
gout = trim(ftype)//'.'//trim(fdst)//'_3D.grb2'
291291
call write_grib2_3d(gout, b3d, (/nxr,nyr,nlevs/), nbilin3d, rgb3d, vfill)
292292
if (debug) write(logunit, '(a)')'GRIB2 3D output file: '//trim(gout)
293293
end if

0 commit comments

Comments
 (0)