-
Notifications
You must be signed in to change notification settings - Fork 388
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
0.5.0 release #1604
0.5.0 release #1604
Conversation
@@ -93,7 +93,7 @@ def __init__( | |||
""" | |||
# This is a rough estimate of how large of a patch we will need to sample in | |||
# EPSG:3857 in order to guarantee a large enough patch in the local CRS. | |||
self.original_patch_size = patch_size * 2 | |||
self.original_patch_size = patch_size * 3 |
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.
Just a heads up @calebrob6. Not sure what changed since the last release that made this necessary for the test to pass. We should really convert this to a normal RasterDataset.
@@ -189,6 +189,7 @@ | |||
"outputs": [], | |||
"source": [ | |||
"chesapeake_root = os.path.join(tempfile.gettempdir(), \"chesapeake\")\n", | |||
"os.makedirs(chesapeake_root, exist_ok=True)\n", |
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.
This is actually a bug in TorchGeo: #1605. Pretty minor so I don't think it's worth holding up the release for.
#1520