You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m looking for a library that can display temperature sensors as a heatmap, creating a colored graph similar to those seen on weather channels.
Instead of a map of American states, I’d like to visualize my house’s layout (viewed from above) to get a real-time temperature heatmap of the rooms and walls.
Is this possible?
The graph only needs a way to:
• Define the outline of the house (e.g., using a paint-style image or a simple layout sketch).
• Position the sensors at specific (x, y) coordinates, such as near a wall or in precise locations.
• Automatically blend colors between hot and cold areas where sensor ranges overlap.
Additionally, it would be great if:
1. The sensor heatmap starts with a circular area around each sensor and expands as their values dictate.
2. Overlapping areas merge smoothly to show a continuous gradient.
3. The radius of each sensor’s influence could be adjustable (e.g., in meters).
Do you think I’m dreaming?
The text was updated successfully, but these errors were encountered:
Grab each temperature sensor and put their values in the approximate coordinates inside the matrix so they match with the sketch of your house. leave all cells which are not sensors as undefined
Fill the undefined cells via interpolation. You'll have to create an algorithm for that which is not trivial
Give up writing the algorithm from scratch, open ChatGPT and tell it something like
i have a sparse matrix where some values are defined and some are undefined. Those are temperatures. Fill the undefined values of the matrix using interpolation in javascript. Put everything in a single function I can call with the matrix as a parameter`
Here’s a corrected and polished version:
I’m looking for a library that can display temperature sensors as a heatmap, creating a colored graph similar to those seen on weather channels.
Instead of a map of American states, I’d like to visualize my house’s layout (viewed from above) to get a real-time temperature heatmap of the rooms and walls.
Is this possible?
The graph only needs a way to:
• Define the outline of the house (e.g., using a paint-style image or a simple layout sketch).
• Position the sensors at specific (x, y) coordinates, such as near a wall or in precise locations.
• Automatically blend colors between hot and cold areas where sensor ranges overlap.
Additionally, it would be great if:
1. The sensor heatmap starts with a circular area around each sensor and expands as their values dictate.
2. Overlapping areas merge smoothly to show a continuous gradient.
3. The radius of each sensor’s influence could be adjustable (e.g., in meters).
Do you think I’m dreaming?
The text was updated successfully, but these errors were encountered: