How to create animated heatmaps?

We need to display dynamic heatmaps on the ground/surface that represent noise levels generated by aircraft. We need to be able to update both the coloring and position of the heatmaps.

We do this currently in our WorldWind-based Java application utilizing WorldWind’s analytic surface layer. The size and position of the surface layer can be specified/repositioned. We split the layer up into rows and columns and define colors based on the value assigned to each row/col position. A larger number of rows and columns produces better resolution/appearance but at a performance cost. Here’s an example of the results in a very basic/simple approach:

I have been searching the forums for several days for ideas regarding a reasonable approach to accomplish this with Cesium, but I’m struggling. It seems like there’s a possibility this could be accomplished with point clouds (but doesn’t seem very practical with the need to reposition constantly) or with the particle system (after some quick reading seems very unlikely). It also seems like placing rectangular entities with some type of custom fabric/material may be possible.

I looked into CheckerboardMaterialProperty and GridMaterialProperty, but these materials don’t allow setting the color/alpha of individual cells.

Is there any documentation or instructions for creating a procedural texture material? And would this be a good approach?

I found several references to Cesium Heatmap which utilizes heatmap.js, and have been experimenting with it. However, when creating a number of CesiumHeatmaps (maybe 25 or more) the performance seems to be quite poor trying to update the heatmap colors. And I haven’t come up with a good method to move the heatmap to follow the aircraft.

Any suggestions on the best approach to pursue for this feature would be greatly appreciated. We need an approach that has minimal performance impact as much as possible and yet produces a nice looking result.

@Rob

Thank you for the detailed community forum post! I took some time to look through the community forum and sandcastle. Unfortunately, I was not able to find any resources that provide full support for this functionality.

Using a particle system would be my first idea. One potential drawback to this approach is poor runtime performance. Out of curiosity, what makes using a particle system seem unfeasible to you? Alternatively, using rectangular entities with a custom material might work well. How exactly are you envisioning this implementation?

To be candid, I do not have any experience using heatmap.js. I took a few minutes to look through their specification. It seems like a promising library, especially if there is a history of CesiumJS developers using heatmap.js.

heatmap.js documentation

I will share these ideas with the rest of the CesiumJS development team and update you with feedback. In the meantime, I would love to hear about any progress made on your end. As always, community suggestions are also welcomed. In particular, I am curious to hear @Mark_Erikson’s take on this use case.

-Sam

Hi Sam,

Once I read through all the explanations and examples I could find regarding the particle system it didn’t seem like a good fit to me (unless there are some pertinent customization options that I didn’t discover). Runtime performance is definitely a real concern. But if you feel the particle system would provide a good solution I’d love to hear how.

The only way I can imagine using rectangle entities is by creating a procedural texture material that allows the number of rows/columns to be specified and an array of values or colors specified for each “cell” in the resulting grid. However, I have no experience with materials/shaders so I don’t know how feasible this is or what the performance would be like.

It seems CesiumHeatmap hasn’t been updated in over 3 years. It seemed to have issues with performance once I began drawing several (25 or more), and I can’t get the heatmaps to update (change colors). I also haven’t come up with a good way to move the heatmaps with the aircraft so far. In addition to these problems heatmaps.js seems to have a strange approach to coloring the grids/cells… at least it doesn’t produce the results I expect. Maybe I’ll figure this out with more experimentation.

I’d really appreciate some guidance/suggestions from the Cesium development team regarding the best path forward.

1 Like

https://wangzhongliang.github.io/CesiumHeatmap/canvas3d.html

1 Like

Thank you for the example. I’m trying to understand the creation of the heatmap and how I would utilize this for my needs. I have several questions I’d like to run by you:

  1. It seems the values in the example are all added with a size of 20 and an intensity of 0.05. So what causes the size and color variance in the heatmap results? Is it based on the number of points in a region? I need to calculate the noise level for each point in the heatmap and draw colors based on the noise level value. How would I go about doing this?
  2. There is a canvas object created for the heatmap and then there is a rectangle created in Cesium and an image of the canvas is set as the rectangle’s material. If I’m creating a heatmap for each aircraft will this present a performance issue?
  3. What would be the best approach for updating each heatmap’s colors each animation frame?
  4. What would be the best approach for moving/repositioning the heatmap each animation frame?
1 Like

@Rob

Thank you for sharing all of these details with me. Particle systems and rectangular entities clearly both have challenges associated with them. I was not familiar with CesiumHeatmap until you brought it up in your previous post. The library seems somewhat outdated and has clearly not enjoyed great adoption. However, it is promising that you were able to get a project up and running quickly using CesiumHeatmap. With a few dev hours, you should be able to optimize the project to improve the runtime performance. Let’s keep exploring.

We can also continue looking into heatmap.js. Their GitHub page seems to have helpful documentation. Other community members have asked questions in the Issues section. The issue section might be a resource worth exploring as you move forwards.

@fation thank you very much for sharing this example. I am curious to hear your responses to @Rob’s questions. I took some time to look through your source code. I think it could be a great resource for the rest of the community.

I really appreciate all the energy around this topic. I am looking forward to learning more and continuing to explore heatmaps in CesiumJS.

-Sam

@sam.rothstein I want to follow up on your comment that you would share with the CesiumJS development team and update with feedback. Noone is going to have a better idea of the best path forward than them. So I’m very anxious to get their input.

1 Like

Hi @Rob, you were on the right track with this comment:

The only way I can imagine using rectangle entities is by creating a procedural texture material that allows the number of rows/columns to be specified and an array of values or colors specified for each “cell” in the resulting grid. However, I have no experience with materials/shaders so I don’t know how feasible this is or what the performance would be like.

We did something similar for another project that required heatmap visualization. I extracted some of the functionality into a sandcastle example:

https://sandcastle.cesium.com/#c=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

Peek 2021-09-08 14-59

The idea is to create a textured ground primitive and update the texture whenever the values change. Just note that this example uses some classes in the private Renderer API like Texture and Sampler. It also it relies on some undocumented behavior in the material API that lets you use a Texture object directly instead of an image uri. Check out the comments in the sandcastle for more details about the approach.

I don’t have code for moving the ground primitive. Worst case you can create a new primitive each time it needs to move, as long as this isn’t happening super frequently. You should be able to re-use the same texture.

Let me know if this helps. I’m happy to explain the approach in more detail if anything is unclear.

4 Likes

Hi @sean_lilley, I really appreciate the details in your response along with the working example! I’ve been looking over your Sandcastle example and definitely need to spend some time digesting.

Since these heatmaps will be used to represent “noise footprints” for aircraft that are being animated the ability to move the heatmaps is really critical. I’ll need to take your example and implement these heatmap objects as a feature that can be enabled for each aircraft in the scene.

We attempt to allow the animation to occur with whatever frame rate is supported by the user’s computer/browser, so we are often rendering several times per second. For this reason I’m concerned that creating a new primitive each time will be very costly.

It’s been a long time since I worked with any primitives. Is the ability to move primitives in this fashion not supported? For this to meet the need I’ll definitely have to come up with a way to move the heatmaps with each animation frame. If you have any suggestions regarding a good way to move these heatmaps so that I can position them during animation with the aircraft they’re associated with I’d very much appreciate anything you can offer.

1 Like

Rectangle geometries need to be recomputed every time they move unfortunately in order to match the Earth’s curvature at that location. Looking at your use case a bit more the geometries are small enough that you can probably get away with using a coplanar polygon instead which can be moved freely with the model matrix property. I put together a second sandcastle that shows the heatmap moving.

The update frequency for the noise texture is 0.05 seconds. The geometry itself is updated every frame. The main bottleneck for performance is actually doing the gradient math when updating the noise texture but I wrote some ideas in the sandcastle for improving that.

2

3 Likes

@sean_lilley, this is fantastic! I began looking into the modelMatrix this morning as that is how we reposition our aircraft models during animation. The example you put together looks like it should work perfectly. Thank you so much!

I did read your notes about ideas regarding the noise texture…
// This loop is pretty slow and can be optimized. A better approach might be to
// map noise values to colors in the shader. Would need to upload noise values directly
// as a float texture and also pass in the gradient stops/colors as a uniform array.

This is new territory for me, but I would love to pursue this and learn about it. Are there any examples you can point me to? Or can you walk me through what I need to do to pursue this approach?

I really appreciate your help with this!

@sam.rothstein @Rob . This is not my code. I found it and just sent to you :slight_smile:

1 Like

@fation

Understood - thanks for clarifying. Where is the code from?

-Sam

@sean_lilley, I’ve made some progress (thanks to you!). But I have a number of things to work out.

Each flight has it’s own instance of the Material, MaterialAppearance, CoplanarPolygonGeometry, and the Primitive that is created from those.

However, there are 3 issues I’m running into immediately:

  1. It appears that all of the heatmaps are the same as if there is something being cached and all the aircraft are using the cached data. I know GLTF models have a “cacheKey” and if they share a common cache key then they share textures. Is that what’s happening here?
  2. There are places in the map tiles that occlude the heatmaps. See the heatmap in the lower, right portion of the image above. This happens in various places on the map/globe. Is there a setting to make the heatmap be visible above other terrain?
  3. When I turn the heatmaps on I instantly get results for all the aircraft. But after some amount of time (it seems to vary… but maybe 20 to 30 seconds) all of the heatmaps go away. If I wait long enough they come back. I’m not seeing any errors. I don’t know if this is maybe a memory issue. Or if there is a caching issue causing all flights to share the same texture maybe the flight with the shared texture goes out of view and causes the issue?

I’d really appreciate any thoughts/suggestions you might have (particularly regarding the first 2 issues)!

@Rob it’s great to see the fast progress you’ve made here. Hopefully I can help with some of these questions.

  1. I couldn’t reproduce this issue in my own sandcastle here. Could you double check that you’re not using the same texture for each material?
  2. I thought this problem might come up since the coplanar polygon geometry isn’t clamped to ground like the rectangle geometry is. Could you try adding viewer.globe.depthTestAgainstTerrain = false;. This will make geometry below terrain become visible.
  3. This one could be related to the first issue or some other issue in the app. I can’t think of anything in CesiumJS that would cause this behavior. If you can put together a sandcastle that isolates the problem that would be helpful.

@sean_lilley, thanks for the quick response!

  1. I was wrong. I was accidentally using the same texture. Got this sorted out. Thanks!
  2. Setting depthTestAgainstTerrain = false does seem to address the issue, however, see note below.
  3. I think this issue was related to issue number one. I’m not seeing it occur now, so I believe it’s been addressed.

Note regarding depthTestAgainstTerrain:
While this did appear to address the issue, I’m hoping there’s something else we can do. We set depthTestAgainstTerrain = true for this application for some other reasons. The biggest reason is that we draw walls trailing the aircraft following the aircraft’s path for a period of time (typically the past 60 seconds worth of the aircraft’s path). These walls help to see the path on the ground. But when the aircraft are located somewhere where the ground elevation is several hundred feet or more above mean sea level we run into a problem. For performance reasons we don’t want to sample the ground elevation at each flight’s track points. So we use the local airport’s ground elevation and subtract some amount to be safe and use that as the lower extent for our walls. Of course this means the walls extend below the surface which then causes a parallax effect when you tilt the scene since the walls appear to slide across/through the globe.

Since it appears we know why the coplanar polygon objects are being occluded… is there another way to address this issue?

@sean_lilley, I’m curious about the size (width x height) of the coplanar polygon geometry versus the size of the defined grid. My grids are a pretty consistent size of around 10,400 x 10,400 meters (which we determined to be a sufficient size to hold the generated noise footprints), and I divide the grid based on the desired “resolution” (which we like to run by default in our WorldWind application at about 217 meter intervals… but this appears to require too much processing in the browser, so I’m defining the grid in intervals of about 434 or 868 meters at this point for performance sake).

I don’t see latitude/longitude being used to define the grid in your example, so I’m curious about a couple of things…

  1. When we use the modelMatrix to position the primitive I assume the “center” of the primitive is what’s being positioned, correct?
  2. How is the size of the primitive defined?
    a) I’m assuming the geometry object defines the size of the primitive, correct?
    b) If so, I’m assuming it’s important that I define the size in meters of the coplanar polygon geometry to match the size in meters of the width and height of the grid. Do they need to match exactly? What happens if one is larger than the other?

I found a way to work around the depthTestAgainstTerrain issue. There’s even more esoteric stuff going on now but the summary is that depth test is disabled on the heatmap primitive so that it always renders above terrain. To prevent the heatmap from rendering above everything else I modified some of the primitive’s render settings so that it always renders in the opaque pass but still does alpha blending. The important thing to note is that heatmap primitives need to be added to the scene before all other primitives, or else the heatmaps will render above the other primitives. I kept it simple in my sandcastle but a more complicated app might want to create a PrimitiveCollection for all the heatmaps and add that collection to scene.primitives first.

I can’t promise this approach doesn’t have its own drawbacks but I think it gets closer.

https://sandcastle.cesium.com/#c=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

3

1 Like

The longitude/latitude are only used to compute the model matrix which will position the primitive. It’s the center of the primitive that’s being positioned.

The size of the primitive is based on both the size of the geometry and the model matrix, but since the model matrix has unit scale it’s just the geometry that matters.

I think you want the size of the coplanar polygon and the grid to match exactly. But if they don’t match the texture will scrunch to fit the geometry shape.

1 Like

@sean_lilley, I did as you suggested and created a primitive collection for the heatmaps that gets added to scene.primitives when the app first loads. This seems to do the trick causing the heatmaps to appear above the rest of the terrain but below other primitives we’ve added to the scene. So far this seems like a great approach. Thank you!