Newer
Older
module read_field_indices_m
implicit none
contains
! Libraries:
use shapelib_03, only: dbf_get_field_index_03
!---------------------------------------------------------------------
call dbf_get_field_index_03(hshp%extremum, "ssh", hshp%extr_ssh)
call dbf_get_field_index_03(hshp%extremum, "date", hshp%extr_date)
call dbf_get_field_index_03(hshp%extremum, "eddy_index", &
hshp%extr_eddy_index)
call dbf_get_field_index_03(hshp%extremum, "valid", hshp%extr_valid)
call dbf_get_field_index_03(hshp%extremum, "speed", hshp%extr_speed)
call dbf_get_field_index_03(hshp%outermost, "r_eq_area", &
hshp%out_r_eq_area)
call dbf_get_field_index_03(hshp%outermost, "ssh", hshp%out_ssh)
call dbf_get_field_index_03(hshp%outermost, "date", hshp%out_date)
call dbf_get_field_index_03(hshp%outermost, "eddy_index", &
hshp%out_eddy_index)
! We allow the field radius4 to be missing:
hshp%out_radius4 = dbfgetfieldindex(hshp%outermost, "radius4")
call dbf_get_field_index_03(hshp%max_speed, "r_eq_area", &
hshp%max_speed_r_eq_area)
call dbf_get_field_index_03(hshp%max_speed, "ssh", hshp%max_speed_ssh)
call dbf_get_field_index_03(hshp%max_speed, "date", hshp%max_speed_date)
call dbf_get_field_index_03(hshp%max_speed, "eddy_index", &
hshp%max_speed_eddy_index)
end subroutine read_field_indices
end module read_field_indices_m