As we have seen in previous blog posts (Seismic Interpretation and Colour) the choice of colour map is very important to how the data is presented and interpreted. In GeoTeric we have some customised colour maps to optimise the display of some of
the attributes in the application e.g the DipAzimuth Combined attribute.
However, it's also very easy to create your own colour maps and have these added into the application and below are some simple steps on how to do that. GeoTeric will load any valid colour map which it finds in the installation directory when starting. A custom colour map can be added by creating a new file with a .cmp file extension. The format of a .cmp file is defined in xml and can be written in windows notepad or any other text editor of choice.
|
The following is an example of a colour map with a single range:
|
An example with Multiple Ranges:
<colourmap name="BodySpectrum">
<range width="1%">
<point>
0.0 0.0 0.0
</point>
<point>
0.0 0.0 0.0
</point>
</range>
<range width="99%">
<point>
0.0 0.0 1.0
</point>
<point>
0.0 1.0 1.0
</point>
<point>
0.0 1.0 0.0
</point>
<point>
1.0 0.0 0.0
</point>
</range>
</colourmap>
|
This colour map has multiple ranges and is similar to the BodySpectrum colour map provided with GeoTeric.
This colour map has two ranges.
The first range is fixed at 1% of the total colour map range and contains two points. Both points as black so this whole range will appear as black.
The second range covers the rest of the colour map’s width. There are three points:
Point (1) is blue
Point (2) is cyan
Point (3) is green
Point (4) is red |
To see more examples, open any of the .cmp files within the GeoTeric installation folder.