You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running a case.py script (such as barbaggio.py or ballarat.py for example) importing some modules from the preprocessing folder might not work.
Particularly when using the file learnFuelTifPng one has to modify line 27:
old code: from . import get_WSEN_LBRT_ZS_From_Pgd, arrayToPng, create_kml
working code: from preprocessing.ffToGeoJson import get_WSEN_LBRT_ZS_From_Pgd, arrayToPng, create_kml
The text was updated successfully, but these errors were encountered:
When running a case.py script (such as barbaggio.py or ballarat.py for example) importing some modules from the preprocessing folder might not work.
Particularly when using the file learnFuelTifPng one has to modify line 27:
old code:
from . import get_WSEN_LBRT_ZS_From_Pgd, arrayToPng, create_kml
working code:
from preprocessing.ffToGeoJson import get_WSEN_LBRT_ZS_From_Pgd, arrayToPng, create_kml
The text was updated successfully, but these errors were encountered: