Gnuplot question: plotting 3D data in map view


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Gnuplot question: plotting 3D data in map view
# 1  
Old 09-23-2007
Gnuplot question: plotting 3D data in map view

I have a simple gnuplot question. I have a set of points (list of x,y,z values; irregularly spaced, i.e. no grid) that I want to plot. I want the plot to look like this:
- map view (no 3D view)
- color of each point should depend on z-value.
- I want to define my own color scale
- plot should contain a little legend box in the form of a color bar listing what z-value corresponds to what color

I tried pm3d, but it seems it only handles gridded data, i.e. x,y's on a regular grid, or at least displays them as such. I just want to see the individual points (no interpolation).

Thanks for your help here.
# 2  
Old 09-25-2007
I found a partial answer myself. Suppose the xyz points are in the file "file.xyz". The following gnuplot commands will then produce a map with the points colored by z-value:

set pm3d
set palette rgb 33,13,10
set view map
splot 'file.xyz' with points palette pt 5 ps 0.5


Some explanation:
- set pm3d activates a package that allows coloring points by value;
- the palette command will create a much used color scale: blue-green-yellow-red;
- set view map will disable 3d view, but show a map view instead;
- splot plots the points in the file;
- "pt 5" specifies pointtype 5, meaning a triangle;
- "ps 0.5" specifies pointsize 0.5, meaning so small that it almost looks like a filled dot.

The only problem with this command is that it does not seem possible to produce filled symbols. All symbol types are open symbols. Also, each time you need to enter the splot command with all the specified options, which is a bit cumbersome in case you just want to make a quick plot.

If anyone knows how to make all these settings the default ones, or how to create a function/macro that does it, that would be appreciated.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Fun with terminal plotting JSON data at the command line

One of the great thing about unix is the ability to pipe multiple programs together to manipulate data. Plain, unstructured text is the most common type of data that is passed between programs, but these days JSON is becoming more popular. I thought it would be fun to pipe together some command... (1 Reply)
Discussion started by: kbrazil
1 Replies

2. Shell Programming and Scripting

Gnuplot question

Hi! Let's say I have these two columns in file.txt 0 1 1 5 2 10 3 15 4 20 5 25 in gnuplot, i would plot usingplot 'file.txt' u 1:2 If I wanted to add a label to the y-axis I would useset label "Ef" at 0.0,7.0 However, I want the label Ef to be on the otherside of the y-axis. Not... (0 Replies)
Discussion started by: sidiq1983
0 Replies

3. Shell Programming and Scripting

Gnuplot Time Data Question

I have a data file of the following format: servername,2013-05-11 17:46:03,SomeText,195,195,11,202 servername,2013-05-11 17:47:03,SomeText,192,192,23,103 servername,2013-05-11 17:48:03,SomeText,189,190,14,117 servername,2013-05-11 17:49:03,SomeText,196,195,24,231 ... ... I want to... (0 Replies)
Discussion started by: BeeryM
0 Replies

4. UNIX for Dummies Questions & Answers

gnuplot: map view with black and white for 0/1 in the 3rd column

Hi, I am using gnuplot to plot a 3D plot with "set view map". My data looks like ====== X Y Z ====== 100 200 0 200 300 1 200 200 0 . . . The third column only has either 0 or 1. How do I generate a map view plot that will have black (white) for 0 (1)? Thanks, Gaurab (0 Replies)
Discussion started by: gaurab
0 Replies

5. Shell Programming and Scripting

placeholder in gnuplot data

My input data has occasional holes in it, spots where a sensor couldn't be read. These are ERR in the data file instead of a floating point number. What should I change them to, for gnuplot to ignore these values instead of whining about them? (1 Reply)
Discussion started by: Corona688
1 Replies

6. UNIX for Dummies Questions & Answers

Plotting boxes in gnuplot

When I plot a set of data in gnuplot from a file like: 1 5 2 3 4 6 5 1 using plot "file.txt" w boxes I would expect that at the x value of 3 it will go to a value of 0 for y... but it doesn't. Is there a way to fix that, or do I actually have to type by hand an... (1 Reply)
Discussion started by: cosmologist
1 Replies

7. UNIX for Dummies Questions & Answers

Help with extracting data and plotting

I have attached a txt file, what I would like to be able to do is: 1. Extract Data from Columns labeled E/N and Ko into a new file 2. Then in the new file I would like to be able to plot E/N on the X axis and Ko on the y axis. 3. Lastly I would like to be able to extract multiple data sets and... (6 Replies)
Discussion started by: gingburg
6 Replies

8. UNIX for Dummies Questions & Answers

Plotting Data within UNIX

I have a set of data that looks similar to the following in UNIX: 0.12_0.008_fall_ff.out:bisect return: 0.08056640625 0.12_0.04_fall_ff.out:bisect return: 0.07470703125 0.12_0.12_fall_ff.out:bisect return: 0.06298828125 0.12_0.24_fall_ff.out:bisect return: 0.05126953125 Previously I have... (4 Replies)
Discussion started by: EDALBNUG
4 Replies

9. UNIX and Linux Applications

Gnuplot question: how to plot 3D points as colored points in map view?

I have a simple gnuplot question. I have a set of points (list of x,y,z values; irregularly spaced, i.e. no grid) that I want to plot. I want the plot to look like this: - points in map view (no 3D view) - color of each point should depend on its z-value. - I want to define my own color scale -... (0 Replies)
Discussion started by: karman
0 Replies
Login or Register to Ask a Question