|
Filtering the results of process outputs |
Retrieval Criteria
Retrieval criteria are a useful feature of Studio application processes.
Processes are file-based. They require one or more files in Datamine binary format, and depending upon the process, convert the data to create one or more new Datamine format files. Processes are recognizable by the typical "Files, Fields and Parameters" tabbed dialog, e.g.
TONGRAD is an example of a Studio
application process. There are many more.
Many processes support Retrieval
Criteria. These provide the ability to specify a range of values
within which a field value must lie for it to be accepted by a process.
For example, LIST is
a process that is used to list the contents of a file, which supports
retrieval criteria. As such, it has a Retrieval
Criteria tab. When activated, the following tools become available:
Every process that supports retrieval criteria can filter processed values according to one or more criterion. Each criterion can reference any field that exists in an input file (as specified on the Files tab).
LIST Example (Specifying Numeric Values in Retrieval Criteria)
To LIST records in the specified input file that lie between 300
and 400 in X coordinates (inclusive), you can add a retrieval criterion
using button (1) on the panel. Once added, the next available empty
line becomes editable:
Each criterion can reference only one field. Once a field criterion has been specified, it can't be used in subsequent criteria for the same process run.
You can enter criteria one-per-line or multiple criteria on the same line, separated by commas. Some examples of this are displayed below.
Criteria are entered using the format FIELD-OPERATOR-VALUE. So, to list only records between 300 and 400 in X (inclusive), the criterion below is valid:
X>300<400
Note that there is no requirement for "=" to define an inclusive range, so the range above in fact means "X>=300 and <=400" (described this way for clarity and is not valid criteria syntax).
Omitting either the lower or upper limit is also valid. In this case, all available values above or below the specified value can be listed using this type of criterion:
X>300
or;
Y>400
Pressing <ENTER> commits the criterion to the list. If you wish, you can add further criteria to further filter the data records on which a process will act, although note that once a field criterion has been specified, it can't be used in subsequent criteria for the same process run.
For example, adding the following two criteria is not valid:
X>250
X>200
However, the following criteria are acceptable:
X>200
Y>500
The equals sign is also valid, and can be used to refine your input records to attributes containing specific numeric or alphanumeric values. For instance, processing all model records that have the numerical lithology (LITH) attribute value 3 could be achieved using the following syntax:
NLITH=3
Specifying Alphanumeric Values in Retrieval Criteria
If you want to reference an alphanumeric value in a retrieval criterion, use single quotes, e.g.:
LITH='Siltstone'
You can also use > and < operators with alphanumeric values. In this case, the sorting method is alphabetical. Be wary, though, of how this can be interpreted to avoid unexpected results.
Consider the following example, where a file contains 6 records for borehole ID (BHID):
BH1
BH2
BH3
BH11
BH12
BH13
The following criterion is used, again with the LIST process (as it is the simplest example):
BHID>'BH2'
When LIST is processed, the following records are listed:
BH2
BH3
However, and this is where you need to be careful, the following criterion:
BHID>'BH1'<'BH2'
...instructs the LIST process to only process (and display) the following records:
BH1
BH11
BH12
BH13
In this case, to list borehole IDs within a range that is treated numerically, it would be necessary to split off the numeric part of the ID to a new, numeric field using other processes (such as EXTRA) and then specifying a numeric retrieval criterion range.
Retrieval Criteria Rules
There are several features of retrieval criteria that are important,
- Retrieval criteria are additive. A record from the input file will pass through to the process if it satisfies ALL retrieval criteria.
- Criteria apply to all input files in the process. This is important where more than one file contains the same attribute, such as a block model and input drillholes file sharing the same zone attribute with the SWATHPLT process, for example.
- Up to 20 criteria can be specified, and all must refer to different fields
- You cannot have 2 or more criteria referencing the same field.
- If a criterion references a field that doesn't exist in any input file, the criterion will be ignored.
- Field references in the same set of criteria can be from different
input files. For example, you could filter records for process
where X>200 (in a points file) but also XC>300 (in a model
file):
X>200
XC>300 - Criteria can be entered in one line, separated by commas or
on different lines (or any combination). For example
ZONE>1
AU>0.01
Can also be specified as:
ZONE>1, AU>0.01 - Retrieval criteria will not be restored if the Restore button is used on a process dialog. If you have particularly lengthy or complex criteria that may be needed again, copy the text to a text file and paste it back it when needed.
Related Topics | |
|
Accessing Commands and Processes |
Copyright © Datamine Corporate Limited
JMN 20045_00_EN