Orcaflex Rao Import Error Handling

Sub-skill of orcaflex-rao-import: Error Handling.

vamseeachanta Updated

File contents

Error Handling

Error Handling

from digitalmodel.marine_ops.marine_analysis.rao_processor import RAOImportError

try:
    rao_data = processor.import_from_aqwa("data/vessel.lis")
except RAOImportError as e:
    print(f"Import failed: {e}")
    print(f"Suggestions: {e.suggestions}")

except FileNotFoundError:
    print("AQWA file not found")

except ValueError as e:
    print(f"Data format error: {e}")

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/engineering/marine-offshore/orcaflex-rao-import/error-handling commit 022de4fe18

Frequently asked questions

npx skillmds@latest add vamseeachanta/orcaflex-rao-import-error-handling