Skip to content

Commit

Permalink
Updated tag_ulog action description
Browse files Browse the repository at this point in the history
  • Loading branch information
BBarash committed Dec 22, 2023
1 parent bb1d463 commit c8f8408
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Actions can range from simple data transformations to more complex algorithms, a

The package currently includes the following Actions:

- `tag_ulog`: Scan .ulg files for any errors and emit tags.
- `ulog_info`: Extract metadata from a .ulg file.
- `ulog_to_csv`: Convert .ulg files to .csv files.
- `px4_flight_review`: Generate interactive plots to analyze PX4 flights.
Expand Down
4 changes: 3 additions & 1 deletion actions/tag_ulog/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# tag_ulog

This Action converts ulg files to csv files
This Action adds tags to a dataset by scanning ULog files (.ulg) for any ERROR messages.

Under the hood, it uses the [pyulog](https://github.com/PX4/pyulog) library.

## Getting started

Expand Down
10 changes: 3 additions & 7 deletions actions/tag_ulog/action.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
{
"name": "tag_ulog",
"short_description": "Add a tag to the dataset if an error is present in the ULog files.",
"description": "This Action extracts logged messages from an ULog file (.ulg) and applies a tag to the dataset if an ERROR is present. Under the hood, it uses the [pyulog](https://github.com/PX4/pyulog) library.",
"short_description": "Add tags to a dataset for any error messages found in ULog files.",
"description": "This Action adds tags to a dataset by scanning ULog files (.ulg) for any ERROR messages. Under the hood, it uses the [pyulog](https://github.com/PX4/pyulog) library.",

"compute_requirements": {
"vCPU": 512,
"memory": 1024,
"storage": 21
},
"tags": [
"px4",
"ulg",
"ulog"
],
"tags": ["px4", "ulg", "ulog"],
"metadata": {
"github_url": "https://github.com/roboto-ai/robologs-px4-actions/tree/main/actions/tag_ulog"
}
Expand Down

0 comments on commit c8f8408

Please sign in to comment.