-
Notifications
You must be signed in to change notification settings - Fork 14
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
Listing all cells and resolutions #2
Comments
Hi Andrea - thanks for your interest in OpenEAGGR. The base cell resolution in OpenEAGGR is at the level of the icosahedron that models the globe - i.e. each face is a base cell. The first two digits of any cell id indicates the face of the icosahedron that the cell is located on, and the base cell is just the face id. So for the icosahedron there are 20 base cells. |
Thanks for the follow up. So for the ISEA4T model the base cells are named "00" to "19" right? What about the ISEA3H model instead? The names seem strange, for example "07000,0" seems to be a base cell, and "[07010,0, 0701-1,0, 07010,1, 07011,0, 07010,-1, 0701-1,1, 0701-1,-1]" its children (as returned by the getCellChildren method). Is this nomenclature documented anywhere? |
Yes you are correct. the base cells for ISEA4T are "00" to "19". For ISEA3H the indexing uses an offset system rather than a hierarchical system so the first two digits are again the face of the icosahedron 0 to 19, the next two digits are the resolution level - "00" for the base level and then a coordinate of the cell on the face which will be "0,0" for the base cells. The child cells of the base cell have resolution level "01" and offsets around the central hexagon. The coordinate systems are described in the Literature Review and Protoype Evaluation document in section 8. |
Is there any way to list all cells for the base resolution level (the most coarse one, the base cells)?
Is there a way to get a list of of available resolutions?
The text was updated successfully, but these errors were encountered: