``` import searoute as sr origin = [121.545763, 31.254191] destination = [130.392684, 33.628909] route = sr.searoute( origin, destination, units="naut", append_orig_dest=True, include_ports=False, restrictions=['northwest'], speed_knot=1 ) print(route) ``` Expected Result A maritime route that stays at sea.
Expected Result
A maritime route that stays at sea.