-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHMC_Module_Info_Gridded.f90
More file actions
693 lines (577 loc) · 36 KB
/
HMC_Module_Info_Gridded.f90
File metadata and controls
693 lines (577 loc) · 36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
!------------------------------------------------------------------------------------
! File: HMC_Module_Info_Gridded.f90
! Author(s): Fabio Delogu, Francesco Silvestro, Simone Gabellani
! Created on May, 20 2014, 9:57 AM
!
! Module to get info gridded
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Module Header
module HMC_Module_Info_Gridded
!------------------------------------------------------------------------------------
! External module(s) and implicit none
#ifdef LIB_NC
use netcdf
#endif
use HMC_Module_Namelist, only: oHMC_Namelist
use HMC_Module_Vars_Loader, only: oHMC_Vars
use HMC_Module_Tools_Debug
use HMC_Module_Tools_Generic, only: HMC_Tools_Generic_ReplaceText, &
HMC_Tools_Generic_CreateIndexGrid, &
HMC_Tools_Generic_UnzipFile, &
HMC_Tools_Generic_RemoveFile, &
getProcessID
#ifdef LIB_NC
use HMC_Module_Tools_IO, only: check
#endif
implicit none
!------------------------------------------------------------------------------------
contains
!------------------------------------------------------------------------------------
! Subroutine to get file gridded dimension(s)
subroutine HMC_Info_Gridded_GetDims_Static(iID, iRows, iCols)
!------------------------------------------------------------------------------------
! Variable(s) declaration
integer(kind = 4) :: iID
integer(kind = 4) :: iRows, iCols
integer(kind = 4) :: iTypeData
character(len = 256) :: sDomainName, sPathData
integer(kind = 4) :: iNCid, iDimId
character(len = 256) :: sText
character(len = 700) :: sFileName
logical :: bFileExist
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Initialize variable(s)
iRows = 0; iCols = 0;
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get information
sDomainName = oHMC_Namelist(iID)%sDomainName
sPathData = oHMC_Namelist(iID)%sPathData_Static_Gridded
iTypeData = oHMC_Namelist(iID)%iFlagTypeData_Static
! Get variable(s) dimension(s)
call mprintf(.true., iINFO_Main, ' Define land data dims ... ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get info from netCDF file
if (iTypeData == 2) then
#ifdef LIB_NC
!------------------------------------------------------------------------------------
! Filename
sFileName = trim(sPathData)//'hmc.staticdata.nc'
! Check file availabilty
inquire (file = trim(sFileName), exist = bFileExist)
if ( .not. bFileExist ) then
call mprintf(.true., iERROR, ' No land data netCDF found '//trim(sFileName) )
else
! Info
call mprintf(.true., iINFO_Extra, ' Land data in netCDF format ')
! Open netCDF file
call check( nf90_open(trim(sFileName), NF90_NOWRITE, iNCid) )
! Get dimension(s)
call check( nf90_inq_dimid(iNCid, "west_east", iDimId) )
call check( nf90_inquire_dimension(iNCid, iDimId, len = iCols) )
call check( nf90_inq_dimid(iNCid, "south_north", iDimId) )
call check( nf90_inquire_dimension(iNCid, iDimId, len = iRows) )
! Close netCDF file
call check( nf90_close(iNCid) )
! Info
call mprintf(.true., iINFO_Main, ' Define land data dims ... OK')
endif
!------------------------------------------------------------------------------------
#else
!------------------------------------------------------------------------------------
! Redefinition of info data flag (if netCDF library is not linked)
iTypeData = 1
call mprintf(.true., iWARN, ' '// &
'info gridded data type selected was netCDF but library is not linked! '// &
'Will be used data in ASCII format!')
!------------------------------------------------------------------------------------
#endif
endif
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get info from ASCII file
if (iTypeData == 1) then
!------------------------------------------------------------------------------------
! Filename dem
sFileName = trim(sPathData)//trim(sDomainName)//'.dem.txt'
! Check file availability
inquire (file = trim(sFileName), exist = bFileExist)
if ( .not. bFileExist ) then
call mprintf(.true., iERROR, ' No land data ASCII found '//trim(sFileName) )
else
! Info
call mprintf(.true., iINFO_Extra, ' Land data in ASCII format ')
! Open, read and close ASCII grid file
open(unit=1,file=sFileName, status='old')
read(1,*) sText, iCols ! 643
read(1,*) sText, iRows ! 534
close(1)
! Info
call mprintf(.true., iINFO_Main, ' Define land data dims ... OK')
endif
!------------------------------------------------------------------------------------
endif
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Dims from local to global workspace
oHMC_Namelist(iID)%iRowsL = iRows
oHMC_Namelist(iID)%iColsL = iCols
!------------------------------------------------------------------------------------
end subroutine HMC_Info_Gridded_GetDims_Static
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Subroutine to get file forcing dimension(s)
subroutine HMC_Info_Gridded_GetDims_Forcing(iID, iRows, iCols)
!------------------------------------------------------------------------------------
! Variable(s) declaration
integer(kind = 4) :: iID
integer(kind = 4) :: iRows, iCols
integer(kind = 4) :: iTypeData
character(len = 19) :: sTime
character(len = 256) :: sPathData, sPID
character(len = 700) :: sFileName, sFileNameZip, sFileName_Temp
character(len = 700) :: sCommandUnzip
character(len = 256) :: sDomainName
integer(kind = 4) :: iFileID, iDimId, ppos
integer(kind = 4) :: iErr
logical :: bFileExist
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Initialize variable(s)
sFileName = ""; sFileNameZip = ""; sFileName_Temp ="";
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get information
sDomainName = oHMC_Namelist(iID)%sDomainName
sPathData = oHMC_Namelist(iID)%sPathData_Forcing_Gridded
iTypeData = oHMC_Namelist(iID)%iFlagTypeData_Forcing_Gridded
! Get variable(s) dimension(s)
call mprintf(.true., iINFO_Main, ' Define forcing data dims ... ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get info from netCDF file
if (iTypeData == 2) then
#ifdef LIB_NC
!------------------------------------------------------------------------------------
! Info
call mprintf(.true., iINFO_Extra, ' Forcing data in netCDF format ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get information
sTime = oHMC_Namelist(iID)%sTimeStart
sCommandUnzip = oHMC_Namelist(iID)%sCommandUnzipFile
! Filename netCDF
sFileName = trim(sPathData)//"hmc.forcing-grid."// &
sTime(1:4)//sTime(6:7)//sTime(9:10)// &
sTime(12:13)//sTime(15:16)// &
".nc"
! Replace general path with specific time feature(s)
call HMC_Tools_Generic_ReplaceText(sFileName, '$yyyy', sTime(1:4))
call HMC_Tools_Generic_ReplaceText(sFileName, '$mm', sTime(6:7))
call HMC_Tools_Generic_ReplaceText(sFileName, '$dd', sTime(9:10))
! Checking file input availability
sFileNameZip = sFileName(1:len_trim(sFileName))//'.gz'
inquire (file = trim(sFileNameZip), exist = bFileExist)
if ( .not. bFileExist ) then
call mprintf(.true., iERROR, ' No compressed forcing file netCDF found '//trim(sFileNameZip) )
endif
! Get unique process ID
sPID = adjustl(getProcessID())
! Create Filename with unique PID number to avoid simultaneously access to the same Forcing file
! Remove file extension from filename
ppos = scan(trim(sFileName),".", BACK= .true.)
sFileName_Temp = trim(sFileName(1:ppos)//'_'//trim(sPID)//".nc")
! Unzip file
call HMC_Tools_Generic_UnzipFile(sCommandUnzip, sFileNameZip, sFileName_Temp, .true.)
! Check file availability
inquire (file = trim(sFileName_Temp), exist = bFileExist)
if ( .not. bFileExist ) then
call mprintf(.true., iERROR, ' No forcing file netCDF found '//trim(sFileName_Temp) )
else
! Open netCDF file
call check( nf90_open(trim(sFileName_Temp), NF90_NOWRITE, iFileID) )
! Get global attribute(s)
iErr = nf90_inquire_attribute(iFileID, NF90_GLOBAL, "ncols")
if (iErr /= 0) then
call mprintf(.true., iERROR, 'The forcing attributes "ncols" '// &
'is not available, Check your forcing file ')
else
call check( nf90_get_att(iFileID, NF90_GLOBAL, "ncols", iCols) )
endif
iErr = nf90_inquire_attribute(iFileID, NF90_GLOBAL, "nrows")
if (iErr /= 0) then
call mprintf(.true., iERROR, 'The forcing attributes "nrows" '// &
'is not available, Check your forcing file ')
else
call check( nf90_get_att(iFileID, NF90_GLOBAL, "nrows", iRows) )
endif
! Close netCDF file
call check( nf90_close(iFileID) )
! Info
call mprintf(.true., iINFO_Main, ' Define forcing data dims ... OK')
! Remove uncompressed file (to save space on disk)
call HMC_Tools_Generic_RemoveFile(oHMC_Namelist(iID)%sCommandRemoveFile, &
sFileName_Temp, .false.)
!--------------------------------------------------------------------------------
endif
!------------------------------------------------------------------------------------
#else
!------------------------------------------------------------------------------------
! Redefinition of info data flag (if netCDF library is not linked)
iTypeData = 1
call mprintf(.true., iWARN, ' '// &
'info gridded data type selected was netCDF but library is not linked! '// &
'Will be used data from namelist!')
!------------------------------------------------------------------------------------
#endif
endif
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get info from namelist
if (iTypeData == 1) then
!------------------------------------------------------------------------------------
! Info
call mprintf(.true., iINFO_Extra, ' Forcing data dims retrieved from namelist ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get dimension(s) from namelist
iRows = oHMC_Namelist(iID)%a1iDimsForcing(1)
iCols = oHMC_Namelist(iID)%a1iDimsForcing(2)
! Info
call mprintf(.true., iINFO_Main, ' Define forcing data dims ... OK')
!------------------------------------------------------------------------------------
endif
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Dims from local to global workspace
oHMC_Namelist(iID)%iRowsF = iRows
oHMC_Namelist(iID)%iColsF = iCols
!------------------------------------------------------------------------------------
end subroutine HMC_Info_Gridded_GetDims_Forcing
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Subroutine to get geographical information
subroutine HMC_Info_Gridded_GetGeo_Static(iID)
!------------------------------------------------------------------------------------
! Variable(s) declaration
integer(kind = 4) :: iID
integer(kind = 4) :: iTypeData
character(len = 256) :: sDomainName, sPathData
integer(kind = 4) :: iNCid, iDimId
character(len = 256) :: sText
character(len = 700) :: sFileName
logical :: bFileExist
integer(kind = 4) :: iVar
real(kind = 4) :: dVar
real(kind = 4) :: dVarXLLCorner, dVarYLLCorner, dVarCellSize, dVarNoData
integer(kind = 4) :: iErr
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Initialize variable(s)
iVar = 0; dVar = 0; iErr = 0;
dVarXLLCorner = -9999.0; dVarYLLCorner = -9999.0; dVarCellSize = -9999.0;
dVarNoData = -9999.0;
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get information
sDomainName = oHMC_Namelist(iID)%sDomainName
sPathData = oHMC_Namelist(iID)%sPathData_Static_Gridded
iTypeData = oHMC_Namelist(iID)%iFlagTypeData_Static
! Get variable(s) dimension(s)
call mprintf(.true., iINFO_Main, ' Define land geographical data ... ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get info from netCDF data
if (iTypeData == 2) then
#ifdef LIB_NC
!------------------------------------------------------------------------------------
! Info
call mprintf(.true., iINFO_Extra, ' Land data in netCDF format ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Filename
sFileName = trim(sPathData)//'hmc.staticdata.nc'
! Check file availability
inquire (file = trim(sFileName), exist = bFileExist)
if ( .not. bFileExist ) then
call mprintf(.true., iERROR, ' No land file netCDF found '//trim(sFileName) )
else
! Open netCDF file
call check( nf90_open(trim(sFileName), NF90_NOWRITE, iNCid) )
! Get global attribute(s)
iErr = nf90_inquire_attribute(iNCid, NF90_GLOBAL, "xllcorner")
if (iErr /= 0) then
call mprintf(.true., iERROR, 'The static attributes "xllcorner" '// &
'is not available, Check your forcing file ')
else
call check( nf90_get_att(iNCid, NF90_GLOBAL, "xllcorner", dVarXLLCorner) )
endif
iErr = nf90_inquire_attribute(iNCid, NF90_GLOBAL, "yllcorner")
if (iErr /= 0) then
call mprintf(.true., iERROR, 'The static attributes "yllcorner" '// &
'is not available, Check your forcing file ')
else
call check( nf90_get_att(iNCid, NF90_GLOBAL, "yllcorner", dVarYLLCorner) )
endif
iErr = nf90_inquire_attribute(iNCid, NF90_GLOBAL, "cellsize")
if (iErr /= 0) then
call mprintf(.true., iERROR, 'The static attributes "cellsize" '// &
'is not available, Check your forcing file ')
else
call check( nf90_get_att(iNCid, NF90_GLOBAL, "cellsize", dVarCellSize) )
endif
iErr = nf90_inquire_attribute(iNCid, NF90_GLOBAL, "nodata_value")
if (iErr /= 0) then
call mprintf(.true., iERROR, 'The static attributes "nodata_value" '// &
'is not available, Check your forcing file ')
else
call check( nf90_get_att(iNCid, NF90_GLOBAL, "nodata_value", dVarNoData) )
endif
! Close netCDF file
call check( nf90_close(iNCid) )
! Info
call mprintf(.true., iINFO_Main, ' Define land geographical data ... OK')
endif
!------------------------------------------------------------------------------------
#else
!------------------------------------------------------------------------------------
! Redefinition of info data flag (if netCDF library is not linked)
iTypeData = 1
call mprintf(.true., iWARN, ' '// &
'info gridded data type selected was netCDF but library is not linked! '// &
'Will be used data in ASCII format!')
!------------------------------------------------------------------------------------
#endif
endif
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get info from ASCII data
if (iTypeData == 1) then
!------------------------------------------------------------------------------------
! Info
call mprintf(.true., iINFO_Extra, ' Land data in ArcGrid format ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Filename
sFileName = trim(sPathData)//trim(sDomainName)//'.dem.txt'
! Check file availability
inquire (file = trim(sFileName), exist = bFileExist)
if ( .not. bFileExist ) then
call mprintf(.true., iERROR, ' No land file ArcGrid found '//trim(sFileName) )
else
! Open, read and close ASCII grid file
open(unit=1,file=sFileName, status='old')
read(1,*) sText, iVar
read(1,*) sText, iVar
read(1,*) sText, dVarXLLCorner
read(1,*) sText, dVarYLLCorner
read(1,*) sText, dVarCellSize
read(1,*) sText, dVarNoData
close(1)
! Info
call mprintf(.true., iINFO_Main, ' Define land geographical data ... OK')
endif
!------------------------------------------------------------------------------------
endif
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Pass local variable(s) to global workspace
oHMC_Namelist(iID)%dXLLCornerL = dVarXLLCorner
oHMC_Namelist(iID)%dYLLCornerL = dVarYLLCorner
oHMC_Namelist(iID)%dXCellSizeL = dVarCellSize
oHMC_Namelist(iID)%dYCellSizeL = dVarCellSize
oHMC_Namelist(iID)%dNoDataL = dVarNoData
!------------------------------------------------------------------------------------
end subroutine HMC_Info_Gridded_GetGeo_Static
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Subroutine to create meteo grid (if static and forcing data have different grid)
subroutine HMC_Info_Gridded_GetGeo_Forcing(iID)
!------------------------------------------------------------------------------------
! Variable(s) declaration
integer(kind = 4) :: iID
integer(kind = 4) :: iFlagTypeData
character(len = 19) :: sTime
character(len = 256) :: sPathData, sPID
character(len = 700) :: sFileName, sFileNameZip, sFileName_Temp
character(len = 700) :: sCommandUnzip
integer(kind = 4) :: iVarCols, iVarRows
integer(kind = 4) :: iDtIntegr
real(kind = 4) :: dVarXLLCorner, dVarYLLCorner
real(kind = 4) :: dVarXCellSize, dVarYCellSize
real(kind = 4) :: dVarNoData
integer(kind = 4) :: iErr, iFileID, ppos
logical :: bFileExist
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Initialize variable(s)
iErr = 0;
iVarCols = -9999; iVarRows = -9999;
dVarXLLCorner = -9999.0; dVarYLLCorner = -9999.0;
dVarXCellSize = -9999.0; dVarYCellSize = -9999.0;
dVarNoData = -9999.0;
sFileName = ""; sFileNameZip = ""; sFileName_Temp = "";
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Check if grid control is defined
if (.not. oHMC_Namelist(iID)%bGridCheck) then
!------------------------------------------------------------------------------------
! Get information
sPathData = oHMC_Namelist(iID)%sPathData_Forcing_Gridded
iFlagTypeData = oHMC_Namelist(iID)%iFlagTypeData_Forcing_Gridded
! Data type
call mprintf(.true., iINFO_Main, ' Define forcing geographical data ... ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get info from netCDF data
if (iFlagTypeData == 2) then
#ifdef LIB_NC
!------------------------------------------------------------------------------------
! Info
call mprintf(.true., iINFO_Extra, ' Forcing data in netCDF format ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get information
sTime = oHMC_Namelist(iID)%sTimeStart
sCommandUnzip = oHMC_Namelist(iID)%sCommandUnzipFile
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Filename netCDF
sFileName = trim(sPathData)//"hmc.forcing-grid."// &
sTime(1:4)//sTime(6:7)//sTime(9:10)// &
sTime(12:13)//sTime(15:16)// &
".nc"
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------------
! Replace general path with specific time feature(s)
call HMC_Tools_Generic_ReplaceText(sFileName, '$yyyy', sTime(1:4))
call HMC_Tools_Generic_ReplaceText(sFileName, '$mm', sTime(6:7))
call HMC_Tools_Generic_ReplaceText(sFileName, '$dd', sTime(9:10))
!------------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------------
! Checking file input availability
sFileNameZip = trim(sFileName)//'.gz'
inquire (file = trim(sFileNameZip), exist = bFileExist)
if ( .not. bFileExist ) then
call mprintf(.true., iERROR, ' No compressed forcing file netCDF found '//trim(sFileNameZip) )
endif
!------------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------------
! Get unique porcess ID
sPID = adjustl(getProcessID())
! Create Filename with unique PID number to avoid simultaneously access to the same Forcing file
! Remove file extension from filename
ppos = scan(trim(sFileName),".", BACK= .true.)
sFileName_Temp = sFileName(1:ppos-1)//'_'//trim(sPID)//".nc"
! Unzip file
call HMC_Tools_Generic_UnzipFile(sCommandUnzip, sFileNameZip, sFileName_Temp, .true.)
!------------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------------
! Check uncompressed file availability
inquire (file = trim(sFileName_Temp), exist = bFileExist)
if ( .not. bFileExist ) then
call mprintf(.true., iERROR, ' No forcing file netCDF found '//trim(sFileName_Temp) )
else
! Open nc file
call check( nf90_open(trim(sFileName_Temp), NF90_NOWRITE, iFileID) )
! Get global attribute(s)
iErr = nf90_inquire_attribute(iFileID, NF90_GLOBAL, "xllcorner")
if (iErr /= 0) then
call mprintf(.true., iERROR, ' The forcing attributes "xllcorner" '// &
'is not available, Check your forcing file ' )
else
call check( nf90_get_att(iFileID, NF90_GLOBAL, "xllcorner", dVarXLLCorner) )
endif
iErr = nf90_inquire_attribute(iFileID, NF90_GLOBAL, "yllcorner")
if (iErr /= 0) then
call mprintf(.true., iERROR, 'The forcing attributes "yllcorner" '// &
'is not available, Check your forcing file ')
else
call check( nf90_get_att(iFileID, NF90_GLOBAL, "yllcorner", dVarYLLCorner) )
endif
iErr = nf90_inquire_attribute(iFileID, NF90_GLOBAL, "cellsize")
if (iErr /= 0) then
call mprintf(.true., iERROR, 'The forcing attributes "cellsize" '// &
'is not available, Check your forcing file ')
else
call check( nf90_get_att(iFileID, NF90_GLOBAL, "cellsize", dVarXCellSize) )
endif
iErr = nf90_inquire_attribute(iFileID, NF90_GLOBAL, "nodata_value")
if (iErr /= 0) then
call mprintf(.true., iERROR, 'The forcing attributes "nodata_value" '// &
'is not available, Check your forcing file ')
else
call check( nf90_get_att(iFileID, NF90_GLOBAL, "nodata_value", dVarNoData) )
endif
dVarYCellSize = dVarXCellSize
! Close nc file
call check( nf90_close(iFileID) )
! Remove uncompressed file (to save space on disk)
call HMC_Tools_Generic_RemoveFile(oHMC_Namelist(iID)%sCommandRemoveFile, &
sFileName_Temp, .false.)
! Info
call mprintf(.true., iINFO_Main, ' Define forcing geographical data ... OK ')
endif
!------------------------------------------------------------------------------------------
#else
!------------------------------------------------------------------------------------
! Redefinition of info data flag (if netCDF library is not linked)
iFlagTypeData = 1
call mprintf(.true., iWARN, ' '// &
'info gridded data type selected was netCDF but library is not linked! '// &
'Will be used data from namelist!')
!------------------------------------------------------------------------------------
#endif
endif
!------------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------------
! Get data from namelist
if (iFlagTypeData == 1) then
!------------------------------------------------------------------------------------
! Info
call mprintf(.true., iINFO_Extra, ' Forcing data retrieved from namelist ')
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Get information
dVarXLLCorner = oHMC_Namelist(iID)%a1dGeoForcing(2)
dVarYLLCorner = oHMC_Namelist(iID)%a1dGeoForcing(1)
dVarXCellSize = oHMC_Namelist(iID)%a1dResForcing(2)
dVarYCellSize = oHMC_Namelist(iID)%a1dResForcing(1)
dVarNoData = -9999.0
! Info
call mprintf(.true., iINFO_Main, ' Define forcing geographical data ... OK ')
!------------------------------------------------------------------------------------
endif
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Pass local variable(s) to global workspace
oHMC_Namelist(iID)%dXLLCornerF = dVarXLLCorner
oHMC_Namelist(iID)%dYLLCornerF = dVarYLLCorner
oHMC_Namelist(iID)%dXCellSizeF = dVarXCellSize
oHMC_Namelist(iID)%dYCellSizeF = dVarYCellSize
oHMC_Namelist(iID)%dNoDataF = dVarNoData
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Compute indexes grid(s) ---> if grid are different XIndex and YIndex are not equal to -9999
call HMC_Tools_Generic_CreateIndexGrid(oHMC_Namelist(iID)%iRowsL, oHMC_Namelist(iID)%iColsL, &
oHMC_Namelist(iID)%iRowsF, oHMC_Namelist(iID)%iColsF, &
oHMC_Namelist(iID)%dYLLCornerL, oHMC_Namelist(iID)%dXLLCornerL, &
oHMC_Namelist(iID)%dYLLCornerF, oHMC_Namelist(iID)%dXLLCornerF, &
oHMC_Namelist(iID)%dYCellSizeL, oHMC_Namelist(iID)%dXCellSizeL, &
oHMC_Namelist(iID)%dYCellSizeF, oHMC_Namelist(iID)%dXCellSizeF, &
oHMC_Namelist(iID)%iFlagGrid, &
oHMC_Vars(iID)%a2iXIndex, oHMC_Vars(iID)%a2iYIndex)
!------------------------------------------------------------------------------------
!------------------------------------------------------------------------------------
! Flag grid control
oHMC_Namelist(iID)%bGridCheck = .true.
!------------------------------------------------------------------------------------
endif
!------------------------------------------------------------------------------------
end subroutine HMC_Info_Gridded_GetGeo_Forcing
!--------------------------------------------------------------------------------
end module HMC_Module_Info_Gridded
!--------------------------------------------------------------------------------