[1157] | 1 | ! $Id$ |
---|
| 2 | module nf95_put_var_m |
---|
| 3 | |
---|
| 4 | implicit none |
---|
| 5 | |
---|
| 6 | interface nf95_put_var |
---|
[1263] | 7 | module procedure nf95_put_var_FourByteReal, nf95_put_var_FourByteInt, & |
---|
| 8 | nf95_put_var_1D_FourByteReal, nf95_put_var_1D_FourByteInt, & |
---|
[1157] | 9 | nf95_put_var_2D_FourByteReal, nf95_put_var_3D_FourByteReal, & |
---|
| 10 | nf95_put_var_4D_FourByteReal |
---|
| 11 | end interface |
---|
| 12 | |
---|
| 13 | private |
---|
| 14 | public nf95_put_var |
---|
| 15 | |
---|
| 16 | contains |
---|
| 17 | |
---|
[1263] | 18 | subroutine nf95_put_var_FourByteReal(ncid, varid, values, start, ncerr) |
---|
| 19 | |
---|
| 20 | use netcdf, only: nf90_put_var |
---|
| 21 | use handle_err_m, only: handle_err |
---|
| 22 | |
---|
[1635] | 23 | integer, intent(in) :: ncid, varid |
---|
| 24 | real, intent(in) :: values |
---|
| 25 | integer, dimension(:), optional, intent(in) :: start |
---|
[1263] | 26 | integer, intent(out), optional:: ncerr |
---|
| 27 | |
---|
| 28 | ! Variable local to the procedure: |
---|
| 29 | integer ncerr_not_opt |
---|
| 30 | |
---|
| 31 | !------------------- |
---|
| 32 | |
---|
| 33 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start) |
---|
| 34 | if (present(ncerr)) then |
---|
| 35 | ncerr = ncerr_not_opt |
---|
| 36 | else |
---|
| 37 | call handle_err("nf95_put_var_FourByteReal", ncerr_not_opt, ncid, & |
---|
| 38 | varid) |
---|
| 39 | end if |
---|
| 40 | |
---|
| 41 | end subroutine nf95_put_var_FourByteReal |
---|
| 42 | |
---|
| 43 | !*********************** |
---|
| 44 | |
---|
| 45 | subroutine nf95_put_var_FourByteInt(ncid, varid, values, start, ncerr) |
---|
| 46 | |
---|
| 47 | use netcdf, only: nf90_put_var |
---|
| 48 | use handle_err_m, only: handle_err |
---|
| 49 | |
---|
[1635] | 50 | integer, intent(in) :: ncid, varid |
---|
| 51 | integer, intent(in) :: values |
---|
| 52 | integer, dimension(:), optional, intent(in) :: start |
---|
[1263] | 53 | integer, intent(out), optional:: ncerr |
---|
| 54 | |
---|
| 55 | ! Variable local to the procedure: |
---|
| 56 | integer ncerr_not_opt |
---|
| 57 | |
---|
| 58 | !------------------- |
---|
| 59 | |
---|
| 60 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start) |
---|
| 61 | if (present(ncerr)) then |
---|
| 62 | ncerr = ncerr_not_opt |
---|
| 63 | else |
---|
| 64 | call handle_err("nf95_put_var_FourByteInt", ncerr_not_opt, ncid, & |
---|
| 65 | varid) |
---|
| 66 | end if |
---|
| 67 | |
---|
| 68 | end subroutine nf95_put_var_FourByteInt |
---|
| 69 | |
---|
| 70 | !*********************** |
---|
| 71 | |
---|
[1635] | 72 | subroutine nf95_put_var_1D_FourByteReal(ncid, varid, values, start, & |
---|
| 73 | count_nc, stride, map, ncerr) |
---|
[1157] | 74 | |
---|
| 75 | use netcdf, only: nf90_put_var |
---|
| 76 | use handle_err_m, only: handle_err |
---|
| 77 | |
---|
| 78 | integer, intent(in) :: ncid, varid |
---|
| 79 | real, intent(in) :: values(:) |
---|
[1635] | 80 | integer, dimension(:), optional, intent(in) :: start, count_nc, stride, map |
---|
[1157] | 81 | integer, intent(out), optional:: ncerr |
---|
| 82 | |
---|
| 83 | ! Variable local to the procedure: |
---|
| 84 | integer ncerr_not_opt |
---|
| 85 | |
---|
| 86 | !------------------- |
---|
| 87 | |
---|
[1635] | 88 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start, count_nc, & |
---|
| 89 | stride, map) |
---|
[1157] | 90 | if (present(ncerr)) then |
---|
| 91 | ncerr = ncerr_not_opt |
---|
| 92 | else |
---|
| 93 | call handle_err("nf95_put_var_1D_FourByteReal", ncerr_not_opt, ncid, & |
---|
| 94 | varid) |
---|
| 95 | end if |
---|
| 96 | |
---|
| 97 | end subroutine nf95_put_var_1D_FourByteReal |
---|
| 98 | |
---|
| 99 | !*********************** |
---|
| 100 | |
---|
[1635] | 101 | subroutine nf95_put_var_1D_FourByteInt(ncid, varid, values, start, & |
---|
| 102 | count_nc, stride, map, ncerr) |
---|
[1263] | 103 | |
---|
| 104 | use netcdf, only: nf90_put_var |
---|
| 105 | use handle_err_m, only: handle_err |
---|
| 106 | |
---|
| 107 | integer, intent(in) :: ncid, varid |
---|
| 108 | integer, intent(in) :: values(:) |
---|
[1635] | 109 | integer, dimension(:), optional, intent(in) :: start, count_nc, stride, map |
---|
[1263] | 110 | integer, intent(out), optional:: ncerr |
---|
| 111 | |
---|
| 112 | ! Variable local to the procedure: |
---|
| 113 | integer ncerr_not_opt |
---|
| 114 | |
---|
| 115 | !------------------- |
---|
| 116 | |
---|
[1635] | 117 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start, count_nc, & |
---|
| 118 | stride, map) |
---|
[1263] | 119 | if (present(ncerr)) then |
---|
| 120 | ncerr = ncerr_not_opt |
---|
| 121 | else |
---|
| 122 | call handle_err("nf95_put_var_1D_FourByteInt", ncerr_not_opt, ncid, & |
---|
| 123 | varid) |
---|
| 124 | end if |
---|
| 125 | |
---|
| 126 | end subroutine nf95_put_var_1D_FourByteInt |
---|
| 127 | |
---|
| 128 | !*********************** |
---|
| 129 | |
---|
[1635] | 130 | subroutine nf95_put_var_1D_EightByteReal(ncid, varid, values, start, & |
---|
| 131 | count_nc, stride, map, ncerr) |
---|
[1157] | 132 | |
---|
[1635] | 133 | use typesizes, only: eightByteReal |
---|
[1157] | 134 | use netcdf, only: nf90_put_var |
---|
| 135 | use handle_err_m, only: handle_err |
---|
| 136 | |
---|
[1635] | 137 | integer, intent(in) :: ncid, varid |
---|
| 138 | real (kind = EightByteReal), intent(in) :: values(:) |
---|
| 139 | integer, dimension(:), optional, intent(in):: start, count_nc, stride, map |
---|
[1157] | 140 | integer, intent(out), optional:: ncerr |
---|
| 141 | |
---|
| 142 | ! Variable local to the procedure: |
---|
| 143 | integer ncerr_not_opt |
---|
| 144 | |
---|
| 145 | !------------------- |
---|
| 146 | |
---|
[1635] | 147 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start, count_nc, & |
---|
| 148 | stride, map) |
---|
[1157] | 149 | if (present(ncerr)) then |
---|
| 150 | ncerr = ncerr_not_opt |
---|
| 151 | else |
---|
[1635] | 152 | call handle_err("nf95_put_var_1D_eightByteReal", ncerr_not_opt, ncid, & |
---|
| 153 | varid) |
---|
| 154 | end if |
---|
| 155 | |
---|
| 156 | end subroutine nf95_put_var_1D_EightByteReal |
---|
| 157 | |
---|
| 158 | !*********************** |
---|
| 159 | |
---|
| 160 | subroutine nf95_put_var_2D_FourByteReal(ncid, varid, values, start, & |
---|
| 161 | count_nc, stride, map, ncerr) |
---|
| 162 | |
---|
| 163 | use netcdf, only: nf90_put_var |
---|
| 164 | use handle_err_m, only: handle_err |
---|
| 165 | |
---|
| 166 | integer, intent(in) :: ncid, varid |
---|
| 167 | real, intent(in) :: values(:, :) |
---|
| 168 | integer, dimension(:), optional, intent(in) :: start, count_nc, stride, map |
---|
| 169 | integer, intent(out), optional:: ncerr |
---|
| 170 | |
---|
| 171 | ! Variable local to the procedure: |
---|
| 172 | integer ncerr_not_opt |
---|
| 173 | |
---|
| 174 | !------------------- |
---|
| 175 | |
---|
| 176 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start, count_nc, & |
---|
| 177 | stride, map) |
---|
| 178 | if (present(ncerr)) then |
---|
| 179 | ncerr = ncerr_not_opt |
---|
| 180 | else |
---|
[1157] | 181 | call handle_err("nf95_put_var_2D_FourByteReal", ncerr_not_opt, ncid, & |
---|
| 182 | varid) |
---|
| 183 | end if |
---|
| 184 | |
---|
| 185 | end subroutine nf95_put_var_2D_FourByteReal |
---|
| 186 | |
---|
| 187 | !*********************** |
---|
| 188 | |
---|
[1635] | 189 | subroutine nf95_put_var_2D_EightByteReal(ncid, varid, values, start, & |
---|
| 190 | count_nc, stride, map, ncerr) |
---|
[1157] | 191 | |
---|
[1635] | 192 | use typesizes, only: EightByteReal |
---|
[1157] | 193 | use netcdf, only: nf90_put_var |
---|
| 194 | use handle_err_m, only: handle_err |
---|
| 195 | |
---|
[1635] | 196 | integer, intent(in) :: ncid, varid |
---|
| 197 | real (kind = EightByteReal), intent(in) :: values(:, :) |
---|
| 198 | integer, dimension(:), optional, intent(in) :: start, count_nc, stride, map |
---|
[1157] | 199 | integer, intent(out), optional:: ncerr |
---|
| 200 | |
---|
| 201 | ! Variable local to the procedure: |
---|
| 202 | integer ncerr_not_opt |
---|
| 203 | |
---|
| 204 | !------------------- |
---|
| 205 | |
---|
[1635] | 206 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start, count_nc, & |
---|
| 207 | stride, map) |
---|
[1157] | 208 | if (present(ncerr)) then |
---|
| 209 | ncerr = ncerr_not_opt |
---|
| 210 | else |
---|
[1635] | 211 | call handle_err("nf95_put_var_2D_EightByteReal", ncerr_not_opt, ncid, & |
---|
| 212 | varid) |
---|
| 213 | end if |
---|
| 214 | |
---|
| 215 | end subroutine nf95_put_var_2D_EightByteReal |
---|
| 216 | |
---|
| 217 | !*********************** |
---|
| 218 | |
---|
| 219 | subroutine nf95_put_var_3D_FourByteReal(ncid, varid, values, start, & |
---|
| 220 | count_nc, stride, map, ncerr) |
---|
| 221 | |
---|
| 222 | use netcdf, only: nf90_put_var |
---|
| 223 | use handle_err_m, only: handle_err |
---|
| 224 | |
---|
| 225 | integer, intent(in) :: ncid, varid |
---|
| 226 | real, intent(in) :: values(:, :, :) |
---|
| 227 | integer, dimension(:), optional, intent(in) :: start, count_nc, stride, map |
---|
| 228 | integer, intent(out), optional:: ncerr |
---|
| 229 | |
---|
| 230 | ! Variable local to the procedure: |
---|
| 231 | integer ncerr_not_opt |
---|
| 232 | |
---|
| 233 | !------------------- |
---|
| 234 | |
---|
| 235 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start, count_nc, & |
---|
| 236 | stride, map) |
---|
| 237 | if (present(ncerr)) then |
---|
| 238 | ncerr = ncerr_not_opt |
---|
| 239 | else |
---|
[1157] | 240 | call handle_err("nf95_put_var_3D_FourByteReal", ncerr_not_opt, ncid, & |
---|
| 241 | varid) |
---|
| 242 | end if |
---|
| 243 | |
---|
| 244 | end subroutine nf95_put_var_3D_FourByteReal |
---|
| 245 | |
---|
| 246 | !*********************** |
---|
| 247 | |
---|
[1635] | 248 | subroutine nf95_put_var_3D_EightByteReal(ncid, varid, values, start, & |
---|
| 249 | count_nc, stride, map, ncerr) |
---|
[1157] | 250 | |
---|
[1635] | 251 | use typesizes, only: eightByteReal |
---|
[1157] | 252 | use netcdf, only: nf90_put_var |
---|
| 253 | use handle_err_m, only: handle_err |
---|
| 254 | |
---|
[1635] | 255 | integer, intent(in) :: ncid, varid |
---|
| 256 | real (kind = EightByteReal), intent(in) :: values(:, :, :) |
---|
| 257 | integer, dimension(:), optional, intent(in) :: start, count_nc, stride, map |
---|
[1157] | 258 | integer, intent(out), optional:: ncerr |
---|
| 259 | |
---|
| 260 | ! Variable local to the procedure: |
---|
| 261 | integer ncerr_not_opt |
---|
| 262 | |
---|
| 263 | !------------------- |
---|
| 264 | |
---|
[1635] | 265 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start, count_nc, & |
---|
| 266 | stride, map) |
---|
[1157] | 267 | if (present(ncerr)) then |
---|
| 268 | ncerr = ncerr_not_opt |
---|
| 269 | else |
---|
[1635] | 270 | call handle_err("nf95_put_var_3D_eightByteReal", ncerr_not_opt, ncid, & |
---|
| 271 | varid) |
---|
| 272 | end if |
---|
| 273 | |
---|
| 274 | end subroutine nf95_put_var_3D_EightByteReal |
---|
| 275 | |
---|
| 276 | !*********************** |
---|
| 277 | |
---|
| 278 | subroutine nf95_put_var_4D_FourByteReal(ncid, varid, values, start, & |
---|
| 279 | count_nc, stride, map, ncerr) |
---|
| 280 | |
---|
| 281 | use netcdf, only: nf90_put_var |
---|
| 282 | use handle_err_m, only: handle_err |
---|
| 283 | |
---|
| 284 | integer, intent(in) :: ncid, varid |
---|
| 285 | real, intent(in) :: values(:, :, :, :) |
---|
| 286 | integer, dimension(:), optional, intent(in) :: start, count_nc, stride, map |
---|
| 287 | integer, intent(out), optional:: ncerr |
---|
| 288 | |
---|
| 289 | ! Variable local to the procedure: |
---|
| 290 | integer ncerr_not_opt |
---|
| 291 | |
---|
| 292 | !------------------- |
---|
| 293 | |
---|
| 294 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start, count_nc, & |
---|
| 295 | stride, map) |
---|
| 296 | if (present(ncerr)) then |
---|
| 297 | ncerr = ncerr_not_opt |
---|
| 298 | else |
---|
[1157] | 299 | call handle_err("nf95_put_var_4D_FourByteReal", ncerr_not_opt, ncid, & |
---|
| 300 | varid) |
---|
| 301 | end if |
---|
| 302 | |
---|
| 303 | end subroutine nf95_put_var_4D_FourByteReal |
---|
| 304 | |
---|
| 305 | !*********************** |
---|
| 306 | |
---|
[1635] | 307 | subroutine nf95_put_var_4D_EightByteReal(ncid, varid, values, start, & |
---|
| 308 | count_nc, stride, map, ncerr) |
---|
[1157] | 309 | |
---|
[1635] | 310 | use typesizes, only: EightByteReal |
---|
| 311 | use netcdf, only: nf90_put_var |
---|
| 312 | use handle_err_m, only: handle_err |
---|
| 313 | |
---|
| 314 | integer, intent(in):: ncid, varid |
---|
| 315 | real(kind = EightByteReal), intent(in):: values(:, :, :, :) |
---|
| 316 | integer, dimension(:), optional, intent(in):: start, count_nc, stride, map |
---|
| 317 | integer, intent(out), optional:: ncerr |
---|
| 318 | |
---|
| 319 | ! Variable local to the procedure: |
---|
| 320 | integer ncerr_not_opt |
---|
| 321 | |
---|
| 322 | !------------------- |
---|
| 323 | |
---|
| 324 | ncerr_not_opt = nf90_put_var(ncid, varid, values, start, count_nc, & |
---|
| 325 | stride, map) |
---|
| 326 | if (present(ncerr)) then |
---|
| 327 | ncerr = ncerr_not_opt |
---|
| 328 | else |
---|
| 329 | call handle_err("nf95_put_var_4D_EightByteReal", ncerr_not_opt, ncid, & |
---|
| 330 | varid) |
---|
| 331 | end if |
---|
| 332 | |
---|
| 333 | end subroutine nf95_put_var_4D_EightByteReal |
---|
| 334 | |
---|
[1157] | 335 | end module nf95_put_var_m |
---|