Project

General

Profile

Description of the MesoNH file format » History » Version 2

Rafael Bailon-Ruiz, 2020-12-08 14:39

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