spatialdata icon indicating copy to clipboard operation
spatialdata copied to clipboard

Fix dataloader table names

Open LLehner opened this issue 7 months ago • 1 comments

The ImageTilesDataset class cannot be used if the table you want to work with is not called "table", since there are lines where this name is hard-coded, even though the class allows for a table_name to be specified.

An example where this fails is if you follow this tutorial but specify a different table name when creating the dataset.

This PR replaces instances of "table" with table_name.

LLehner avatar Aug 01 '24 14:08 LLehner