X2SYS_INIT(1gmt) | GMT | X2SYS_INIT(1gmt) |
x2sys_init - Initialize a new x2sys track database
x2sys_init TAG -Ddeffile [ -Cc|f|g|e ] [ -Esuffix ] [ -F ] [ -Gd|g ] [ -Idx[/dy] ] [ -Nd|sunit ] [ -Rregion ] [ -V[level] ] [ -Wt|dgap ]
Note: No space is allowed between the option flag and the associated arguments.
x2sys_init is the starting point for anyone wishing to use x2sys; it initializes a set of data bases that are particular to one kind of track data. These data, their associated data bases, and key parameters are given a short-hand notation called an x2sys TAG. The TAG keeps track of settings such as file format, whether the data are geographic or not, and the binning resolution for track indices. Running x2sys_init is a prerequisite to running any of the other x2sys programs, such as x2sys_binlist, which will create a crude representation of where each data track go within the domain and which observations are available; this information serves as input to x2sys_put which updates the track data base. Then, x2sys_get can be used to find which tracks and data are available inside a given region. With that list of tracks you can use x2sys_cross to calculate track crossovers, use x2sys_report to report crossover statistics or x2sys_list to pull out selected crossover information that x2sys_solve can use to determine track-specific systematic corrections. These corrections may be used with x2sys_datalist to extract corrected data values for use in subsequent work. Because you can run x2sys_init you must set the environmental parameter X2SYS_HOME to a directory where you have write permission, which is where x2sys can keep track of your settings.
c Cartesian distances [Default, unless -G is set].
f Flat Earth distances.
g Great circle distances [Default if -G is set].
e Geodesic distances on current GMT ellipsoid.
These *.def files contain information about the data file format and have two sections: (1) header information and (2) column information. All header information starts with the character # in the first column, immediately followed by an upper-case directive. If the directive takes an argument it is separated by white-space. You may append a trailing # comments. Five directives are recognized:
ASCII states that the data files are in ASCII format.
BINARY states that the data files are native binary files.
NETCDF states that the data files are COARDS-compliant 1-D netCDF files.
SKIP takes an integer argument which is either the number of lines to skip (when reading ASCII files) or the number of bytes to skip (when reading native binary files). Not used with netCDF files.
GEO indicates that these files are geographic data sets, with periodicities in the x-coordinate (longitudes). Alternatively, use -G.
MULTISEG means each track consists of multiple segments separated by a GMT segment header (alternatively, use -m when defining the system TAG). Not used with netCDF files.
The column information consists of one line per column in the order the columns appear in the data file. For each column you must provide seven attributes:
name type NaN NaN-proxy scale offset oformat
name is the name of the column variable. It is expected that you will use the special names lon (or x if Cartesian) and lat (or y) for the two required coordinate columns, and time when optional time data are present.
type is always a for ASCII representations of numbers, whereas for binary files you may choose among c for signed 1-byte character (-127,+128), u for unsigned byte (0-255), h for signed 2-byte integers (-32768,+32767), i for signed 4-byte integers (-2,147,483,648,+2,147,483,647), f for 4-byte floating points and d for 8-byte double precision floating points. For netCDF, simply use d as netCDF will automatically handle type-conversions during reading.
NaN is Y if certain values (e.g, -9999) are to be replaced by NAN, and N otherwise.
NaN-proxy is that special value (e.g., -9999).
scale is used to multiply the data after reading.
offset is used to add to the scaled data.
oformat is a C-style format string used to print values from this column.
If you give - as the oformat then GMT's formatting machinery will be used instead (i.e., FORMAT_FLOAT_OUT, FORMAT_GEO_MAP, FORMAT_DATE_MAP, FORMAT_CLOCK_MAP). Some file formats already have definition files premade. These include mgd77 (for plain ASCII MGD77 data files), mgd77+ (for enhanced MGD77+ netCDF files), gmt (for old mgg supplement binary files), xy (for plain ASCII x, y tables), xyz (same, with one z-column), geo (for plain ASCII longitude, latitude files), and geoz (same, with one z-column).
If you have a large set of track data files you can organize them using the x2sys tools. Here we will outline the steps. Let us assume that your track data file format consist of 2 header records with text information followed by any number of identically formatted data records with 6 columns (lat, lon, time, obs1, obs2, obs3) and that files are called *.trk. We will call this the "line" format. First, we create the line.def file:
# Define file for the line format | ||||||
# SKIP 2 | # Skip 2 header records | |||||
# GEO | # Data are geographic | |||||
#name | type | NaN | NaN-proxy | scale | offset | oformat |
lat | a | N | 0 | 1 | 0 | %9.5f |
lon | a | N | 0 | 1 | 0 | %10.5f |
time | a | N | 0 | 1 | 0 | %7.1f |
obs1 | a | N | 0 | 1 | 0 | %7.2f |
obs2 | a | N | 0 | 1 | 0 | %7.2f |
obs3 | a | N | 0 | 1 | 0 | %7.2f |
Next we create the TAG and the TAG directory with the databases for these line track files. Assuming these contain geographic data and that we want to keep track of the data distribution at a 1 x 1 degree resolution, with distances in km calculated along geodesics and with speeds given in knots, we may run
gmt x2sys_init LINE -V -G -Dline -Rg -Ce -Ndk -NsN -I1/1 -Etrk
where we have selected LINE to be our x2sys tag. When x2sys tools try to read your line data files they will first look in the current directory and second look in the file TAG_paths.txt for a list of additional directories to examine. Therefore, create such a file (here LINE_paths.txt) and stick the full paths to your data directories there. All TAG-related files (definition files, tag files, and track data bases created) will be expected to be in the directory pointed to by $X2SYS_HOME/TAG (in our case $X2SYS_HOME/LINE). Note that the argument to -D must contain the full path if the *.def file is not in the current directory. x2sys_init will copy this file to the $X2SYS_HOME/TAG directory where all other x2sys tools will expect to find it.
gmt x2sys_binlist -V -TLINE :tracks.lis > tracks.tbf
gmt x2sys_put -V -TLINE tracks.tbf
gmt x2sys_get -V -TLINE -R20/40/-40/-20 -Fobs1,obs3 > tracks.tbf
gmt x2sys_init MGD77 -V -Dmgd77 -Emgd77 -Rd -Gd -Nsn -I1/1 -Wt900 -Wd5
where we have chosen a 15 minute (900 sec) or 5 km threshold to indicate a data gap and selected knots as the speed; the other steps are similar.
# Define file for the binary line format | ||||||
# BINARY | # File is now binary | |||||
# SKIP 128 | # Skip 128 bytes | |||||
# GEO | # Data are geographic | |||||
#name | type | NaN | NaN-proxy | scale | offset | oformat |
lon | d | N | 0 | 1 | 0 | %10.5f |
lat | d | N | 0 | 1 | 0 | %9.5f |
time | d | N | 0 | 1 | 0 | %7.1f |
obs1 | h | Y | -32768 | 0.1 | 0 | %6.1f |
obs2 | h | Y | -32768 | 0.1 | 0 | %6.1f |
obs3 | h | N | 0 | 0.1 | 0 | %6.1f |
The rest of the steps are identical.
# Define file for the netCDF COARDS line format | ||||||
# NETCDF | # File is now netCDF | |||||
# GEO | # Data are geographic | |||||
#name | type | NaN | NaN-proxy | scale | offset | oformat |
lon | d | N | 0 | 1 | 0 | %10.5f |
lat | d | N | 0 | 1 | 0 | %9.5f |
time | d | N | 0 | 1 | 0 | %7.1f |
obs1 | d | N | 0 | 1 | 0 | %6.1f |
obs2 | d | N | 0 | 1 | 0 | %6.1f |
obs3 | d | N | 0 | 1 | 0 | %6.1f |
Note we use no scaling or NAN proxies since those issues are usually handled internally in the netCDF format description.
x2sys_binlist, x2sys_datalist, x2sys_get, x2sys_list, x2sys_put, x2sys_report, x2sys_solve, x2sys_cross
2019, P. Wessel, W. H. F. Smith, R. Scharroo, J. Luis, and F. Wobbe
May 21, 2019 | 5.4.5 |