Skip to content

IDL Problem Code 97 with alias unknown-kw

Want to disable me? Check out the configuration guide to learn more.

Execution Error

This is a fatal error that prevents IDL from compiling or running code

This problem indicates that you are using a keyword that is unknown. This means it is not in your source code or not in the documentation from IDL and ENVI.

False Positive?

If you got here because of a false error (like the documentation missing information), let us know and we can fix it.

Report the issue here and we will get the extension updated.

Here's an example adding a made up keyword to a function call:

idl
e = envi(/headless, /fake_keyword)
;                   ^^^^^^^^^^^^^ unknown keyword

To fix, remove from your code:

idl
e = envi(/headless)
;        ^^^^^^^^^^ OK!

Licensed under MIT.