79831020

Date: 2025-11-26 18:04:39
Score: 1
Natty:
Report link

@KANISHK KHANDELWAL I have not heard from you in a few days. Perhaps you have lost interest?

So, I will continue using my own navigation code.

Let me know when you would like to integrate your navigation code with the test simulator.

Have you decided on the route?

I am planning on passing south of Es Penjats, following the usual route. Here is the waypoint code

void cMRSsimNavInterface::init()
{
    myWaypoints.clear();

    // start at mouth of Port Ibiza
    myWaypoints.push_back( theSimulation.getLocIbiza() );
    
    // south of es Penjats
    myWaypoints.emplace_back( 38.83, 1.42 );

    // west of Ibiza 
    myWaypoints.emplace_back( 38.83, 1.10 );

    // head straight for Valencia
    myWaypoints.push_back( theSimulation.getLocValencia());

    myWaypointCurrent = 1;
}

However, since your boat is so small, perhaps you will want to save some distance by passing north of Es Penjats?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @KANISHK
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: ravenspoint