- Click on "Export values" (context menu on any plot with grid values), for instance to /tmp/grid
- Go into the properties of the layers, under the color map section, save it to /tmp/toto.pal
- Run the following script:
Code: Select all
cat grid | awk 'BEGIN{print "x y val"}!/x y/{print $2,$1,$3}' | figue -g -colormap /tmp/toto.pal
- Manually edit the properties of the axis to fit your needs.
- If you have to repeat it for several plots, you can save the make-up of a plot and add option '-m /tmp/your.mkup' in figue arguments.
Swapping X and Y in a more user friendly way is an option that will be probably added in the future.