if(metres >= 0) return true; else return false;
Can I do this with one calculation? (ignoring the ternary operator)
return (metres >= 0);
return metres >= 0;