Project

General

Profile

Description of the MesoNH file format » History » Version 1

Rafael Bailon-Ruiz, 2020-12-07 15:32

1 1 Rafael Bailon-Ruiz
h1. Description of the MesoNH file format
2
3
MesoNH simulation output is saved into NetCDF (.nc) files with the specific dimensions and variables below. For information, the spatial resolution is *25m per cell* for the <code>W_E_direction</code> , <code>W_E_direction</code>, and <code>vertical_levels</code>. Temporal resolution is *5 seconds*.
4
5
The dataset description below has been obtained with the <code>ncinfo</code> command included in <code>netcdf4-python</code>
6
<pre>
7
title: Meso-NH simulation
8
    grid_resolution_in_meters:    25.000000      x    25.000000     
9
    description: Data are from the file REFHR.1.ARMCu.001.dia       
10
    comments:  Meso-NH  experience starts at 1997    6   21   41400.0000   and 
11
               segment starts at 1997    6   21   63000.0000 
12
dimensions(sizes): 
13
    time(144), 
14
    W_E_direction(256),
15
    S_N_direction(256), 
16
    vertical_levels(160)
17
variables(dimensions): 
18
    int32 time(time), 
19
    float32 W_E_direction(W_E_direction), 
20
    float32 S_N_direction(S_N_direction), 
21
    float32 LON0(), 
22
    float32 LAT0(), 
23
    float32 LONOR(), 
24
    float32 LATOR(),
25
    float32 BETA(), 
26
    float32 RPK(), 
27
    float32 THT(time, vertical_levels, S_N_direction, W_E_direction), 
28
    float32 VLEV(vertical_levels, S_N_direction, W_E_direction), 
29
    float32 LAT(S_N_direction, W_E_direction), 
30
    float32 LON(S_N_direction, W_E_direction), 
31
    float32 TKET(time, vertical_levels, S_N_direction, W_E_direction), 
32
    float32 UT(time, vertical_levels, S_N_direction, W_E_direction), 
33
    float32 VT(time, vertical_levels, S_N_direction, W_E_direction), 
34
    float32 WT(time, vertical_levels, S_N_direction, W_E_direction), 
35
    float32 PABST(time, vertical_levels, S_N_direction, W_E_direction), 
36
    float32 RVT(time, vertical_levels, S_N_direction, W_E_direction), 
37
    float32 RCT(time, vertical_levels, S_N_direction, W_E_direction), 
38
    float32 RRT(time, vertical_levels, S_N_direction, W_E_direction), 
39
    float32 SVT001(time, vertical_levels, S_N_direction, W_E_direction),
40
    float32 SVT002(time, vertical_levels, S_N_direction, W_E_direction),
41
    float32 SVT003(time, vertical_levels, S_N_direction, W_E_d
42
!ncview.png!
43
irection)
44
</pre>
45
46
47
h2. Viewing the contents of a NetCDF (.nc) file
48
49
the nco package provides the ncview program to display netCDF files.
50
51
!ncview.png!