-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Raceday 2017 - Fully Autonomous #458
Conversation
still need to include documentation/explanation for it
reformatted docs
…U-Robotics-Club/RoboBuggy into vivaan-newAutonImplementation
@@ -0,0 +1,217 @@ | |||
package listStuff; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@abhinavGirish I think you committed this by accident
@@ -32,6 +32,8 @@ | |||
public static final boolean LOGGING = true; | |||
public static final String LOG_FILE_LOCATION = "logs"; | |||
public static final String LOG_FILE_NAME = "sensors"; | |||
public static final double LATITUDE = 40.441670; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@abhinavGirish let's name this something better like INITIAL_POS_LAT
and INITIAL_POS_LON
|
||
// Initialize Nodes | ||
nodeList.add(new RobobuggyKFLocalizer(10, "Robobuggy KF Localizer", new LocTuple(40.441670, -79.9416362))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@abhinavGirish I forgot about these constants, can you fix this?
private GpsMeasurement target; | ||
|
||
// we only want to look at the next 10 waypoints as possible candidates | ||
private final int wayPointLOOKAHEADMAX = 50; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why isn't this static anymore @abhinavGirish? the naming is all weird now
…U-Robotics-Club/RoboBuggy into vivaan-newAutonImplementation
This is now approved and is ready to merge |
This is effectively the code that ran on Raceday 2017 (save for a few minor details that will be pushed later)