Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
wiedehopf committed Jul 9, 2021
1 parent 262129a commit dbf11d7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,25 @@ sudo bash /tmp/install.sh /run/combine1090
sudo bash -c "$(wget -nv -O - https://github.com/wiedehopf/tar1090/raw/master/uninstall.sh)"
```

## Using the filters

js regex can be used, some examples:

- Filter by type code:
```
Only A320 and B737 models: A32|B73
Exclude: ^(?!A320)
Exclude multiple: ^(?!(A32|B73))
```
- Filter by type description:
```
Only helicopters: H
Only planes (land): L
Jets or turboprops: J|T
Only piston engined: P
Number of engines: 2
```

## Keyboard Shortcuts


Expand Down

0 comments on commit dbf11d7

Please sign in to comment.