Non-continous GeoDataModules/GeoDatasets #2292
Replies: 1 comment 3 replies
-
You should not need to define your own
This is actually expected behavior for
GeoDatasets do not need to be continuous. You can use either GeoDataset or NonGeoDataset depending on whether you need to combine your dataset with another and depending on how large the patches are. |
Beta Was this translation helpful? Give feedback.
-
I am trying to set up a
GeoDataModule
where the images/labels are scattered and are not spatially continous.I defined
__get_item__
using rasterio by querying the individual images manually depending on the queryBoundingBox
. However, when doing a test run, the queries go beyond the the individual tiles and I end up gettingAm I correct with the conclusion that GeoDataModules need to be continous? So in case I have a patched dataset I would define it as
NonGeoDataset
although the individual images do have spatial information?Beta Was this translation helpful? Give feedback.
All reactions