WXP
Resource Reference

Resource: current

Resource current
Overview This specifies to use current data files.
Command Line -cu=[hour]
Environment Variable wxpcurrent
Possible Values
Default Value none

The current resource is used to specify a current data file based on date and time. The files being used by the program must have a naming convention that has a date element.

The value of the current resource is actually an offset from the current time. The simplest ways to specify the offset are as follows:

Latest Files

If the current file is not available, you may want to just get the most current file, the latest file. If you specify -cu=la, the program will search back through the most recent 1000 times, create a filename and check to see if it exists. If the file name convention specifies a file every 12 hours as with upper air data, it will first check the current time, if the file does not exist, it check for the file that would be 12 hours old, and so on. If the file name convention specifies a file every 5 minutes as with NIDS data, it will search back in 5 minute increments.

Now the absolute offset and the latest can be combined. Say, you want the first available data file that is at least 5 hours old, you would specify -cu=5-la. Say you want the file that is 5 hours previous to the latest, you would specify -cu=la-5. You can have forward searches as in -cu=3d+la or -cu=la+2. This would find the latest and search forward 2 hours. This will be discussed more in the next section.

Sequence numbers and wxpcurtime environment variable

WXP offers the concept of a sequence number which is an absolute time specification that is irrelevant of the file naming convention. If you wanted the data file from 12Z 22 Dec 2013, you would specify:

-cu=#201312221200

The format of the seqence number is 4 digit year, 2 digit month, 2 digit day, 2 digit hour and 2 digit minute. Any value omitted is assumed to be 0 so you could have left off the last two zeros.

Now we can offset from this time:

-cu=#1996122112-la

which will start at this time and search backwards for the first available file.

If you want this sequence number to be the default starting point and don't want to continue to specify it in the current resource, you can set the wxpcurtime environment variable. Since this can only be a sequence number, the number sign "#" can be omitted:

export wxpcurtime=2013122112

This is a handy feature when dealing with case studies and being able to use the current resource with old data. If you have a case study on the time above, you may want to set this environment variable to be the most important time of the case like when the tornadoes are occurring. Then the students can just use the default current time to reference that time without worrying about the file naming convention. Now, the concept of forward offsets and forward latest searching comes in handy. Now you can look forward and backwards from the reference time with ease by using the current resource.

Complete Syntax

Here is the complete syntax of the current resource. Any of the parts can be omitted.

[#yyyymmddhhnn][+-##d##:##][+-la][+-##d##:##]


Last updated January 2014