-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more fields to Python IMU example, and add wheel speed one. (#266)
# Changes - Add `DataLoader.convert_to_gps_time` - Add GPS Time and raw data to `extract_imu_data.py` - Add GPS Time and raw data to `extract_wheel_speed_data.py`
- Loading branch information
Showing
3 changed files
with
269 additions
and
44 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import os | ||
import sys | ||
|
||
# Add the Python root directory (fusion-engine-client/python/) to the import search path to enable FusionEngine imports | ||
# if this application is being run directly out of the repository and is not installed as a pip package. | ||
root_dir = os.path.normpath(os.path.join(os.path.dirname(__file__), '..')) | ||
sys.path.insert(0, root_dir) | ||
|
||
from fusion_engine_client.analysis.data_loader import DataLoader | ||
from fusion_engine_client.messages.core import * | ||
from fusion_engine_client.utils import trace as logging | ||
from fusion_engine_client.utils.log import locate_log, DEFAULT_LOG_BASE_DIR | ||
from fusion_engine_client.utils.argument_parser import ArgumentParser | ||
|
||
if __name__ == "__main__": | ||
# Parse arguments. | ||
parser = ArgumentParser(description="""\ | ||
Extract wheel speed data. | ||
""") | ||
parser.add_argument('--log-base-dir', metavar='DIR', default=DEFAULT_LOG_BASE_DIR, | ||
help="The base directory containing FusionEngine logs to be searched if a log pattern is " | ||
"specified.") | ||
parser.add_argument('log', | ||
help="The log to be read. May be one of:\n" | ||
"- The path to a .p1log file or a file containing FusionEngine messages and other " | ||
"content\n" | ||
"- The path to a FusionEngine log directory\n" | ||
"- A pattern matching a FusionEngine log directory under the specified base directory " | ||
"(see find_fusion_engine_log() and --log-base-dir)") | ||
options = parser.parse_args() | ||
|
||
# Configure logging. | ||
logging.basicConfig(format='%(asctime)s - %(levelname)s - %(name)s:%(lineno)d - %(message)s', stream=sys.stdout) | ||
logger = logging.getLogger('point_one.fusion_engine') | ||
logger.setLevel(logging.INFO) | ||
|
||
# Locate the input file and set the output directory. | ||
input_path, output_dir, log_id = locate_log(options.log, return_output_dir=True, return_log_id=True, | ||
log_base_dir=options.log_base_dir) | ||
if input_path is None: | ||
sys.exit(1) | ||
|
||
if log_id is None: | ||
logger.info('Loading %s.' % os.path.basename(input_path)) | ||
else: | ||
logger.info('Loading %s from log %s.' % (os.path.basename(input_path), log_id)) | ||
|
||
# Read satellite data from the file. | ||
reader = DataLoader(input_path) | ||
result = reader.read( | ||
message_types=[ | ||
WheelSpeedOutput, | ||
RawWheelSpeedOutput, | ||
VehicleSpeedOutput, | ||
RawVehicleSpeedOutput], | ||
show_progress=True) | ||
if all(len(d.messages) == 0 for d in result.values()): | ||
logger.warning('No speed data found in log file.') | ||
sys.exit(2) | ||
|
||
wheel_speed_data = result[WheelSpeedOutput.MESSAGE_TYPE] | ||
raw_wheel_speed_data = result[RawWheelSpeedOutput.MESSAGE_TYPE] | ||
vehicle_speed_data = result[WheelSpeedOutput.MESSAGE_TYPE] | ||
raw_vehicle_speed_data = result[RawWheelSpeedOutput.MESSAGE_TYPE] | ||
|
||
# Generate a CSV file for corrected wheel speed data. | ||
if len(wheel_speed_data.messages) != 0: | ||
path = os.path.join(output_dir, 'wheel_speed_data.csv') | ||
logger.info("Generating '%s'." % path) | ||
with open(path, 'w') as f: | ||
f.write('P1 Time (sec), GPS Time (sec), Front Left Speed (m/s), Front Right Speed (m/s), Back Left Speed (m/s), Back Right Speed (m/s), Gear\n') | ||
for message in wheel_speed_data.messages: | ||
gps_time = reader.convert_to_gps_time(message.p1_time) | ||
f.write( | ||
'%.6f, %.6f, %.6f, %.6f, %.6f, %.6f, %d\n' % | ||
(float(message.p1_time), | ||
float(gps_time), | ||
message.front_left_speed_mps, | ||
message.front_right_speed_mps, | ||
message.back_left_speed_mps, | ||
message.back_right_speed_mps, | ||
message.gear)) | ||
else: | ||
logger.info("No corrected wheel speed data.") | ||
|
||
# Generate a CSV file for raw wheel speed data. | ||
if len(raw_wheel_speed_data.messages) != 0: | ||
path = os.path.join(output_dir, 'raw_wheel_speed_data.csv') | ||
logger.info("Generating '%s'." % path) | ||
with open(path, 'w') as f: | ||
f.write('P1 Time (sec), GPS Time (sec), Front Left Speed (m/s), Front Right Speed (m/s), Back Left Speed (m/s), Back Right Speed (m/s), Gear\n') | ||
for message in wheel_speed_data.messages: | ||
gps_time = reader.convert_to_gps_time(message.p1_time) | ||
f.write( | ||
'%.6f, %.6f, %.6f, %.6f, %.6f, %.6f, %d\n' % | ||
(float(message.p1_time), | ||
float(gps_time), | ||
message.front_left_speed_mps, | ||
message.front_right_speed_mps, | ||
message.back_left_speed_mps, | ||
message.back_right_speed_mps, | ||
message.gear)) | ||
else: | ||
logger.info("No raw wheel speed data.") | ||
|
||
# Generate a CSV file for corrected vehicle speed data. | ||
if len(vehicle_speed_data.messages) != 0: | ||
path = os.path.join(output_dir, 'vehicle_speed_data.csv') | ||
logger.info("Generating '%s'." % path) | ||
with open(path, 'w') as f: | ||
f.write('P1 Time (sec), GPS Time (sec), Vehicle Speed (m/s), Gear\n') | ||
for message in vehicle_speed_data.messages: | ||
gps_time = reader.convert_to_gps_time(message.p1_time) | ||
f.write( | ||
'%.6f, %.6f, %.6f, %d\n' % | ||
(float(message.p1_time), | ||
float(gps_time), | ||
message.vehicle_speed_mps, | ||
message.gear)) | ||
else: | ||
logger.info("No corrected vehicle speed data.") | ||
|
||
# Generate a CSV file for raw vehicle speed data. | ||
if len(raw_vehicle_speed_data.messages) != 0: | ||
path = os.path.join(output_dir, 'raw_vehicle_speed_data.csv') | ||
logger.info("Generating '%s'." % path) | ||
with open(path, 'w') as f: | ||
f.write('P1 Time (sec), GPS Time (sec), Vehicle Speed (m/s), Gear\n') | ||
for message in vehicle_speed_data.messages: | ||
gps_time = reader.convert_to_gps_time(message.p1_time) | ||
f.write( | ||
'%.6f, %.6f, %.6f, %d\n' % | ||
(float(message.p1_time), | ||
float(gps_time), | ||
message.vehicle_speed_mps, | ||
message.gear)) | ||
else: | ||
logger.info("No raw vehicle speed data.") | ||
|
||
logger.info("Output stored in '%s'." % os.path.abspath(output_dir)) |
Oops, something went wrong.