Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/gen_topo.f90
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,12 @@ subroutine gen_topo(topo_file, out_file, grid_file, istripolar, offset)
call handle_error(nf90_def_var(ncid_topo, 'depth_med', nf90_float, dids_topo, depth_med_id))
call handle_error(nf90_def_var(ncid_topo, 'depth_all_med', nf90_float, dids_topo, depth_all_med_id))
call handle_error(nf90_def_var(ncid_topo, 'sea_area_fraction', nf90_float, dids_topo, frac_id))
call handle_error(nf90_def_var(ncid_topo, 'geolon_t', nf90_float, dids, geolon_id, deflate_level=1, shuffle=.true.))
call handle_error(nf90_def_var(ncid_topo, 'geolon_t', nf90_float, dids_topo, geolon_id, deflate_level=1, shuffle=.true.))
call handle_error(nf90_put_att(ncid_topo, geolon_id, 'long_name', 'tracer longitude'))
call handle_error(nf90_put_att(ncid_topo, geolon_id, 'units', 'degrees_E'))
call handle_error(nf90_put_var(ncid_topo, geolon_id, x_t))

call handle_error(nf90_def_var(ncid_topo, 'geolat_t', nf90_float, dids, geolat_id, deflate_level=1, shuffle=.true.))
call handle_error(nf90_def_var(ncid_topo, 'geolat_t', nf90_float, dids_topo, geolat_id, deflate_level=1, shuffle=.true.))
call handle_error(nf90_put_att(ncid_topo, geolat_id, 'long_name', 'tracer latitude'))
call handle_error(nf90_put_att(ncid_topo, geolat_id, 'units', 'degrees_N'))
call handle_error(nf90_put_var(ncid_topo, geolat_id, y_t))
Expand Down