Changes between Version 1 and Version 2 of Ticket #890
- Timestamp:
- 06/30/21 02:28:44 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #890
- Property Resolution Done
- Property Status closed → reopened
-
Ticket #890 – Description
v1 v2 76 76 real(r8) :: min_src, max_src 77 77 ! 78 real(r8), pointer, dimension(:,:) :: lon_src => NULL()79 real(r8), pointer, dimension(:,:) :: lat_src => NULL()78 real(r8), allocatable :: lon_src(:,:) 79 real(r8), allocatable :: lat_src(:,:) 80 80 81 real(r8), pointer, dimension(:,:) :: angle_src => NULL()82 real(r8), pointer, dimension(:,:) :: mask_src => NULL()81 real(r8), allocatable :: angle_src(:,:) 82 real(r8), allocatable :: mask_src(:,:) 83 83 ! 84 84 ! Destination grid array declaration bounds, tile partition range, … … 90 90 real(r8) :: min_dst, max_dst 91 91 ! 92 real(r8), pointer, dimension(:,:) :: lon_dst => NULL()93 real(r8), pointer, dimension(:,:) :: lat_dst => NULL()92 real(r8), allocatable :: lon_dst(:,:) 93 real(r8), allocatable :: lat_dst(:,:) 94 94 95 real(r8), pointer, dimension(:,:) :: mask_dst => NULL()95 real(r8), allocatable :: mask_dst(:,:) 96 96 97 97 real(r8), allocatable :: x_dst(:,:)