Search the Knowledgebase |
Browse by Category |
|
|
|
| How do I export a Gridder lattice to ASCII XYZC? |
| User Opinions |
|
No users have voted.
|
|
Thank you for rating this answer.
|
- The ASCII Inventor IV file
contains the XYZ vertex coordinates in decimal notation, and color and
transparency information in hexadecimal notation. If the ScatterPlot
uses the GrayScale ColorMap, then there is a linear relationship
between the color and data values. To view the minimum and maximum
gridded values, click on the "ellipsis" button (...) to the right of
the ColorMap in the Properties window, or attach an Info module to the
Gridder output.
The hex values range from 000000 (0 decimal) for black and FFFFFF
(16777215 decimal) for white, with each value followed by a
transparency value, which is FF for 100% opaque. Thus a typical value
displayed as 0x9a9a9aff represents a hex value of 9a9a9a or 10132122 in
decimal notation. To get the equivalent data value,
data value = data min + ( (color/16777215) * (data max - data min) )
Use a script to convert the IV file to ASCII XYZC format.
- Another option for exporting a Gridder lattice to ASCII is the
Plot-3D format. This format consists of a P3D file with all the X, then
all the Y, then all the Z values and a separate Q file for the data
values. Use a text editor or a script to convert the file to XYZC
format. For more information on the P3D format, please see: http://www.goldensoftware.com/activekb/questions/771
|
| Visitor Comments |
|
No visitor comments posted. Post a comment
|
| Attachments |
|
No attachments were found.
|