-
Notifications
You must be signed in to change notification settings - Fork 471
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 H3_HEXAGON_MODE to H3_CELL_MODE #495
Conversation
/** H3 index modes */ | ||
#define H3_HEXAGON_MODE 1 | ||
#define H3_CELL_MODE 1 | ||
#define H3_DIRECTEDEDGE_MODE 2 | ||
#define H3_EDGE_MODE 3 | ||
#define H3_VERTEX_MODE 4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should these maybe be exposed in h3api.h
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these returned or accepted by the API anywhere? Definitely if so.
/** H3 index modes */ | ||
#define H3_HEXAGON_MODE 1 | ||
#define H3_CELL_MODE 1 | ||
#define H3_DIRECTEDEDGE_MODE 2 | ||
#define H3_EDGE_MODE 3 | ||
#define H3_VERTEX_MODE 4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these returned or accepted by the API anywhere? Definitely if so.
H3_CELL_MODE
is the more correct name due to pentagons.