Reflections of points in sky atmosphere
See original GitHub issueLook please at this example: editor view / full page view
In the example, four cities Entity are added to the map. All entities include Label and Point. When viewed from a certain angle, a reflection of points in the sky appears.
It has been experimentally verified that the more points on the map, the more points are reflected in the sky. As the camera moves, the points in the sky begin to flicker.
Below is the code setting the camera position:
var heading = Cesium.Math.toRadians(142.8074308297535);
var pitch = Cesium.Math.toRadians(-3.04226367144852);
var range = 15000.0;
let position = entity4.position.getValue(viewer.clock.currentTime);
viewer.camera.lookAt(position, new Cesium.HeadingPitchRange(heading, pitch, range));

Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Exploring the depths of the new Sky & Atmosphere system
This hands-on presentation by Epic's Sjoerd De Jong explores the Sky Atmosphere system in Unreal Engine. Starting off with the basics, ...
Read more >[4.25] Skylight with higher intensity causes very bright Sky ...
The reflection of the sky is STILL inaccurate if scene's Skylight intensity is increased. Note that the OP has spent very much time...
Read more >shadows, reflections & atmosphere - Handprint
However, a traditional rule of thumb is: solar shadows are indistinguishable from the shadows created by a point light source; the penumbra of...
Read more >Mirages and other atomospheric optic phenomena
Mirages are produced by atmospheric refraction and are mainly seen in settings where there are large variations in the air temperature, such as...
Read more >Theory of Meteor Reflection | IMO
This last property creates a link between the position of the meteor reflection point in the sky and the meteor path in the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I forgot about that one, thanks @emackey Apparently you opened the PR fixing that one year ago today: #5735 I found that amusing =P
This is a regression of #5501. The sandcastle demo there is reproducible once again.