Gnuplot Density Mapping: Tips and Tricks for Efficient Data Plotting

Click For Summary
The discussion centers on a user encountering a warning while using a bash script to plot data with gnuplot. The warning indicates that there is a single isoline for a pm3d plot, suggesting missing blank lines in the data file that are necessary for proper 3D density mapping. The user is seeking advice on how to efficiently process thousands of lines across multiple .dat files to ensure the correct formatting, specifically the inclusion of blank lines to separate different x values.A suggested solution involves writing a script to remove instances of multiple carriage return-line feed (CR-LF) sequences, condensing them to a single CR-LF. This approach is not specific to gnuplot and can be implemented in various programming languages. The solution entails reading each line of the file, checking for blank lines, and writing only non-empty lines to a new file. This method is efficient and can be executed with minimal code, allowing for quick formatting of the data files for gnuplot use.
s_hy
Messages
57
Reaction score
0
Hi all,

I used below bash command to plot my data (.dat file)

Code:
#!/bin/bash

(
echo 'set term jpeg'
echo 'set style data lines'
echo 'set yrange [0:200]'
echo 'set xrange[0:200]' 
echo 'set pm3d map'
echo 'set palette defined (-2 "yellow", 0 "green", 2 "red")'for f in "$@"
do
#	echo "Processing $f" >&2
	pic_name="${f%.dat}.jpg"
	echo "set out '$pic_name'"
	echo "splot '$f'"
done) | gnuplot

but I got this warning:

Warning: Single isoline (scan) is not enough for a pm3d plot.
Hint: Missing blank lines in the data file? See 'help pm3d' and FAQ.

As I know, to map using gnuplot for 3d density mapping, I should have output with blank lines to separate different x values, like this

Code:
-180.0 -180.0 0.0
-180.0 -179.0 0.2
[...]
-180.0  180.0 0.0

-179.0 -180.0 0.4
-179.0 -179.0 0.2
[...]
-179.0  180.0 0.0

[...]

but, if I have a few thousand lines, with 200 .dat files, what can I do to expedite my job? Anyone can help...thank you in advance.
 
Last edited:
Technology news on Phys.org
Hey s_hy and welcome to the forums.

One idea I have for you is to run a script (or write some code to create an executable) to just remove every instance of a double or more than double CR-LF (carriage return line-feed) and just set it to a single CR-LF.
 
chiro,

how can I do that? gnuplot is new to me..still not familiar with the command
 
It's not a gnuplot specific suggestion: it's a general one that can be implemented on your language (scripting/non-script/whatever) and platform of your choice.

All you want to do is basically read in every line of the file that is relevant and whenever you encounter a file with multiple CR-LF (carriage return-line feed) values just remove all of them but one.

If you want to know what these values are use a hex-editor and look at the raw data and see if it's just a one or two byte code and you'll see what the values are.

The simplest way to do this without even worring about the CR-LF values is to just have a loop that reads in one line at a time and then if the line is blank forget about it and if not write it to another file.

When the loop terminates you'll have another file without any extra spaces in the data and you can use that.

It's basically just an open statement, one loop that reads until end of file, read line, check if empty or with only spaces and if so don't add it to output but if not write that line to the output file, loop terminates, close input file, flush output to existing file close handle, program exits and you have a file that has no gaps.

If you have any platform that allows you to read in one line at a time and write one line at a time you're looking at something like 10-20 lines for the entire thing and will do its magic pretty much on the spot.
 
Learn If you want to write code for Python Machine learning, AI Statistics/data analysis Scientific research Web application servers Some microcontrollers JavaScript/Node JS/TypeScript Web sites Web application servers C# Games (Unity) Consumer applications (Windows) Business applications C++ Games (Unreal Engine) Operating systems, device drivers Microcontrollers/embedded systems Consumer applications (Linux) Some more tips: Do not learn C++ (or any other dialect of C) as a...

Similar threads

  • · Replies 2 ·
Replies
2
Views
4K
Replies
4
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
7K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 14 ·
Replies
14
Views
11K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K