- #1
DaveC426913
Gold Member
- 22,986
- 6,658
- TL;DR Summary
- I'm always wanting to plot simple graphs, what are my options?
I should probably get one or two of these under my belt.
My current need is to plot a ... I guess it's a heat map.
I've got a map of my local area and I want to determine the geographical centre of a number of points (say, seven). So, for every xy "cell" on the map, I'll use pythagoras to determine the "as the crow flies" distance from each of the start points, add them up and give them a colour.
I'm hoping for something vaguely like this:
(I may be overengineering this - but I do like graphical renders. I'm sure there's a much more expedient way to find the centre of n points, using just geometry.)
My current need is to plot a ... I guess it's a heat map.
I've got a map of my local area and I want to determine the geographical centre of a number of points (say, seven). So, for every xy "cell" on the map, I'll use pythagoras to determine the "as the crow flies" distance from each of the start points, add them up and give them a colour.
I'm hoping for something vaguely like this:
(I may be overengineering this - but I do like graphical renders. I'm sure there's a much more expedient way to find the centre of n points, using just geometry.)