ValueError: Could not find been_jeffries. Check the spelling or classification not defined in the library
Closed this issue · 4 comments
lmpjongen commented
This code gives an error. Can you fix this? Or am I doing something wrong? Thank you!
from pygef.gef import ParseGEF
File = ".GEF"
gef = ParseGEF(File)
gef.plot(classification='been_jeffries',water_level_NAP= -1,min_thickness= 0.2,show=True)
tversteeg commented
What is the pygef version you are using? Can you also post the error?
lmpjongen commented
Version: '0.4'
The above script returns this error for me:
"ValueError: Could not find been_jeffries. Check the spelling or classification not defined in the library"
tversteeg commented
Did you install it with pip install pygef
or pip install git+https://github.com/ritchie46/pygef.git
? If it's the latter that might be the case why it's not working, you should install it with the former.
martinapippi commented
This code gives an error. Can you fix this? Or am I doing something wrong? Thank you!
from pygef.gef import ParseGEF File = ".GEF" gef = ParseGEF(File) gef.plot(classification='been_jeffries',water_level_NAP= -1,min_thickness= 0.2,show=True)
You have a spelling error, you should use "been_jefferies" not "been_jeffries"