-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/samplers/gridgeosampler_bounds' …
…into samplers/gridgeosampler_bounds # Conflicts: # torchgeo/samplers/single.py
- Loading branch information
Showing
378 changed files
with
8,420 additions
and
3,652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# Do not change line endings on test data, it will change the MD5 | ||
/tests/data/*/** binary | ||
/tests/data/*/** -text | ||
# Test data generation files are fine though | ||
/tests/data/**/data.py text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: 🐛 Bug report | ||
description: Create a report to help us reproduce and fix a bug | ||
labels: [bug] | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: > | ||
Please provide a clear and concise description of the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
description: > | ||
We can't solve your issue if we can't reproduce it. Please provide a | ||
[minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) | ||
that shows how to reproduce the bug. If the bug requires any additional files to | ||
reproduce, please upload those or provide a download link. Your code should be | ||
runnable and include all relevant imports. | ||
placeholder: | | ||
1. Download any Landsat 8 scene from https://earthexplorer.usgs.gov/ | ||
2. Run the following code to reproduce the error | ||
```python | ||
from torchgeo.datasets import Landsat8 | ||
ds = Landsat8("/path/to/downloads/directory") | ||
... | ||
``` | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Version | ||
description: | | ||
What version of TorchGeo are you using? This can be found using the following code. | ||
```console | ||
$ python | ||
>>> import torchgeo | ||
>>> torchgeo.__version__ | ||
X.Y.Z | ||
``` | ||
If you are using a development release (ends with ".dev0") please also include the specific git commit. | ||
Whenever possible, try to reproduce your issue with the latest commit from `main`. You never know, someone may have already fixed your bug! | ||
placeholder: | | ||
1.2.3.dev0 (e1285e6cc6b65080e82bdbf7de9dea3f647d8b3b) | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: > | ||
Thanks for taking the time to report this bug! TorchGeo is an open-source project | ||
maintained by its users. If you're Python savvy and want to contribute a pull | ||
request to fix this bug, we'll be happy to review it. If not, we'll try to fix it | ||
as long as we can reproduce it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: ❓ Questions | ||
url: https://github.com/microsoft/torchgeo/discussions | ||
about: Ask questions or discuss ideas with other TorchGeo users |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: 📚 Documentation | ||
description: Issues or suggestions related to documentation | ||
labels: [documentation] | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: Issue | ||
description: > | ||
A clear and concise description of what is wrong with or missing from the | ||
documentation. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Fix | ||
description: > | ||
Tell us how we could improve the documentation! | ||
- type: markdown | ||
attributes: | ||
value: > | ||
Thanks for taking the time to improve the documentation! TorchGeo is an | ||
open-source project maintained by its users. If you're rST savvy and want | ||
to contribute a pull request to improve the docs, we'll be happy to review | ||
it. If not, we'll try to fix it when a get a chance. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: 🚀 Feature request | ||
description: Submit a proposal/request for a new TorchGeo feature | ||
labels: [feature] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
TorchGeo is a PyTorch domain library for _geospatial_ data. If the feature you | ||
are suggesting is not specific to working with geospatial data or multispectral | ||
satellite imagery and may be of interest to the broader computer vision | ||
community, consider contributing it to | ||
[torchvision](https://github.com/pytorch/vision) or | ||
[kornia](https://github.com/kornia/kornia) instead. | ||
- type: textarea | ||
attributes: | ||
label: Summary | ||
description: > | ||
A clear and concise summary of your suggestion. | ||
- type: textarea | ||
attributes: | ||
label: Rationale | ||
description: > | ||
Why is this feature important? Is it related to a problem you are experiencing? | ||
- type: textarea | ||
attributes: | ||
label: Implementation | ||
description: > | ||
If you've thought about how to implement this feature, describe your proposed | ||
solution. | ||
- type: textarea | ||
attributes: | ||
label: Alternatives | ||
description: > | ||
Are there any alternatives to the solution you've proposed? | ||
- type: textarea | ||
attributes: | ||
label: Additional information | ||
description: > | ||
Any additional information that might be relevant to the proposed feature. | ||
- type: markdown | ||
attributes: | ||
value: > | ||
Thanks for suggesting this awesome new feature! TorchGeo is an open-source project | ||
maintained by its users. If you're Python savvy and want to contribute a pull | ||
request to implement this feature, we'll be happy to review it. If not, we'll try | ||
to implement your feature when we get a chance. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/requirements" | ||
schedule: | ||
interval: "daily" | ||
# Allow up to 2 open pull requests at a time | ||
open-pull-requests-limit: 2 | ||
ignore: | ||
# radiant-mlhub 0.5+ changed download behavior: | ||
# https://github.com/radiantearth/radiant-mlhub/pull/104 | ||
- dependency-name: "radiant-mlhub" | ||
# segmentation-models-pytorch requires older timm, can't update | ||
- dependency-name: "timm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ documentation: | |
- docs/** | ||
testing: | ||
- tests/** | ||
- .github/workflows/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.