| Name | Unit | Type | Status | Description |
|---|---|---|---|---|
| Speed | m/s | float | GPS vehicle speed | |
| Yaw | rad | float | Yaw orientation | |
| YawNorth | rad | float | Yaw orientation relative to north | |
| Pitch | rad | float | Pitch orientation | |
| Roll | rad | float | Roll orientation | |
| YawRate | rad/s | float | Yaw rate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'Change the language of your PowerPoint | |
| 'In newer PowerPoint version, you need to first save your PowerPoint with macros enabled. | |
| 'Go to the VIEW tab, select MACROS (at the right), enter a name, e.g. toEnglish, and press create to enter below text. | |
| 'Now you can run the macro from the same menu. | |
| 'Alternatively, but less complete, go to the VIEW tab, select OUTLINE, select all slides (using CTRL-A). | |
| 'Now go to the REVIEW tab, select Language, and change the proofing language. | |
| 'Also make sure that you set the WINDOWS Language (taskbar, bottom right) to the preferred language, otherwise all new text | |
| 'will have the same problem (Press CTRL + WINDOWS + SPACE to switch the Keyboard input language). | |
| Option Explicit | |
| Sub toAUEnglish() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'Change the language of your PowerPoint | |
| 'In newer PowerPoint version, you need to first save your PowerPoint with macros enabled. | |
| 'Go to the VIEW tab, select MACROS (at the right), enter a name, e.g. toEnglish, and press create to enter below text. | |
| 'Now you can run the macro from the same menu. | |
| 'Alternatively, but less complete, go to the VIEW tab, select OUTLINE, select all slides (using CTRL-A). | |
| 'Now go to the REVIEW tab, select Language, and change the proofing language. | |
| 'Also make sure that you set the WINDOWS Language (taskbar, bottom right) to the preferred language, otherwise all new text | |
| 'will have the same problem (Press CTRL + WINDOWS + SPACE to switch the Keyboard input language). | |
| Option Explicit | |
| Sub toEnglish() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // GPX.swift | |
| // Trax | |
| // | |
| // Created by CS193p Instructor. | |
| // Copyright (c) 2015 Stanford University. All rights reserved. | |
| // | |
| // Very simple GPX file parser. | |
| // Only verified to work for CS193p demo purposes! |
A Dashing widget to display the number of passing, ignored and failing tests from a test result file in the JUnit XML format.
The following dependencies are required. Please add them to your dashing gemfile.
gem 'nokogiri'