Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
df-aggregator
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Oleksandr Barabash
df-aggregator
Commits
188a916b
Commit
188a916b
authored
Nov 17, 2020
by
Corey Koval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Plotting adjustments
parent
2c49f40d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
5 deletions
+16
-5
README.md
README.md
+14
-3
df-aggregator.py
df-aggregator.py
+2
-2
No files found.
README.md
View file @
188a916b
...
...
@@ -7,13 +7,13 @@
-
[
python-geojson
](
https://python-geojson.readthedocs.io/en/latest/
)
-
[
czml3
](
https://github.com/poliastro/czml3
)
-
As of this writing, the version from pip does not support ellipses. Please use the version from GitHub.
-
[
geojson
](
https://pypi.org/project/geojson/
)
## Other things you'll need:
-
[
Cesium Ion Token
](
https://cesium.com/docs/tutorials/quick-start/
)
-
Create a single line file named
```accesstoken.txt```
-
[
Extended XML KerberosSDR Software
](
https://github.com/ckoval7/kerberossdr
)
-
This is available for both Qt4 (original version) and Qt5 (Ubuntu 20.04+). Just check out the appropriate branch.

## Usage: df-aggregator.py [options]
...
...
@@ -71,5 +71,16 @@
Once the program is running, browse to 127.0.0.1:8080 or whatever IP/Port Number you specified.
## Credits
## Map Colors:
-
A red ellipse represents the significant majority of the intersections in a particular cluster.
It makes up the full area where the transmitter is most certainly located.
-
The large green dot at the center of the ellipse is the likely location of the transmitter.
It is simply computed as the mean of all intersections in that cluster.
-
The smaller dots, if turned on vary in color from red to green. These dots are the individual
intersections. The color represents the age relative to the full data set. Red is older, green is
newer. This is very helpful for following moving targets.
### Attributions
Tower and car icons made by Freepik from www.flaticon.com
df-aggregator.py
View file @
188a916b
...
...
@@ -289,11 +289,11 @@ def write_czml(best_point, all_the_points, ellipsedata):
scaled_time
=
minmax_scale
(
all_the_points
[:,
-
1
])
all_the_points
=
np
.
column_stack
((
all_the_points
,
scaled_time
))
for
x
in
all_the_points
:
rgb
=
hsvtorgb
(
x
[
-
1
]
/
3
,
0.
8
,
0.8
)
rgb
=
hsvtorgb
(
x
[
-
1
]
/
3
,
0.
9
,
0.9
)
color_property
=
{
"color"
:{
"rgba"
:
[
*
rgb
,
255
]}}
all_point_packets
.
append
(
Packet
(
id
=
str
(
x
[
1
])
+
", "
+
str
(
x
[
0
]),
point
=
{
**
point_properties
,
**
color_property
},
position
=
{
"cartographicDegrees"
:
[
x
[
0
],
x
[
1
],
1
0
]},
position
=
{
"cartographicDegrees"
:
[
x
[
0
],
x
[
1
],
2
0
]},
))
if
len
(
best_point
)
>
0
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment