-
Notifications
You must be signed in to change notification settings - Fork 12
fix groups height issue #1 #2
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
Conversation
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.
Approved with some comments
Maybe note that the add_groups and remove_groups functions are one time things? Should we even merge them? If you think they may come in handy, it might be worth making them more re-usable?
@@ -254,25 +262,31 @@ def get_vertical_slice(geomcol, zoom): | |||
pixel = lat_long_zoom_to_pixel_coords(ymax, xmin, zoom) | |||
tile = pixel_coords_to_tile_address(pixel.x, pixel.y) | |||
TileX_left = tile.x | |||
TileY_top = tile.y | |||
|
|||
# this is a fix for incorrect groups height |
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.
Can you be a bit more precise around what the fix is? What is happening?
# This is the 1st commit message: Add Travis.ci and docker # The commit message #2 will be skipped: # Add gdal # The commit message #3 will be skipped: # Move sudo # The commit message #4 will be skipped: # No venv # The commit message #5 will be skipped: # Re-add sudo # The commit message #6 will be skipped: # libgdal dev # The commit message #7 will be skipped: # Add python3 dev # The commit message #8 will be skipped: # Add gdal-bin # The commit message #9 will be skipped: # Add Python devel # The commit message #10 will be skipped: # Update # The commit message #1 will be skipped: # Add libgcc # The commit message #2 will be skipped: # Try force imports # The commit message #3 will be skipped: # Add test # The commit message #4 will be skipped: # Test other naming # The commit message #5 will be skipped: # Add export # The commit message #6 will be skipped: # Move export # The commit message #7 will be skipped: # Add setup # The commit message #8 will be skipped: # Add init files
fix groups height issue #1
add test for group and task creation for tile classification project …
The grouping algorithm was adjusted.
We avoid calculating the Tile coordinates from the geometries all the time, and just do it initially. Afterwards, tile coordinates are derived from the coordinates of the previous group.