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

Change the concatenation format to columns #30

Open
tokee opened this issue Sep 2, 2016 · 0 comments
Open

Change the concatenation format to columns #30

tokee opened this issue Sep 2, 2016 · 0 comments
Assignees

Comments

@tokee
Copy link
Owner

tokee commented Sep 2, 2016

Pyramid data are currently concatenated by appending data from a pyramid to the existing data: a1x1, a2x2, a4x4, ..., a128x128, b1x1, b2x2, b4x4, ..., b128x128 This means that accessing tile data for a given level from two pyramids next to each other, e.g. a2x2 and b2x2 means a lot of skipping through the concatenation file.

Storing the data column-wise a1x1, b1x1, a2x2, b2x2, a4x4, b4x4, ..., a128x128, b128x128 raises the chance of tiles on the same level being near to each other and therefore cached together.

@tokee tokee self-assigned this Sep 2, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant