|
|||||||||||||||||
![]() |
|
||||||||||||||||
|
|
Property
data with
color-coded tubes displayed.
|
Three steps are required for creating a display, such as the one shown above. First, the file's header must be modified to contain a radius field, if the tubes are to be saved and redisplayed later. The radius field can be added by bringing the file up in any EarthVision File Selection window and selecting Header. Second, the property data colors must be on and finally the tubes must be created. The last two steps are discussed next.
![]() |
To turn on property colors, on the Color
menu (hot key "9"), select the Scattered Data Colors
button (or hot key "p") and then choose Property colors.
|
![]() |
To turn on tubes, on the Edit Data Menu
(hot key "^2"), select the Select Tubes button
(under Data Line Tubes) and then choose Create/Edit Tubes.
|
If the radius field already exists with data in it,
then the radius of the tubes is equal of the values set. If no data
are in the radius field, then the user is asked to
specify the radius of the tubes.
|
|
|
Symbols 7 through 9 require special fields; the symbol types include earthquake foci (or fault plane solution) symbols, elliptic, tilted-disks symbols, and ellipsoid symbols. These symbols and the required fields are discussed in the EarthVision 5.0 Release Notes.
#!/bin/sh -e
# Shareware Disclaimer:
# This software is SHAREWARE and is provided as a benefit
# for our clients by Dynamic Graphics, Inc.; however, it is
# unsupported. Dynamic Graphics accepts no responsibility for
# the content, maintenance, or support of SHAREWARE.
ev_fpfp -u -F
ev-3dx/gsbx << 'EOF'
new.pdat<symbol>=6;
new.pdat<symsize>=1;
new.pdat<symsize>=le(new.pdat<pce>,99.99,1,\
new.pdat<symsize>);
new.pdat<symsize>=rngin(new.pdat<pce>,100,\
999.99,2,new.pdat<symsize>);
new.pdat<symsize>=rngin(new.pdat<pce>,1000,\
9999.99,3,new.pdat<symsize>);
new.pdat<symsize>=rngin(new.pdat<pce>,10000,\
99999.99,4,new.pdat<symsize>);
new.pdat<symsize>=ge(new.pdat<pce>,100000,5,\
new.pdat<symsize>)
EOF>
|
|
Symbol Size
Based On Property Value Ranges.
|
|
|
Default
Symbol #10 (left); Elliptical Strike/Dip Symbols (right).
|
![]() |
To turn on strike/dip symbols, go to the
Post menu (hot key "6"), and click on the Elliptical Strike/Dip
Symbols button under Symbol Display.
|
Well data can have dip and dip azimuth information automatically calculated using evwellpath.
The following is a script file uses ev_wellpath to calculate dip and dip azimuth for each point along the well. Since ev_wellpath only calculates one well at a time, a loop is written to cycle through each well ID.
#!/bin/sh
-e
# Shareware Disclaimer:
# This software is SHAREWARE and is provided as a benefit
# for our clients by Dynamic Graphics, Inc.; however, it is
# unsupported. Dynamic Graphics accepts no responsibility for
# the content, maintenance, or support of SHAREWARE.
FILEIN='exptops.dat'
WELLZ='tvdss'
DISTANCE='100000.0'
INCLINATION='0.0'
AZIMUTH='0.0'
WELLLIST=WELLLIST_TMP$$
FINALOUT='OUTFILE_wpath.dat'
touch $FINALOUT
TST='1'
cat $FILEIN | nawk
'/^#/ {next} NF==0 {next} \
{print $1}' | sort -u > $WELLLIST
for file in `cat
$WELLLIST`
do
WELLID=$file
WELLIN=TMP_$$_${WELLID}.dat
ev_field -i $FILEIN -o $WELLIN -r wellid -s $WELLID
WELLOUT=TMPOUT_$$_${WELLID}.dat
ev_wellpath -w $WELLIN -z "$WELLZ" -o $WELLOUT -n \
"$WELLID" -d $DISTANCE
-s
if [ $TST = '1' ]
then
cp $WELLOUT $FINALOUT
TST='2'
else
cat $WELLOUT | nawk '/^#/
{next} {print}' >> \
$FINALOUT
fi
echo $WELLOUT >> TEMP2$$
rm -f $WELLIN
echo "Done with well: $WELLID"
done
cat TEMP2$$ | while
read FILE
do
rm -f $FILE
done
rm -f $WELLLIST
TEMP2$$
evview -dwhich gives information about the valid data field names recognized by the 3D Viewer.
[Home]
[Corporate]
[Events & News]
[EarthVision] [Support]
[Services] [Contact
Us]
© 1999-2007 Dynamic Graphics, Inc. All
Rights Reserved. Legal Notices.
See Legal Notices for appropriate copyright trademark legend.
Feedback: webmaster@dgi.com
Last updated: March 22, 2007