Last change
on this file since 5209 was
5085,
checked in by Laurent Fairhead, 4 months ago
|
Re-introducing grid_index function that got deleted after rollback to r5065
|
File size:
717 bytes
|
Rev | Line | |
---|
[5085] | 1 | function grid_index(lon_deg,lat_deg) |
---|
| 2 | !-------------------------------------------------------------------------------- |
---|
| 3 | ! Get local index of grid point of longitude,latitude lon_deg,lat_deg |
---|
| 4 | ! Author : FH 2024/07/18 |
---|
| 5 | ! Please do not put this function in a m*odule not to complexify the replay script |
---|
| 6 | !-------------------------------------------------------------------------------- |
---|
| 7 | USE dimphy, only : klon |
---|
| 8 | USE geometry_mod, ONLY: latitude_deg, longitude_deg |
---|
| 9 | implicit none |
---|
| 10 | real, intent(in) :: lon_deg,lat_deg |
---|
| 11 | integer :: grid_index |
---|
| 12 | integer i |
---|
| 13 | grid_index=0 |
---|
| 14 | do i=1,klon |
---|
| 15 | if ( abs(lon_deg-longitude_deg(i)) < 0.02 .and. abs(lat_deg-latitude_deg(i)) < 0.02 ) then |
---|
| 16 | grid_index=i |
---|
| 17 | exit |
---|
| 18 | endif |
---|
| 19 | enddo |
---|
| 20 | return |
---|
| 21 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.