-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
237 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
# Apex | ||
|
||
This document briefly explains Predator Apex: the paid hardware program for Predator. | ||
This document briefly explains Predator Apex: the paid support program for Predator. | ||
|
||
To inquire about any of the services described here, you can contact V0LT using the information found at <https://v0lttech.com/contact.php>. | ||
|
||
|
||
## Installation Services | ||
|
||
Apex installation services can get you a working Predator ALPR/dashcam system with the least amount of effort. As long as you're within driving distance of V0LT (in Chesterland Ohio), you can have your Predator system assembled, configured, and installed by V0LT directly. | ||
|
||
|
||
## Hardware Services | ||
|
||
If you're a technical user who wants to build a customized Predator system, but you want a starting point to build from, hardware services might be a great option. Apex hardware services allow you to purchase pre-assembled kits that contain all of the basic components you'll need to do your own installation. These kits contain detailed installation instructions, and can be customized based on your preferences and use-case. | ||
If you're a technical user who wants to build a customized Predator system, but you want a starting point to build from, hardware services might be a great option. Apex hardware services allow you to purchase pre-assembled kits that contain all of the basic components you'll need to do your own installation. These kits contain detailed installation instructions, and can be customized based on your preferences and use-case. To learn more, see <https://v0lttech.com/products/predatorowl.php> | ||
|
||
|
||
## Support Services | ||
|
||
Support services allow you to build your own Predator system from scratch with the guidance of V0LT. Support services include extensive, start-to-finish support over email, phone, or instant messaging. Whether you want to build a basic Predator system, or you have a highly specific use-case, support services can be a very affordable way to get everything set-up how you want it. | ||
Support services allow you to build your own Predator system from scratch with the guidance of V0LT. Support services include extensive, start-to-finish support over email, phone, or instant messaging. Whether you want to build a basic Predator system, or you have a highly specific use-case, support services can be a very affordable way to get everything set-up exactly how you want it. |
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
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
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,80 @@ | ||
# Alerts | ||
|
||
This document explains the format used by Predator alert databases. | ||
|
||
## Overview | ||
|
||
Predator is capable of loading alert lists from both local files and remote sources. Alert lists come in the form of a JSON dictionary. | ||
|
||
Here is a break-down of each value in an alert database: | ||
|
||
- `rule`: Each top-level key in the alert database should be a license plate rule that will trigger the alert. | ||
- `name`: This is an optional value that contains a human-friendly name for this alert. | ||
- `description`: This is an optional value that contains a brief human-friendly description of this alert. | ||
- `author`: This is an optional value that contains the author name associated with this alert. | ||
- `source`: This is an optional value that describes where the information for this alert was sourced from. | ||
- `vehicle`: This is an optional value that contains information about the vehicle this alert is associated with. | ||
- `color`: This is an optional sub-value for the vehicle color (all lowercase, human-friendly name). | ||
- `make`: This is an optional sub-value for the vehicle manufacturer. | ||
- `model`: This is an optional sub-value for the vehicle model. | ||
- `year`: This is an optional sub-value for the vehicle year. This value should be an integer. | ||
|
||
|
||
## Examples | ||
|
||
### Bare Minimum | ||
|
||
This is an example of an alert database with the bare minimum information. This database will trigger alerts for the following plates: AAA1111, BBB2222, CCC3333. | ||
|
||
```JSON | ||
{ | ||
"AAA1111": {} | ||
"BBB2222": {} | ||
"CCC3333": {} | ||
} | ||
``` | ||
|
||
### Full Information | ||
|
||
This is an example of an alert database with all supported information included. This database will trigger alerts for the following plates: AAA1111, XYZ1234, ABC1234 | ||
|
||
```JSON | ||
{ | ||
"AAA1111": { | ||
"name": "Test Alert", | ||
"description": "A testing alert to verify Predator's alert functionality", | ||
"author": "V0LT", | ||
"source": "V0LT", | ||
"vehicle": { | ||
"color": "red", | ||
"make": "Toyota", | ||
"model": "Corolla", | ||
"year": 2021 | ||
} | ||
}, | ||
"XYZ1234": { | ||
"name": "AMBER Alert", | ||
"description": "A testing alert that takes the form of an AMBER alert", | ||
"author": "V0LT", | ||
"source": "Ohio State Highway Patrol", | ||
"vehicle": { | ||
"color": "black", | ||
"make": "Subaru", | ||
"model": "Impreza", | ||
"year": 2016 | ||
} | ||
}, | ||
"ABC1234": { | ||
"name": "Test Alert", | ||
"description": "A testing alert to verify Predator's alert functionality", | ||
"author": "V0LT", | ||
"source": "V0LT", | ||
"vehicle": { | ||
"color": "blue", | ||
"make": "Honda", | ||
"model": "Accord", | ||
"year": 2011 | ||
} | ||
} | ||
} | ||
``` |
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
Oops, something went wrong.