The RPN standard file format is a file format developed by "Le Centre de recherche en prévision numérique" (RPN) to store weather and climate related data. Usually, there is one 2-D (latitude and longitude) record for each level, variable and timestep.
For the end-user, the appearance of the RPN is that of a flat-file database structure. A single file contains numerous records which hold fields on 1, 2 or 3D data grids and self-describing information about the fields (header).
A thorough set of FST-related routines are contained in the RPN Library (armnlib). These routines provide easy access to the file contents. They can be called from FORTRAN or C routines.
A complete description of the FST file format and the utilities which can be used to manipulate and view their contents is available online at www.cmc.ec.gc.ca/rpn/utilities.
Sometimes the files are archived in an cmc-archive file (*.ca). If this is the case they need to be unarchived first.
The maximum size of RPN file is a little more than 8 GB!!! If you are trying to write a file larger than the maximum size the file will not get closed. Meaning no application will be able to open it and it can be considered as "corrupted". The usual error message one get when trying to open such a file is "file (unit=...) currently used by another application in write mode".
There is also a set of 'vl' (variable list) commands (one for each model version) which will give you a list of all the variables in an RPN file. The first description is always correct, but rarely contains the unit. For physics fields take the second description with a grain of salt. If it matches the first one, it's unit is correct as well. If it doesn't match, ignore it. However, to all units of accumulators a 'per second' needs to get added, for example:
precipitation is not in [m] but in [m/s]
radiation fields are not in [J/m2] but in [J/s/m2] so in [W/m2]
Usage:
vl5 filename |
'voir' is the most simple way to list the content of an RPN file (also xvoir)
It prints the headers for all of the records of the given RPN standard file:
voir [-style] -iment rpn-file |
Without the -style option the date displayed is for raw GEM model output the start date of the simulation, for averages/accumulators/minimum/maximum fields it is the start of the avg/accum/min/max period and levels are coded.
With the -style option the date displayed is for raw GEM model output the validity (actual) date of the fields, for averages/accumulators/minimum/maximum fields it is the end of the avg/accum/min/max period and levels are decoded.
-style key | levels | date | |
---|---|---|---|
instantaneous fields | avg/accum/min/max | ||
without -style | coded | start date of simulation | start date of avg/accum/min/max period |
with -style | decoded | actual date | end date of avg/accum/min/max period |
You can find more information about the output of 'voir' in this PDF: voir_output_explanation.pdf
You can also use the following aliases:
alias vo='voir -iment'
alias vos='voir -style -iment'
Since the output of 'voir' can be rather long I usually pipe it into less, for example:
vo filename | less vos filename | less |
xrec is a X-window visualization program used to display 2D (horizontal or vertical) meteorological fields stored in FST files. Usage:
xrec |
or
xrec -imflds list_of_RPN_files |
You can also use the following alias:
alias xr='xrec -imflds'
The above command will open 3 windows (so make sure you connected with 'ssh -YC ...'!!!):
Do not trust the wind direction for any other vectors but 'UU' and 'VV'!!!
Among other things, xrec can get used to :
Check the full documentation (xrec-documentation) about how to do this or just click on the buttons and look at the menus.
xrec is using a dictionary to define the title, unit (including a multiplication factor) and contour intervals for each variable.
The name of the dictionary is:
~/.recrc
It needs to have exactly this name and it needs to be in your home. To have a dictionary to start from you are welcome to take a copy of mine ( cp ~winger/.recrc ~/. ) or ask a college if you can copy hers/his.
You can find more information about this dictionary by clicking on the following link: xrec-dictionary
The first time you open any field with xrec you will see there are "Colors" and "Contours". If you do not want to have "Contours" by default (you can always add or remove them later) do the following:
The next time you open xrec the default contour lines should be back and the background should be white again.
If you want to use high resolution geography on our UQAM servers you need to export:
export GDB_PATH=~data/Xrec_high_res |
You can use the Min-Max tool to fix a minimum and maximum value for a specific field.
1) Open the Min-Max menu window by clicking on "Options" in the Control Panel and select "Min-Max / Missing values...".
2) In the "Code" box search for and select the field for which you want to fix min/max.
3) In the "Max" box replace "Auto" with your maximum value. Do the same for "Min".
4) Now click on "Fixed"
You can find the full xrec documentation by clicking on the following link: xrec-documentation
r.fstliste is available if you need a bit more information than what is provided by voir.
It can be used in batch mode to extract specific or all of the record parameters of a RPN standard file record(s) based on a criteria given through the selection keys:
r.fstliste -izfst RPN-file [-datev -vdatev -ip1 -typvar -nomvar -col ...]
In RPN files levels are coded. The different types of levels are:
r.ip1 is a shell command that can be used to code and decode RPN levels as coded in RPN standard files. For more information click on the following link (login/password are the usual 'science'):
Or simply execute the following command in a terminal:
r.ip1 -h
'convertIp' is a function of the RPN Python module to code and decode RPN levels. To get access to it you first have to import the module, for example with:
import rpnpy.librmn.all as rmn
Once the module is loaded you can get a documentation of 'convertIp' with:
help(rmn.convertIp)
Example to convert pressure level to coded IP1:
import rpnpy.librmn.all as rmn # Module to read RPN files p_lev = 500 |
Answer:
Coded value for 500 hPa is: 41394464
Example to decode IP1:
|
Answer:
Decoded value of 41394464 is: 500.0 mb
'convip' is a Fortran function to code and decode RPN levels. 'convip' is part of the RPN Fortran library. To get access to it you need to load the library 'librmn.a' when creating the executable. You can do that by added the key '-lrmn' to the compile command. For example:
s.f90 source_code.f90 -o executable.Abs -lrmn
For more information click on the following link (login/password are the usual 'science'):
Dates and times are coded in RPN files. This also means that it is not possible to have any times in RPN files:
'r.date' is a shell command that can be used to code and decode RPN dates/times as coded in RPN standard files. For more information click on the following link (login/password are the usual 'science'):
Or simply execute the following command in a terminal:
r.date -h
'newdate' is a Python function to code and decode RPN dates/times. To get access to it you first have to import the module, for example with:
import rpnpy.librmn.all as rmn
Once the module is loaded you can get a documentation of 'newdate' with:
help(rmn.newdate)
Example to convert date & time to coded timestamp:
import rpnpy.librmn.all as rmn # Module to read RPN files date = 20241106 # YYYYMMDD time = 13300000 # hhmmsshh => 13h30 timestamp = rmn.newdate(rmn.NEWDATE_PRINT2STAMP, date, time) # Code date and time into timestamp print ('Coded value for date', date, 'at', time, 'is:', timestamp) |
Answer:
Coded value of date 20241106 at 13300000 is: 477041750
Example to convert coded timestamp to date & time:
import rpnpy.librmn.all as rmn # Module to read RPN files # Read one record filename = '...' # Name of RPN file to read varname = '...' # Name of variable to read fid = rmn.fstopenall(filename,rmn.FST_RO) # Open the file rec = rmn.fstlir(fid,nomvar=varname) # Read the full record of variable 'varname' timestamp = rec['datev'] # Read the code of the validity date (date, time) = rmn.newdate(rmn.NEWDATE_STAMP2PRINT, timestamp) # Decodes timestamp to date (YYYYMMDD) and time (hhmmsshh) print ('Decoded value of timestamp', timestamp, 'is:', date, 'at', time) rmn.fstcloseall(fid) # Close the RPN file |
Answer:
Decoded value of timestamp 477041750 is: 20241106 at 13300000
'newdate' is a Fortran function to code and decode RPN dates/times. 'newdate' is part of the RPN Fortran library. To get access to it you need to load the library 'librmn.a' when creating the executable. You can do that by added the key '-lrmn' to the compile command. For example:
s.f90 source_code.f90 -o executable.Abs -lrmn
For more information click on the following link (login/password are the usual 'science'):
The two main tools to modify FST files are called editfst and r.diag. And of course, you can also write your own C or Fortran programs.
editfst (also called editfst2000) is a utility used for editing and copying records from RPN standard files into a new or existing RPN standard file. It can do a straight (complete) copy of the input file or it can copy records selectively as indicated from the standard input or from a file of directives named in the "-i" key. One can select (via desire), exclude (via exclure) or modify (zap) records by their:
Example:
You could use it to select i.e. temperature (TT) and winds (UU,VV) at 500 hPa:
echo "desire (-1,['UU','VV'], -1 ,-1 ,[500.,MBAR])" | editfst -s input_file -d output_file
Note:
editfst appends to its output file. This means that if editfst is used more than once writing into the same output file, the output of the second set of commands will be appended to the output of the first set.
r.diag (also called r.diag2000) is a toolkit used to manipulate FST or CCCma files. As editfst, it can be used to select or exclude specific records but in addition to this it also contains a large set of functions which can be used to manipulate the files.
'r.diag' is always used in the way:
r.diag function input_file(s) [ output_file(s) key(s) ]
To get information about a specific function simply type:
r.diag function
Notes:
For example, temperature (TT) and winds (UU,VV) at 500 hPa can get selected with 'select' with the following command:
r.diag select input_file output_file_tt output_file_uu output_file_vv -name TT UU VV -lv1 500
Fields on model levels can get interpolated to a set of pressure levels with 'gsapl'.
Input files needed
Files can have any names, but to facilitate the explanation the following names are chosen for the example below:
Also just to facilitate the example below, the following parameters should get set:
File 'niveau.dat'
You need to create this file which needs to contain the list of all the pressure levels you want to interpolate to. This file needs to have the following format:
For example:
# Create file 'niveau.dat' (instead of with 'cat' you can also create it with an editor)
|
The file 'pres_lev' should now contain the same fields and timesteps as the input file 'mod_lev' but on the pressure level set in 'niveau.dat'.
There is a number of functions which can be called in a C or Fortran program to read and write FST files, and they are documented in the RPN Standard File Functions. These functions are part of the library 'librmn'.
There are functions to:
open and close an FST file
search for a record
read a record
read the field descriptor of a record
Have a look here on how to compile.
The tool 'cdf2rpn' which can get used to convert RPN to NetCDF format and vice versa. You can get the documentation of cdf2rpn by simply executing the command in a terminal:
cdf2rpn |
The general usage is the following:
Convert from NetCDF to RPN format: cdf2rpn -rpn RPN_standard_file -cdf NetCDF_file -attr attribut_list Convert from RPN to NetCDF format - one needs to add the key '-dir' (for 'direction'): cdf2rpn -rpn RPN_standard_file -cdf NetCDF_file -attr attribut_list -dir |
Notes:
def_attribut[ name; ccname; mult; add; Where: name: name of netCDF variable - mandatory |
Notes:
- Unit conversion from RPN → netCDF: unit(RPN) = mult*unit(netCDF)+add
- Unit conversion from netCDF → RPN : unit(netCDF)= (unit(RPN)-add)/mult
- 'nom_attribut' and 'valeur_attribut' are only used for conversions to nsfCDF format.
- Never put a space before the ";"!
- "[", "]", "=" and ";" are reserved characters. Do not use them otherwise, for example in names or descriptions.