Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Availability from bvh #7196

Merged
merged 26 commits into from Nov 19, 2018
Merged

Availability from bvh #7196

merged 26 commits into from Nov 19, 2018

Conversation

tfili
Copy link
Contributor

@tfili tfili commented Oct 26, 2018

We now don't use the availability list from layer.json. Instead we load it from the BVH terrain extension. Here is a Sandcastle example. The GTOPO terrain is stand alone and the Zion UT terrain is cutout terrain on top of GTOPO.

https://cesiumjs.org/Cesium/Build/Apps/Sandcastle/index.html#c=tVZtb+I4EP4rVr9AJWoSJ06cLq2uR3tVqgLblu7tcpxOJjHgNrHZxLyu+t9vQqClqD1dpV1/AcYz88w880xCvY4uM64MaopcTtOrO8SjSOQ5Mhot9TRDUivE81yYvK9KHxxqhWMx5NPEnK2du/pRKHSCKmJ5NR5cRrIjr8L7VWi3ZZiH6pZGzdALHydfvzSvAgxO3+PLx8Lp8Vt6lfbOo0VracvWw8X8unuzbKXfTOcydDpNO213b8ft8xjuRotW2pLXzatJD5K1lnPJ//zDCh/0ot0NSev8nrZXZ/PhDY6GzZvv5mjs9mLX8H++XjysTOBPHdbknWC2WMyH/t3N7ywcxGHl01s93YlsJrKinbExk/y4Xo/F7IhPJI5K30inRWRfzXiGRkZPdFdkGZcFBUrMN1Ti8mNz9TnTMxmLrPqjrxCcaZYcoxfsW5ED2ZHAw0ynZwXdYVz1vMO+ejp8hlrBLH4Rkv8aaSbFfE3BDsiXta1aKUloamUATGSV2gbHvIZHx6+oeU6/0jrt6kJzcZOrpVbV1w1eLIwAOZ5sYW9FZLgaJWXBtzyWXOXVIxsHPvGJZfm2YxHbdUnNwp7rM5cxy3H8wPfBtHYDF+JQ4lPP9pmzdgtcSqntgsXzbLYpYN0fziOhBB4leiCwUHyQiGs5GhupRlCTyaZi7dxXd9BAxHMDhfE47mqdDHjWEmpa/euZkIUBFiqX3c7njmNVaqVZq1wk0BRcDacqMrKgAG1iirMpZJ/Pk1d8fir9n4DXGtoDbF+cIztFeoh6kLyG7rsACgs9KUw/rZodNe4U83dJ5gfYKZSASin876LeFtG7hGxp+GD+ntxLvGluG/NWGdssG9oinoqM42Gy7OrqDkAscpAUX2d53s4mzwx848pZa/1cjDIhCq3bBNuuV2jac2hAiFdDjoct6jCLENdxQcge2Aj1LexQ3wG9O5bLHO+w9gKpMwmLtYXcqaU4YwGLBRJ/rqXFzRgbvd03EmAvgPw2Za4X2D7dzVyciTTR+N3wI8fHlHmwdo5nW4y5zn58ppMEwi1sw1oGsNIeC4jveoy++D1tJlFM4emNQfTkr5xAwGhAHcv3CHOICxPwYSiO7VECxVoWpTXkMpdiBhOwGC1aID+Pf4Jdy3d9yijMlgAvHx2ABw1YLmEucRmhHqHvTgDmQy1mQS8WCaBn9h8T6KuD2kEjN8tEnJZ3v8l0ojNTvHaqGNeNSCcJB1Lrg2n0KAyO8ryIbtS3QY1YzpCMT/oHe2+W/gGKEvjrATfDaZLcyZXoH5w26uD/KizRa+468NJO+BJcykIaY/v0urzCGDfq8LOA3Y825bNpJ/O/

@pjcozzi
Copy link
Contributor

pjcozzi commented Oct 27, 2018

@kring could you spare a few seconds to look at this? I'll also take a quick look now.

@pjcozzi
Copy link
Contributor

pjcozzi commented Oct 27, 2018

Wow love the 1m Zion terrain.

@pjcozzi
Copy link
Contributor

pjcozzi commented Oct 27, 2018

Does anyone know why @cesium-concierge didn't comment on this?

@pjcozzi
Copy link
Contributor

pjcozzi commented Oct 27, 2018

@tfili how did this impact Cesium startup time?

And doesn't this warrant an update to CHANGES.md?

@pjcozzi
Copy link
Contributor

pjcozzi commented Oct 27, 2018

@tfili please submit an issue about backwards compatibility / deprecation as we discussed?

Copy link
Contributor

@pjcozzi pjcozzi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't this need unit tests?

* @constant
* @default 3
*/
BVH: 3
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we sure this shouldn't be spelled out like WATER_MASK? Perhaps similar question for the extension spec if that is relevant.

layer.bvhLoaded.addAvailableTileRange(level, x, y, x, y);
recurseHeights(level, x, y, bvh, 0, maxLevel, provider.availability, layer.availability);
} else {
console.log('Incorrect number of heights in tile Level: %d X: %d Y: %d', level, x, y);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is console.log the right approach compared to an exception?


if (!isNaN(buffer[index])) {
// Minimum height isn't a Nan, so the tile exists
// TODO: Make this more efficient
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We generally don't merge PRs with TODOs. Write an issue or just do it. Is it a bottleneck in practice?

}
//>>includeEnd('debug');

// returns true if we can request vertex normals from the server
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this comment old?

* @memberof CesiumTerrainProvider.prototype
* @type {Boolean}
*/
requestBvh : {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure that we should use the abbreviation in the public API.


var promise = when.resolve();
if (level !== 0) {
var bvhLevels = layer.bvhLevels - 1;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extract out into a helper function given the duplication with the code above?

var numberofIncludedLevels = findNumberOfLevels(numberOfHeights/2);
if (defined(numberofIncludedLevels) && numberofIncludedLevels <= layer.bvhLevels) {
var maxLevel = numberofIncludedLevels + level - 1;
layer.bvhLoaded.addAvailableTileRange(level, x, y, x, y);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TileAvailability is meant to work with tile ranges, not individual tiles. I don't think it's going to go well to use it this way. One problem is that the availability quadtree is going to grow without bound as you move around. Another problem is that the availability quadtree will be deeper than before, so traversing it will take longer. And finally, the computeBestAvailableLevelOverRectangle will probably be crazy slow in some scenarios because it works by subtracting rectangles from the area of interest. If that's done one tile at a time, it's a lot of rectangles. Plus the remaining rectangle list will become huge because each time we subtract a tile from a rectangle we create 1-3 new rectangles.

var level = this.availability._maximumLevel;
this._tilingScheme.positionToTileXY(position, level, scratchTileXY);

return when(loadTileAvailability(this, scratchTileXY.x, scratchTileXY.y, level));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So every time you ask the terrain provider to load availability it will create a promise, and then, if availability isn't yet know for the maximum level at that position, it will do a non-throttled request for the closest BVH node to that level (generating 404s if it doesn't exist). I modifed the Terrain sandcastle example to use your Zion terrain and sample heights around Zion. Pressing the "Sample Most Detailed Everest Terrain" button generates thousands of requests all at once and locks up the browser. Here's the Super Hacky Sandcastle.

var bvh = new Float32Array(buffer, extensionPos, numberOfHeights);
extensionPos += Float32Array.BYTES_PER_ELEMENT * numberOfHeights;

var numberofIncludedLevels = findNumberOfLevels(numberOfHeights/2);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The iterative algorithm in findNumberOfLevels is pretty expensive to do on every tile, and I don't think it's necessary. For the error checking part, just calculate the number of tiles that should be in the BVH at this level, and see if the actual number of tiles is the same. For recurseHeights, you just need to adjust your ranges as you recurse. For the loaded tile, the BVH range is 0 through length-1. Then the number of BVH tiles in each child is n = (length - 1) / 4, the southwest child is 1 through n, southeast child is n + 1 through 2n, northwest is 2n + 1 through 3n, and northeast is 3n + 1 through 4n.

return this._availability.isTileAvailable(level, x, y);
var result = loadTileAvailability(this, x, y, level);

// If we got a result, return it. If it was a promise return false for now.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the fill-tiles branch, returning false here will cause the terrain engine to upsample the tile instead of loading it, and never look back. We should return some sort of sentinel value (null? unfortunately we're already using undefined) to indicate that we don't know yet, rather than returning false.

@kring
Copy link
Member

kring commented Oct 29, 2018

That's all I have. I still wonder if it would be wiser to use some kind of tile-local version of the rectangle ranges we're currently using in layer.json, rather than the BVH extension.

@pjcozzi
Copy link
Contributor

pjcozzi commented Oct 29, 2018

Thanks for the quick review, @kring!

I still wonder if it would be wiser to use some kind of tile-local version of the rectangle ranges we're currently using in layer.json, rather than the BVH extension.

@tfili what do you think of this? Sounds like there are some performance concerns with the current approach.

@tfili
Copy link
Contributor Author

tfili commented Oct 29, 2018

@pjcozzi We have a metadata extension in the works and mostly ready to go. I'm reviewing that today. I can use that send down subtree available ranges, instead of using the BVH extension. That should address most of the performance issues @kring brings up. The good thing here is that most of the code will be reused and actually slightly simplified.

Thanks @kring for the review. I didn't realize the availability bloat with my approach. I have a better understanding of whats going on now.

@pjcozzi
Copy link
Contributor

pjcozzi commented Oct 29, 2018

Cool, good luck @tfili!

@tfili
Copy link
Contributor Author

tfili commented Nov 10, 2018

@kring If you wouldn't mind taking another look it would be appreciated. I abandoned using BVH for availability and instead store the ranges in the tiles every 10 levels. The only thing that has changed in the example is the asset numbers. I also cache promises for availability requests so we don't make a bunch of the same ones.

The one issue with your branch is that we are returning false from getTileDataAvailable. My first thought is that we can just return a promise. Maybe down the road we use the promise, but for now it can just be the value used to signal a retry. I think it probably needs to be made in your branch, because it sounds like you current change would break GoogleEarthEnterpriseTerrainProvider as it currently returns false when it needs to load a parent tile to check availability.

Here is the example:

http://localhost:8080/Apps/Sandcastle/index.html#c=tVZtb+I4EP4rVr9AJWoSJ06cLq2uR3tVqgLblu7tcpxOJjHgNrHZxLyu+t9vQqClqD1dpV1/AcYz88w880xCvY4uM64MaopcTtOrO8SjSOQ5Mhot9TRDUivE81yYvK9KHxxqhWMx5NPEnK2du/pRKHSCKmJ5NR5cRrIjr8L7VWi3ZZiH6pZGzdALHydfvzSvAgxO3+PLx8Lp8Vt6lfbOo0VracvWw8X8unuzbKXfTOcydDpNO213b8ft8xjuRotW2pLXzatJD5K1lnPJ//zDCh/0ot0NSev8nrZXZ/PhDY6GzZvv5mjs9mLX8H++XjysTOBPHdbknWC2WMyH/t3N7ywcxGHl01s93YlsJrKinbExk/y4Xo/F7IhPJI5K30inRWRfzXiGRkZPdFdkGZcFBUrMN1Ti8mNz9TnTMxmLrPqjrxCcaZYcoxfsW5ED2ZHAw0ynZwXdYVz12WFfPR0+Q61gFr8IKXiNNJNivqZgB+TL2latlCQ0tTIAJrJKbYNjXsOj41fUPKdfaZ12daG5uMnVUqvq6wYvFkaAHE+2sLciMlyNkrLgWx5LrvLqkY0Dn/jEsnzbsYjtuqRmYc/1mcuY5Th+4PtgWruBC3Eo8aln+8xZuwUupdR2weJ5NtsUsO4P55FQAo8SPRBYKD5IxLUcjY1UI6jJZFOxdu6rO2gg4rmBwngcd7VOBjxrCTWt/vVMyMIAC5XLbudzx7EqtdKsVS4SaAquhlMVGVlQgDYxxdkUss/nySs+P5X+T8BrDe0Bti/OkZ0iPUQ9SF5D910AhYWeFKafVs2OGneK+bsk8wPsFEpApRT+d1Fvi+hdQrY0fDB/T+4l3jS3jXmrjG2WDW0RT0XG8TBZdnV1ByAWOUiKr7M8b2eTZwa+ceWstX4uRpkQhdZtgm3XKzTtOTQgxKshx8MWdZhFiOu4IGQPbIT6Fnao74DeHctljndYe4HUmYTF2kLu1FKcsYDFAok/19LiZoyN3u4bCbAXQH6bMtcLbJ/uZi7ORJpo/G74keNjyjxYO8ezLcZcZz8+00kC4Ra2YS0DWGmPBcR3PUZf/J42kyim8PTGIHryV04gYDSgjuV7hDnEhQn4MBTH9iiBYi2L0hpymUsxgwlYjBYtkJ/HP8Gu5bs+ZRRmS4CXjw7AgwYslzCXuIxQj9B3JwDzoRazoBeLBNAz+48J9NVB7aCRm2UiTsu732Q60ZkpXjtVjOtGpJOEA6n1wTR6FAZHeV5EN+rboEYsZ0jGJ/2DvTdL/wBFCfz1gJvhNEnu5Er0D04bdfB/FZboNXcdeGknfAkuZSGNsX16XV5hjBt1+FnA7keb8tm0k/lf

@tfili
Copy link
Contributor Author

tfili commented Nov 16, 2018

Also turns out we have a helper that converts a buffer to a string in the most efficient way the browser supports.

…e our built in helper to convert a buffer to a string.
@tfili
Copy link
Contributor Author

tfili commented Nov 16, 2018

In the meantime, did you notice any Cesium load time improvement as we discussed offline awhile back?

The only time we save is the download, decompression and parsing of the layer.json. The biggest tileset we have is CWT which currently has the size of 200KB gzipped and 1.8MB uncompressed. The time improvement isn't very noticeable on my laptop. However, if we end up with a layer.json that is 1.2MB gzipped and 15MB uncompressed then the improvement seems to be about a 1-1.5 seconds on load.

Do you have any performance concerns at this point?

No. It looks like tiles are loading in about the same time as they did previously.

@tfili
Copy link
Contributor Author

tfili commented Nov 16, 2018

Thanks @kring. I think I addressed your concerns. Let me know if you have anything else.

@pjcozzi This should be good for to look at if you have time.

@pjcozzi
Copy link
Contributor

pjcozzi commented Nov 16, 2018

if we end up with a layer.json that is 1.2MB gzipped and 15MB uncompressed then the improvement seems to be about a 1-1.5 seconds on load.

Nice!!!

CHANGES.md Outdated
@@ -9,6 +9,7 @@ Change Log
* Added `Scene.clampToHeightMostDetailed`, an asynchronous version of `Scene.clampToHeight` that uses the maximum level of detail for 3D Tiles.
* Added `Scene.invertClassificationSupported` for checking if invert classification is supported.
* Added `computeLineSegmentLineSegmentIntersection` to `Intersections2D`. [#7228](https://github.com/AnalyticalGraphicsInc/Cesium/pull/7228)
* Added ability to load availability from quantized mesh tiles every few levels instead of upfront in layer.json. This should speed up the load time of large tilesets significantly. [#7196](https://github.com/AnalyticalGraphicsInc/cesium/pull/7196)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be good to be specific here like the examples in the comment and frame it in what the end user experiences - faster load time, less memory usage since this is progressive.

@pjcozzi
Copy link
Contributor

pjcozzi commented Nov 16, 2018

@tfili do you know how code coverage is? Does this need any additional tests?

@pjcozzi
Copy link
Contributor

pjcozzi commented Nov 16, 2018

Is there a terrain dataset you can point me to (offline if needed) to test with?

@pjcozzi
Copy link
Contributor

pjcozzi commented Nov 16, 2018

@kring did you need to look at any of this again? Or can we just merge when ready?

@pjcozzi
Copy link
Contributor

pjcozzi commented Nov 16, 2018

Is there a terrain dataset you can point me to (offline if needed) to test with?

Nevermind, GTOPO + Zion from above is perfect.

Copy link
Contributor

@pjcozzi pjcozzi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tfili just those quick questions from me.

@kring
Copy link
Member

kring commented Nov 16, 2018

The sampleTerrainMostDetailed changes look great. I still think it's dodgy to change getTileDataAvailable to quietly load tiles, though. It's an undocumented side effect and one that can bring an application to its knees by generating heaps of unexpected requests. This function is called often in the render loop, after all. Does it still need to work this way now that sampleTerrainMostDetailed doesn't use it?

@kring
Copy link
Member

kring commented Nov 16, 2018

Looking at the places getTileDataAvailable is used (there are only two), I think just returning undefined when availability is not yet known will work fine. I didn't try it though.

@tfili
Copy link
Contributor Author

tfili commented Nov 16, 2018

@kring In master it sort of looks that way, because the parent's must be loaded before the child. I'll mess around with it an do some more testing. I definitely over complicated the problem. In your branch with LOD skipping, you'll need to take that into account though.

@pjcozzi I'll run coverage, but with the simplifications I put in today, I think loading a terrain with metadata availability should cover it, but I'll verify.

@kring
Copy link
Member

kring commented Nov 16, 2018

In your branch with LOD skipping, you'll need to take that into account though.

Yeah I haven't totally thought through the implications in the fill-tiles branch yet, but you can leave that with me.

@mramato
Copy link
Member

mramato commented Nov 19, 2018

@tfili I think I found an issue with sampling terrain when parent terrain are involved (not sure if it happens in master or not).

  1. Run the below example
  2. Switch to NED 1m
  3. Hit the Sample terrain button

The first time you press it, the samples will all be undeground. The second time it works. This doesn't not happen if you just use the GTOPO terrain so it might only be an issue when parent terrains are used.

http://localhost:8080/Apps/Sandcastle/index.html#c=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

@tfili
Copy link
Contributor Author

tfili commented Nov 19, 2018

@kring returning undefined seems to work well. The one caveat is that if we are using parent terrain, I still need to do a fetch tile for the parent during getTileDataAvailable because we will never load a level 0 tile because the top level terrain will always have it. The single layer common case will do none of that, so I think it's ok.

@mramato I'm looking at your issue now.

@mramato
Copy link
Member

mramato commented Nov 19, 2018

Just those last two comments.

CHANGES.md Outdated Show resolved Hide resolved
Co-Authored-By: tfili <tom@cesium.com>
@mramato
Copy link
Member

mramato commented Nov 19, 2018

Thanks @tfili.

@kring I'm going to merge this so it has some time to stew in master, but if you run into any issues in the fill-tiles branch or if you have any additional feedback, let us know and we'll get it in ASAP. (Same goes for everyone else for that matter).

@mramato mramato merged commit f862c55 into master Nov 19, 2018
@mramato mramato deleted the availability-from-bvh branch November 19, 2018 22:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants