I have two 1D arrays. One containing temperature and the other radial distance (for each respective temperature). I want to produce a heat map type plot using this information. Here is where I'm running into issues: 1. If I create a 2d numpy grid, how do I correlate a radial distance to each one? Say the radial distance is 5 units, how to I find all grid squares that are 5 units from the center? 2. Then how to I correlate to each temperature its respective set of grid points. So say the temperate is 20 degrees at radial distance 5, how do I express this as it is 20 degrees at the following set of x,y grid squares?
Thanks for any assistance.