Added support for upliks and setup wizzard

This commit is contained in:
Lukáš Plevač 2024-08-06 08:29:32 +02:00
parent f26bd3e091
commit d0359b3ac7
21 changed files with 1536 additions and 366 deletions

View File

@ -50,4 +50,37 @@
$fob->commit();
}
}
function setup($params) {
$system = new \DAL\system();
// detect if is seeded
if (!$system->find("name", "seeds")) {
//include seeds and seed DB
include __DIR__ . "/../seeds.php";
$params["plans"] = json_decode($params["plans"]);
$params["params"] = json_decode($params["params"]);
$params["lat"] = floatval($params["lat"]);
$params["lon"] = floatval($params["lon"]);
$params["alt"] = floatval($params["alt"]);
$data = seed($params);
$system->name->set("seeds");
$system->value->set("true");
$system->commit();
//login as user
$container = new \wsos\structs\container();
$auth = $container->get("auth");
$auth->login($params["user"], $params["pass"]);
return ["status" => true, "gsId" => $data["gs"], "apikey" => $data["apiKey"]];
}
return ["status" => false];
}

View File

@ -17,6 +17,7 @@
include_once(__DIR__ . "/crons.php");
include_once(__DIR__ . "/transmitters.php");
include_once(__DIR__ . "/receivers.php");
include_once(__DIR__ . "/uplinks.php");
//init API
$api->serve($router->getArgs());

View File

@ -54,7 +54,12 @@
"transmitter" => [
"centerFrequency" => $plan->transmitter->get()->centerFrequency->get(),
"bandwidth" => $plan->transmitter->get()->bandwidth->get()
"bandwidth" => $plan->transmitter->get()->bandwidth->get(),
"modulation" => $plan->transmitter->get()->modulation->get()->name->get(),
"sf" => $plan->transmitter->get()->sf->get(),
"codingRate" => $plan->transmitter->get()->codingRate->get(),
"syncWord" => $plan->transmitter->get()->syncWord->get(),
"preambleLength" => $plan->transmitter->get()->preambleLength->get()
],
"receiver" => [
@ -64,7 +69,10 @@
"proccessPipe" => $plan->transmitter->get()->processPipe->get()->pipe->get(),
"start" => $plan->start->get(),
"end" => $plan->end->get()
"end" => $plan->end->get(),
"startEpoch" => $plan->start->value,
"endEpoch" => $plan->end->value
]);
}
@ -162,6 +170,61 @@
return ["status" => true];
}
function addPacket($params) {
if (is_null($params["data"]) || is_null($params["id"])) {
print_r($_POST);
return ["status" => "data or observation ID is not set"];
}
$adir = __DIR__ . "/../ARTEFACTS/" . $params["id"];
mkdir($adir, 0777, true);
$packets = [];
// check if packets file alredy exists
if (file_exists($adir . "/packets.json")) {
$packets = json_decode(file_get_contents($adir . "/packets.json"), true);
} else {
$obs = new \DAL\observation();
$obs->id->set($params["id"]);
$obs->fetch();
//get current artefacts
$artefacts = $obs->artefacts->get();
$artefacts[] = "/ARTEFACTS/{$params['id']}/packets.json";
//done artefact save
$obs->artefacts->set($artefacts);
$obs->commit();
}
$packet = [
"time" => time(),
"data" => $params["data"]
];
if (!is_null($params["snr"])) {
$packet["snr"] = $params["snr"];
}
if (!is_null($params["ferror"])) {
$packet["ferror"] = $params["ferror"];
}
if (!is_null($params["rssi"])) {
$packet["rssi"] = $params["rssi"];
}
array_push($packets, $packet);
// write back to file
file_put_contents($adir . "/packets.json", json_encode($packets));
return ["status" => true];
}
function addArtefacts($params) {
if (is_null($params["fname"]) || is_null($params["id"])) {

View File

@ -92,4 +92,15 @@
$myStation->commit();
return ["id" => $myStation->id->get()];
}
function amIActive($params) {
$station = new \DAL\station();
$station->find("apiKey", $params["apiKey"]);
return [
"status" => $station->lastSeen->delta() < 3600,
"delta" => $station->lastSeen->delta()
];
}

View File

@ -41,6 +41,15 @@
$transmitter->antenna->set($params["antenna"]);
$transmitter->target->set($params["target"]);
if ($params["lora"] == "true") {
$transmitter->sf ->set($params["sf"]);
$transmitter->codingRate ->set($params["codingRate"]);
$transmitter->syncWord ->set($params["syncWord"]);
$transmitter->preambleLength->set($params["preambleLength"]);
}
$transmitter->commit();
return [

112
web/API/uplinks.php Normal file
View File

@ -0,0 +1,112 @@
<?php
namespace API\uplink;
function plan($params) {
//first get trasmitter and receiver
$transmitter = new \DAL\receiver(new \wsos\database\types\uuid($params["transmitter"]));
$receiver = new \DAL\transmitter(new \wsos\database\types\uuid($params["receiver"]));
$receiver->fetch();
$transmitter->fetch();
$plan = new \DAL\uplink();
$plan->status ->set("planed");
$plan->locator ->set($receiver->target->get()->locator->get());
$plan->transmitter->set($transmitter);
$plan->receiver ->set($receiver);
$plan->start ->set($params["start"]);
$plan->data ->set($params["data"]);
$plan->delay ->set($params["delay"]);
$plan->commit();
return ["status" => true, "id" => $plan->id->get()];
}
function forStation($params) {
//get GS and set last seen
$station = new \DAL\station();
if (!$station->find("apiKey", $params["key"])) return ["status" => "bad api key"];
$station->lastSeen->now();
$station->commit();
//get all jobs for ground station
$table = new \wsos\database\core\table(\DAL\uplink::class);
$dummyObservation = new \DAL\uplink();
$dummyObservation->status->set("planed");
$planed = $table->query("(status == ?) && (transmitter.station.id == ?)", [$dummyObservation->status->value, $station->id->get()]);
$jobs = new \wsos\structs\vector();
foreach ($planed->values as $plan) {
$jobs->append([
"id" => $plan->id->get(),
"target" => [
"id" => $plan->receiver->get()->target->get()->id->get(),
"name" => $plan->receiver->get()->target->get()->name->get(),
"locator" => $plan->locator->get()
],
"receiver" => [
"centerFrequency" => $plan->receiver->get()->centerFrequency->get(),
"bandwidth" => $plan->receiver->get()->bandwidth->get(),
"modulation" => $plan->receiver->get()->modulation->get()->name->get(),
"sf" => $plan->receiver->get()->sf->get(),
"codingRate" => $plan->receiver->get()->codingRate->get(),
"syncWord" => $plan->receiver->get()->syncWord->get(),
"preambleLength" => $plan->receiver->get()->preambleLength->get()
],
"transmitter" => [
"params" => $plan->transmitter->get()->params->get()
],
"data" => $plan->data->get(),
"start" => $plan->start->get(),
"end" => $plan->end->get(),
"delay" => $plan->delay->get(),
"startEpoch" => $plan->start->value,
"endEpoch" => $plan->end->value
]);
}
return $jobs->values;
}
function fail($params) {
if (is_null($params["id"])) {
return ["status" => "observation ID is not set"];
}
$obs = new \DAL\uplink();
$obs->id->set($params["id"]);
$obs->fetch();
$obs->start->value = time();
$obs->status->set("fail");
$obs->commit();
return ["status" => true];
}
function done($params) {
if (is_null($params["id"])) {
return ["status" => "observation ID is not set"];
}
$obs = new \DAL\uplink();
$obs->id->set($params["id"]);
$obs->fetch();
$obs->start->value = time();
$obs->status->set("done");
$obs->commit();
return ["status" => true];
}

View File

@ -0,0 +1,8 @@
<?php
$container = new \wsos\structs\container();
$auth = $container->get("auth");
$auth->logout();
header('Location: /');
?>

14
web/CONTROLLERS/setup.php Normal file
View File

@ -0,0 +1,14 @@
<?php
$container = new \wsos\structs\container();
$templates = $container->get("templateLoader");
$context = $container->get("context");
$protocol = (!empty($_SERVER['HTTPS']) && (strtolower($_SERVER['HTTPS']) == 'on' || $_SERVER['HTTPS'] == '1')) ? 'https://' : 'http://';
$port = $_SERVER['SERVER_PORT'] ? ':'.$_SERVER['SERVER_PORT'] : '';
$context["apiHost"] = $protocol . $_SERVER['SERVER_NAME'] . $port;
$templates->load("setup.html");
$templates->render($context);
$templates->show();

View File

@ -0,0 +1,17 @@
<?php
$container = new \wsos\structs\container();
$templates = $container->get("templateLoader");
$context = $container->get("context");
$auth = $container->get("auth");
// to show this page user must be logined
$auth->requireLogin();
$context["uplinks"] = (new \wsos\database\core\table(\DAL\uplink::class))->query("", [], "DESC start")->values;
$context["transmitters"] = new \wsos\database\core\table(\DAL\receiver::class);
$context["receivers"] = new \wsos\database\core\table(\DAL\transmitter::class);
$templates->load("uplinks.html");
$templates->render($context);
$templates->show();

View File

@ -4,12 +4,16 @@
class transmitter extends \wsos\database\core\row {
public \wsos\database\types\reference $target; // object what hame this transmitter
public \wsos\database\types\reference $antenna; // YAGI, DISH, ....
public \wsos\database\types\reference $modulation; // BPSK, QPSK, AM, FM, ....
public \wsos\database\types\reference $modulation; // BPSK, QPSK, AM, FM, LORA, ....
public \wsos\database\types\reference $dataType; // MSR, TELEMETRY, ....
public \wsos\database\types\reference $processPipe; // process pipe for transmitter
public \wsos\database\types\integer $centerFrequency; // in Hz
public \wsos\database\types\integer $bandwidth; // in Hz
public \wsos\database\types\integer $priority; // priority of transmitter
public \wsos\database\types\integer $sf; // spreading factor for LORA
public \wsos\database\types\integer $codingRate; // coding rate
public \wsos\database\types\text $syncWord; // sync word
public \wsos\database\types\integer $preambleLength; // preamble length for LORA
function __construct(
$id = null,
@ -20,7 +24,11 @@
$centerFrequency = 0,
$bandwidth = 0,
$priority = 0,
$processPipe = null
$processPipe = null,
$sf = 7,
$codingRate = 5,
$syncWord = "34",
$preambleLength = 8
) {
parent::__construct($id);
$this->target = new \wsos\database\types\reference($target, \DAL\target::class);
@ -32,6 +40,11 @@
$this->centerFrequency = new \wsos\database\types\integer($centerFrequency);
$this->bandwidth = new \wsos\database\types\integer($bandwidth);
$this->priority = new \wsos\database\types\integer($priority);
$this->sf = new \wsos\database\types\integer($sf);
$this->codingRate = new \wsos\database\types\integer($codingRate);
$this->syncWord = new \wsos\database\types\text($syncWord);
$this->preambleLength = new \wsos\database\types\integer($preambleLength);
}
}
?>

42
web/DAL/uplink.php Normal file
View File

@ -0,0 +1,42 @@
<?php
namespace DAL;
class uplink extends \wsos\database\core\row {
public \wsos\database\types\reference $transmitter; // observed trasmitter
public \wsos\database\types\reference $receiver; // used reciver
public \wsos\database\types\enum $status; // fail, planed, ...
public \wsos\database\types\text $data; // hexdump of data to upload
public \wsos\database\types\json $locator; // TLE, GPS or URL locator if avaible
public \wsos\database\types\timestamp $start; // start datetime
public \wsos\database\types\timestamp $end; // end datetimr
public \wsos\database\types\integer $delay; // uplink after downlink delay time
function __construct(
$id = null,
$transmitter = null,
$receiver = null,
$status = "",
$data = "",
$locator = ["tle" => null, "gps" => null, "url" => null],
$start = "2000-01-01 00:10:00",
$end = "2000-01-01 00:10:00",
$delay = 0
) {
parent::__construct($id);
$this->transmitter = new \wsos\database\types\reference($transmitter, \DAL\receiver::class);
$this->receiver = new \wsos\database\types\reference($receiver, \DAL\transmitter::class);
$this->status = new \wsos\database\types\enum($status, [
"fail",
"done",
"planed",
"unknow"
], "unknow");
$this->data = new \wsos\database\types\text($data);
$this->locator = new \wsos\database\types\json($locator);
$this->start = new \wsos\database\types\timestamp($start);
$this->end = new \wsos\database\types\timestamp($end);
$this->delay = new \wsos\database\types\integer($delay);
}
}
?>

View File

@ -0,0 +1,15 @@
<tr onclick="location.href = '/observation/{% BIND item.id %}'">
<td>{% BIND item.transmitter.station.name %}</td>
<td>{% BIND item.receiver.target.name %}</td>
<td>{% BIND item.receiver.modulation.name %}</td>
<td>{% BIND item.receiver.dataType.name %}</td>
<td>{% BIND item.receiver.centerFrequency %}Hz</td>
<td>
<span class="badge
{% IF item.status==fail USE bg-danger %}
{% IF item.status==done USE bg-success %}
{% IF item.status==planed USE bg-primary %}
me-1"></span> {% BIND item.status %}
</td>
<td>{% BIND item.start %}</td>
</tr>

View File

@ -104,6 +104,22 @@
<div class="datagrid-title">Receiver gain</div>
<div class="datagrid-content">{% BIND observation.receiver.gain %}</div>
</div>
<div class="datagrid-item" style="{% IF observation.transmitter.modulation.name!=LORA USE display:none; %}">
<div class="datagrid-title">Spreading Factor</div>
<div class="datagrid-content">{% BIND observation.transmitter.sf %}</div>
</div>
<div class="datagrid-item" style="{% IF observation.transmitter.modulation.name!=LORA USE display:none; %}">
<div class="datagrid-title">Coding Rate</div>
<div class="datagrid-content">{% BIND observation.transmitter.codingRate %}</div>
</div>
<div class="datagrid-item" style="{% IF observation.transmitter.modulation.name!=LORA USE display:none; %}">
<div class="datagrid-title">Sync Word</div>
<div class="datagrid-content">0x{% BIND observation.transmitter.syncWord %}</div>
</div>
<div class="datagrid-item" style="{% IF observation.transmitter.modulation.name!=LORA USE display:none; %}">
<div class="datagrid-title">Preamble Length</div>
<div class="datagrid-content">{% BIND observation.transmitter.preambleLength %}</div>
</div>
</div>
</div>
</div>
@ -253,6 +269,8 @@
var json = request.responseText;
console.log(json);
var options = {
fontFamily: '"Fira Mono", monospace',
colors: ['gray', '#090', '#c00', 'purple', '#00c', '#ccc', '#333', 'yellow', 'rgb(240,240,240)']
@ -286,4 +304,4 @@
</div>
</body>
</html>
</html>

264
web/VIEWS/setup.html Normal file
View File

@ -0,0 +1,264 @@
<!doctype html>
<html lang="en">
{% INCLUDE layout/head.html %}
<body class=" d-flex flex-column">
<div class="page page-center">
<div class="container container-tight py-4">
<div class="text-center mb-4">
<a href="." class="navbar-brand navbar-brand-autodark">
<img src="/static/icons/antenna.svg" width="110" height="32" alt="{% BIND appName %}" class="navbar-brand-image">
</a>
</div>
<div class="card card-md">
<div id="welcome" style="display: block;">
<div class="card-body text-center py-4 p-sm-5">
<svg class="img mb-n2" xmlns="http://www.w3.org/2000/svg" height="200" fill="none" viewBox="0 0 800 600">
<style>
:where(.theme-dark, [data-bs-theme="dark"]) .tblr-illustrations-boy-girl-a { fill: black; opacity: 0.07; } :where(.theme-dark, [data-bs-theme="dark"]) .tblr-illustrations-boy-girl-b { fill: #1A2030; } :where(.theme-dark, [data-bs-theme="dark"]) .tblr-illustrations-boy-girl-c { fill: #454C5E; }
@media (prefers-color-scheme: dark) { .tblr-illustrations-boy-girl-a { fill: black; opacity: 0.07; } .tblr-illustrations-boy-girl-b { fill: #1A2030; } .tblr-illustrations-boy-girl-c { fill: #454C5E; } }
</style>
<path d="M658.744 282.266C658.744 325.973 612.535 357.656 592.114 392.937C571.053 429.346 565.991 484.976 529.581 506.037C494.299 526.458 444.065 503.618 400.367 503.618C356.669 503.618 306.435 526.458 271.153 506.037C234.753 484.976 229.681 429.346 208.62 392.937C188.209 357.656 142 325.953 142 282.266C142 238.579 188.209 206.865 208.62 171.584C229.681 135.185 234.753 79.5143 271.153 58.4839C306.435 38.0736 356.669 60.9031 400.367 60.9031C444.065 60.9031 494.299 38.0736 529.581 58.4839C565.991 79.5448 571.053 135.185 592.114 171.584C612.535 206.865 658.744 238.568 658.744 282.266Z" fill="#F7F8FC" class="tblr-illustrations-boy-girl-a"></path>
<path d="M397.248 550C534.459 550 645.689 545.836 645.689 540.7C645.689 535.564 534.459 531.401 397.248 531.401C260.038 531.401 148.808 535.564 148.808 540.7C148.808 545.836 260.038 550 397.248 550Z" fill="#A6A9B3" class="tblr-illustrations-boy-girl-b"></path>
<path d="M479.179 238.829C475.497 244.691 456.146 274.402 421.211 280.161C408.559 282.198 395.593 280.84 383.637 276.225C376.963 273.704 370.647 270.322 364.85 266.164L373.304 245.592C374.244 246.41 375.7 247.659 377.607 249.049C384.182 253.84 395.868 260.321 407.863 256.273C414.608 254.009 419.323 249.697 428.36 240.849C436.25 233.084 443.39 224.592 449.683 215.486C455.319 205.153 466.977 202.626 474.943 209.512C482.598 215.974 484.609 229.097 479.179 238.829Z" fill="#FFCB9D" style="fill: #FFCB9D; fill: var(--tblr-illustrations-skin, #FFCB9D);"></path>
<path d="M383.666 276.159C376.992 273.638 370.676 270.256 364.879 266.098L373.333 245.526C374.272 246.344 375.728 247.593 377.635 248.983C377.119 253.445 376.818 260.697 379.035 266.568C380.328 269.88 381.876 273.087 383.666 276.159Z" fill="black" opacity="0.15"></path>
<path d="M324.054 160.289C332.183 175.733 345.737 187.624 362.107 193.674L307.502 198.718C313.026 185.906 318.543 173.096 324.054 160.289Z" fill="#232B41" class="tblr-illustrations-boy-girl-c"></path>
<path d="M302.083 425.902L299.434 457.398L295.601 503.211H291.872L282.206 455.679L278.073 435.333L302.083 425.902ZM355.701 425.902L353.221 455.548L349.229 503.211H345.5L336.153 457.314L331.682 435.333L355.701 425.902Z" fill="#DADBE0"></path>
<path d="M278.063 435.333L302.083 425.939L299.434 457.436C293.46 457.051 287.692 456.496 282.206 455.717L278.063 435.333ZM355.701 425.902L353.212 455.548C347.782 456.318 342.071 456.91 336.153 457.314L331.682 435.333L355.701 425.902Z" fill="black" opacity="0.15"></path>
<path d="M318.108 202.692C302.571 204.392 285.231 199.874 278.063 195.017C276.833 194.294 275.8 193.278 275.057 192.058C274.278 190.508 273.592 188.902 272.916 187.202C271.976 184.872 271.169 182.449 270.445 180.025C268.518 173.72 267.17 167.252 266.415 160.703C266.415 160.167 266.218 158.57 266.021 156.72C265.345 148.425 265.006 141.69 264.809 137.069C265.204 137.745 267.139 140.901 268.886 140.61C270.765 140.225 272.333 136.092 271.901 130.174H307.136L321.847 142.893C321.847 142.893 322.279 144.931 323.199 148.031C324.69 153.477 326.558 158.813 328.789 164C330.667 168.321 332.912 172.304 335.364 174.727C343.49 182.468 336.745 200.747 318.108 202.692Z" fill="#FFCB9D" style="fill: #FFCB9D; fill: var(--tblr-illustrations-skin, #FFCB9D);"></path>
<path d="M328.788 164C315.373 168.775 300.746 168.931 287.231 164.441C283.781 164.927 280.531 166.354 277.838 168.565C273.855 171.919 273.958 175.018 270.755 179.584L270.464 180.025C268.537 173.72 267.188 167.252 266.434 160.703C266.434 160.167 266.237 158.57 266.039 156.72C265.363 148.425 265.025 141.69 264.828 137.069C265.222 137.745 267.157 140.901 268.904 140.61C270.783 140.225 272.352 136.092 271.92 130.174H307.155L321.865 142.893C321.865 142.893 322.297 144.931 323.218 148.031C324.703 153.476 326.564 158.812 328.788 164Z" fill="black" opacity="0.1"></path>
<path d="M353.502 268.466C356.893 286.755 359.298 300.197 360.951 309.666C361.045 310.192 361.13 310.718 361.224 311.244C363.196 322.244 365.225 333.253 367.198 344.272C330.2 344.935 293.193 345.649 256.176 346.413C256.232 343.868 256.27 341.238 256.335 338.673V338.542C255.228 310.418 255.658 282.255 257.622 254.178C257.763 252.102 257.913 250.045 258.083 247.978L252.54 260.923L230.334 247.772C231.132 244.258 233.922 233.681 242.132 226.448C242.132 226.448 249.581 219.967 257.895 218.792C258.667 218.721 259.432 218.596 260.187 218.417C260.319 218.382 260.454 218.357 260.591 218.342C265.334 217.665 269.928 217.055 274.249 216.726C284.754 215.813 295.312 215.656 305.839 216.256C315.93 216.869 325.952 218.314 335.805 220.577C338.285 221.169 340.868 221.845 343.32 222.653L345.405 223.358C345.668 223.442 345.922 223.517 346.166 223.611L347.537 224.109C349.097 224.71 364.606 229.229 368.006 230.271C371.821 231.512 375.321 233.566 378.264 236.293L364.089 275.464L353.502 268.466Z" fill="#0455A4" style="fill: #0455A4; fill: var(--tblr-illustrations-primary, var(--tblr-primary, #0455A4));"></path>
<path d="M271.554 222.127C271.554 233.832 285.644 243.3 303.069 243.3C320.494 243.3 334.519 233.832 334.519 222.127C334.52 221.496 334.457 220.867 334.331 220.249C324.476 217.949 314.441 216.504 304.337 215.927C293.815 215.329 283.263 215.495 272.765 216.425C271.953 218.216 271.539 220.161 271.554 222.127Z" fill="#FFCB9D" style="fill: #FFCB9D; fill: var(--tblr-illustrations-skin, #FFCB9D);"></path>
<path d="M337.524 142.451C335.044 147.89 329.361 151.845 328.591 152.361C312.133 163.511 287.334 150.849 280.684 147.063C279.03 151.572 274.756 154.973 274.221 157.744C274.08 158.57 273.939 159.397 273.836 160.167C273.671 161.504 273.593 162.85 273.601 164.197C273.65 166.483 273.908 168.759 274.371 170.998C275.188 174.887 278.664 185.22 284.347 198.681C276.388 199.207 268.422 199.742 260.45 200.287L241.108 201.583C238.404 192.37 237.788 182.669 239.305 173.187C239.446 172.341 239.671 171.101 240.009 169.551C240.72 166.396 241.662 163.297 242.827 160.28C243.034 159.754 243.26 159.209 243.485 158.664C245.146 154.767 247.194 151.047 249.6 147.561C255.842 138.551 264.069 131.095 273.648 125.768C276.945 124.04 298.071 113.19 319.563 120.808C324.908 122.687 337.618 127.262 338.689 136.148C338.907 138.317 338.503 140.503 337.524 142.451ZM291.204 514.539C285.803 516.324 285.718 525.182 285.718 525.182L284.253 534.219L294.68 536.68L297.658 529.578L316.905 536.68C312.885 527.38 296.615 512.764 291.204 514.539ZM368.72 536.68C364.69 527.38 348.42 512.764 343.019 514.539C337.618 516.315 337.524 525.182 337.524 525.182L336.068 534.219L346.476 536.68L349.454 529.578L368.72 536.68Z" fill="#232B41" class="tblr-illustrations-boy-girl-c"></path>
<path d="M337.524 142.451C335.044 147.89 329.371 151.845 328.591 152.352C312.133 163.521 287.335 150.849 280.684 147.063C278.366 144.912 276.281 142.523 274.465 139.934C283.982 145.468 294.71 148.587 305.711 149.018C316.712 149.448 327.651 147.178 337.571 142.404L337.524 142.451Z" fill="black" opacity="0.3"></path>
<path d="M373.051 435.333H258.947L256.956 371.738L256.176 346.423L367.199 344.262L371.942 418.002L373.051 435.333Z" fill="#A6A9B3"></path>
<path d="M373.05 435.333H258.947L257.632 345.615L313.392 345.249C292.67 386.214 286.602 401.469 288.274 402.85C290.566 404.729 306.121 379.122 314.003 383.527C316.868 385.134 317.168 389.849 317.985 393.005C320.531 402.756 332.226 413.455 371.942 418.002L373.05 435.333Z" fill="black" opacity="0.1"></path>
<path d="M346.241 223.63H346.194L345.433 223.386C342.371 236.997 324.552 247.48 303.087 247.48C279.425 247.48 260.177 234.799 260.177 219.225V218.436C259.454 218.548 258.693 218.67 257.904 218.821C257.895 218.955 257.895 219.09 257.904 219.225C257.904 236.283 278.166 250.223 303.087 250.223C325.51 250.223 344.156 238.951 347.603 224.194L346.241 223.63Z" fill="#E1E1E1"></path>
<path d="M307.502 263.853C309.411 263.853 310.959 262.011 310.959 259.739C310.959 257.467 309.411 255.625 307.502 255.625C305.593 255.625 304.045 257.467 304.045 259.739C304.045 262.011 305.593 263.853 307.502 263.853Z" fill="#E1E1E1"></path>
<path d="M260.404 200.315L241.063 201.612C238.358 192.398 237.742 182.697 239.259 173.215C239.4 172.37 239.625 171.13 239.964 169.58L242.782 160.308C242.988 159.782 243.214 159.237 243.439 158.693C245.1 154.796 247.148 151.076 249.554 147.589C248.615 159.989 248.474 177.273 253.744 188.263C255.706 192.418 257.931 196.443 260.404 200.315Z" fill="black" opacity="0.3"></path>
<path d="M367.199 344.272C330.201 344.935 293.193 345.649 256.176 346.413C256.233 343.868 256.27 341.238 256.336 338.673V338.542C315.929 341.501 350.957 319.557 361.224 311.244C363.197 322.244 365.264 333.253 367.199 344.272Z" fill="black" opacity="0.1"></path>
<path d="M280.017 380.052C274.531 389.041 263.503 391.437 255.35 384.965C250.399 380.597 225.45 357.564 220.594 316.006C218.13 294.148 221.708 272.032 230.936 252.064C231.509 250.843 232.007 249.829 232.429 249.002L249.723 259.119C249.103 260.124 248.173 261.674 247.13 263.637C243.063 271.34 237.267 285.609 240.743 300.272C242.621 308.276 246.266 313.912 253.706 324.695C259.993 333.807 267.133 342.299 275.029 350.058C283.671 356.662 285.804 370.564 280.017 380.052Z" fill="#FFCB9D" style="fill: #FFCB9D; fill: var(--tblr-illustrations-skin, #FFCB9D);"></path>
<path d="M249.723 259.119C249.103 260.124 248.173 261.674 247.13 263.637C242.33 260.274 234.862 255.005 230.926 252.064C231.499 250.843 231.997 249.829 232.42 249.002L249.723 259.119Z" fill="black" opacity="0.15"></path>
<path d="M304.337 215.899C293.815 215.301 283.264 215.467 272.766 216.397C271.949 218.196 271.536 220.152 271.554 222.127C271.554 233.832 285.644 243.3 303.069 243.3C320.494 243.3 334.519 233.832 334.519 222.127C334.52 221.496 334.457 220.867 334.331 220.248C324.477 217.94 314.442 216.485 304.337 215.899Z" fill="black" opacity="0.07"></path>
<path d="M445.325 188.01C446.283 199.188 447.25 210.351 448.227 221.498L453.863 286.182C455.329 302.909 456.785 319.645 458.231 336.39H543.713C545.372 319.639 547.038 302.902 548.71 286.182C549.668 276.701 550.608 267.223 551.528 257.748C553.852 234.489 556.162 211.243 558.461 188.01H445.325Z" fill="#DADBE0"></path>
<path d="M555.464 217.844C547.072 224.328 539.267 231.538 532.14 239.393C515.429 257.766 513.109 267.62 505.171 271.03C495.956 274.994 479.809 269.997 449.542 228.045L453.995 288.474H454.042C455.445 304.443 456.835 320.412 458.213 336.381H543.694C545.354 319.642 547.019 302.909 548.692 286.182H549.058L555.464 217.844Z" fill="black" opacity="0.1"></path>
<path d="M420.385 276.76C422.47 282.504 425.273 287.961 428.727 293.002C429.744 294.46 430.829 295.871 431.977 297.229C436.998 303.248 443.375 307.99 450.585 311.065C454.275 312.632 458.128 313.779 462.074 314.485C467.561 315.468 473.147 315.784 478.71 315.424C479.17 315.424 479.649 315.377 480.072 315.34C480.247 315.35 480.423 315.35 480.598 315.34L481.631 315.255L482.12 315.208H482.458C486.709 314.762 490.926 314.037 495.083 313.038H495.148C498.827 312.155 502.453 311.064 506.007 309.769C507.604 309.215 509.145 308.604 510.62 307.956C512.674 307.067 514.615 306.128 516.444 305.138C519.749 303.381 522.934 301.407 525.978 299.23C527.35 298.243 528.608 297.294 529.736 296.411C522.502 293.161 515.26 289.892 508.018 286.661C503.784 284.782 499.557 282.882 495.336 280.959C493.604 282.328 491.712 283.479 489.7 284.388C488.168 285.069 486.55 285.537 484.891 285.778C483.818 285.965 482.727 286.028 481.64 285.966C478.4 285.778 475.347 284.181 472.51 281.617C472.363 281.502 472.225 281.376 472.097 281.241C470.798 280.007 469.592 278.679 468.489 277.267C456.841 262.407 449.702 233.681 449.702 233.681C452.924 222.879 453.119 211.399 450.266 200.494C449.097 196.178 447.436 192.011 445.316 188.076C440.947 188.898 436.792 190.601 433.104 193.082C431.175 194.4 429.398 195.928 427.806 197.638C412.607 213.861 410.268 249.528 420.385 276.76Z" fill="#DADBE0"></path>
<path d="M445.325 188.01C438.625 189.246 432.498 192.598 427.844 197.572C412.607 213.861 410.268 249.528 420.385 276.76C422.47 282.504 425.273 287.961 428.727 293.002C429.744 294.46 430.828 295.871 431.977 297.229C436.998 303.248 443.375 307.99 450.585 311.065C452.425 311.844 454.306 312.518 456.221 313.085L458.26 336.39H543.741C545.401 319.639 547.067 302.902 548.739 286.182C549.697 276.694 550.636 267.216 551.557 257.748C553.861 234.489 556.163 211.243 558.461 188.01H445.325Z" fill="black" opacity="0.05"></path>
<path d="M540.181 104.661C540.002 109.282 539.636 116.055 538.95 124.387C538.762 126.266 538.621 127.816 538.584 128.37C537.518 137.473 535.309 146.404 532.008 154.954C531.322 156.654 530.637 158.251 529.857 159.81C526.973 165.578 505.434 172.529 486.703 170.472C467.972 168.415 461.256 150.201 469.353 142.413C471.824 139.99 474.116 136.007 475.994 131.667C478.228 126.463 480.092 121.108 481.574 115.642C482.513 112.533 482.946 110.475 482.946 110.475L497.712 97.7471H533.041C532.628 103.703 534.187 107.817 536.057 108.183C537.926 108.55 539.767 105.346 540.181 104.661Z" fill="#FFCB9D" style="fill: #FFCB9D; fill: var(--tblr-illustrations-skin, #FFCB9D);"></path>
<path d="M540.181 104.661C540.002 109.282 539.636 116.055 538.95 124.387C538.762 126.266 538.621 127.816 538.584 128.37C537.519 137.473 535.309 146.404 532.008 154.954C529.719 154.235 527.589 153.083 525.734 151.563C523.719 149.859 522.057 147.779 520.839 145.438C519.612 142.93 518.785 140.246 518.388 137.482C518.04 135.703 517.795 133.906 517.655 132.099C504.109 136.607 489.444 136.455 475.995 131.667C478.228 126.463 480.092 121.108 481.574 115.642C482.514 112.533 482.946 110.475 482.946 110.475L497.713 97.7471H533.042C532.628 103.703 534.188 107.817 536.057 108.183C537.926 108.55 539.768 105.346 540.181 104.661Z" fill="black" opacity="0.1"></path>
<path d="M544.53 112.213C544.324 119.897 540.998 127.365 536.32 131.846C535.242 132.734 534.228 133.698 533.286 134.73C530.89 137.732 529.277 141.283 528.589 145.062C526.945 143.089 525.93 140.668 525.677 138.111C525.433 134.213 527.105 127.027 527.19 126.022C527.19 126.022 527.19 125.749 527.274 125.43C527.274 124.876 527.359 124.65 527.434 123.786C527.564 121.91 527.564 120.026 527.434 118.15C527.455 118.06 527.455 117.967 527.434 117.877C518.491 123.326 493.007 136.599 475.854 123.514C473.188 121.482 470.828 119.078 468.846 116.375C468.641 116.159 468.473 115.912 468.349 115.642C467.865 114.969 467.426 114.267 467.033 113.538C466.996 113.476 466.955 113.416 466.911 113.359V113.312C465.865 111.449 465.141 109.423 464.77 107.319L464.638 106.492C464.561 105.555 464.561 104.612 464.638 103.674C465.122 100.035 466.851 96.6762 469.532 94.1681C474.501 89.2271 481.838 86.2963 485.698 84.7746C500.728 78.7345 523.489 77.2597 536.424 90.8616C539.662 94.4155 542.023 98.678 543.319 103.308C544.136 106.205 544.544 109.203 544.53 112.213Z" fill="#232B41" class="tblr-illustrations-boy-girl-c"></path>
<path d="M527.378 117.887C518.435 123.335 492.95 136.608 475.798 123.523C473.131 121.492 470.771 119.087 468.79 116.384C468.585 116.169 468.417 115.921 468.292 115.651C467.809 114.979 467.37 114.276 466.977 113.547C466.94 113.485 466.899 113.426 466.855 113.369V113.322C465.828 111.452 465.123 109.423 464.77 107.319C468.771 111.224 473.388 114.442 478.437 116.844C503.452 128.586 529.679 113.951 533.859 111.621L534.179 111.433C532.074 113.75 529.801 115.907 527.378 117.887Z" fill="black" opacity="0.3"></path>
<path d="M543.657 336.39L536.311 514.22H521.873L501.893 376.83L488.178 514.22H477.479L458.213 336.39H543.657Z" fill="#0455A4" style="fill: #0455A4; fill: var(--tblr-illustrations-primary, var(--tblr-primary, #0455A4));"></path>
<path d="M505.697 538.906L537.926 535.318C537.926 535.318 539.091 526.967 534.037 524.046C528.984 521.124 510.967 531.081 505.697 538.906ZM458.26 538.906L490.479 535.318C490.479 535.318 491.644 526.967 486.6 524.046C481.556 521.124 463.473 531.081 458.26 538.906ZM420.385 276.76C422.47 282.504 425.272 287.961 428.726 293.002C434.133 300.991 441.72 307.26 450.585 311.065C451.487 303.348 449.862 295.547 445.954 288.831C439.472 277.634 428.754 272.852 420.385 276.76Z" fill="#232B41" class="tblr-illustrations-boy-girl-c"></path>
<path d="M513.447 185.699C505.434 193.674 497.788 196.624 491.964 197.694L491.024 197.864L478.165 187.756L513.447 185.699Z" fill="#E1E1E1"></path>
<path d="M450.867 241.44C454.744 254.128 458.629 266.812 462.525 279.494C469.157 287.839 476.911 295.226 485.567 301.446C499.357 311.235 521.995 322.187 542.238 321.474C552.74 321.126 562.594 317.632 570.231 309.262C576.534 302.32 579.559 294.054 582.555 282.518C583.298 279.653 584.049 276.6 584.838 273.303C586.999 264.379 593.424 236.546 584.575 211.588C581.353 202.523 577.69 198.211 575.651 196.154C573.275 193.74 570.476 191.782 567.394 190.377C564.57 189.104 561.548 188.323 558.461 188.066C558.301 188.93 558.085 190.18 557.841 191.683C557.08 196.379 556.592 200.362 556.282 203.105C556.188 203.979 556.037 205.35 555.887 207.013C555.53 210.77 555.27 214.393 555.107 217.881C555.029 225.279 553.997 232.635 552.036 239.768C550.243 246.356 547.577 252.675 544.108 258.555C535.992 262.148 527.347 264.4 518.51 265.225C486.168 268.165 461.285 250.148 450.867 241.44Z" fill="#DADBE0"></path>
<path d="M542.238 321.492C552.74 321.145 562.594 317.65 570.231 309.281C576.534 302.339 579.558 294.073 582.555 282.537C575.547 283.683 567.469 287.741 559.898 294.458C550.861 302.433 544.586 312.475 542.238 321.492Z" fill="#232B41" class="tblr-illustrations-boy-girl-c"></path>
<path d="M488.178 514.22L501.893 376.83L495.778 336.39H458.213L477.479 514.22H488.178Z" fill="black" opacity="0.22"></path>
<path d="M494.801 195.468L473.956 180.495L469.194 185.539L483.359 206.694L494.801 195.468ZM495.778 195.318L527.368 175.629L534.582 182.261L513.118 210.075L495.778 195.318Z" fill="#0455A4" style="fill: #0455A4; fill: var(--tblr-illustrations-primary, var(--tblr-primary, #0455A4));"></path>
<path d="M494.801 195.468L473.956 180.495L469.194 185.539L483.359 206.694L494.801 195.468Z" fill="black" opacity="0.22"></path>
</svg>
<h1 class="mt-5">Welcome to {% BIND appName %}!</h1>
<p class="text-secondary">Welcome to YAGS, Yet Another Ground Station, the advanced HAM ground station manager that brings a new level of sophistication and convenience to your radio operations. YAGS is designed to help you seamlessly plan and manage Radio RX (receiving) and TX (transmitting) events across multiple HAM ground stations.</p>
</div>
</div>
<div id="users" style="display: none;">
<div class="card-body text-center py-4 p-sm-5">
<h1>Creating the First User</h1>
<p class="text-secondary">YAGS is a multi-user system that allows for the assignment of individual resources to individual users. There are two types of users: standard users and administrator users. A standard user can only access the resources assigned to them. An administrator user can access all resources. Let's create your first administrator.</p>
</div>
<div class="hr-text hr-text-center hr-text-spaceless">your data</div>
<div class="card-body">
<div class="mb-3">
<label class="form-label">admin username</label>
<div class="input-group input-group-flat">
<input type="text" class="form-control ps-1" autocomplete="off" id="username">
</div>
<div class="form-hint">Choose a username for your first administrator user.</div>
</div>
<div class="mb-3">
<label class="form-label">admin password</label>
<div class="input-group input-group-flat">
<input type="password" class="form-control ps-1" autocomplete="off" id="pass1">
</div>
</div>
<div>
<label class="form-label">confirm admin password</label>
<div class="input-group input-group-flat">
<input type="password" class="form-control ps-1" autocomplete="off" id="pass2">
</div>
</div>
</div>
</div>
<div id="station" style="display: none;">
<div class="card-body text-center py-4 p-sm-5">
<h1>First Ground Station</h1>
<p class="text-secondary">YAGS is a system for managing ground radio stations. It allows for the management of multiple ground stations simultaneously. To get started, YAGS needs to manage at least one ground station. Let's create one.</p>
</div>
<div class="hr-text hr-text-center hr-text-spaceless">your data</div>
<div class="card-body">
<div class="mb-3">
<label class="form-label">Station LAT</label>
<div class="input-group input-group-flat">
<input type="number" class="form-control ps-1" autocomplete="off" placeholder="0.0" id="lat">
</div>
</div>
<div class="mb-3">
<label class="form-label">Station LON</label>
<div class="input-group input-group-flat">
<input type="number" class="form-control ps-1" autocomplete="off" placeholder="0.0" id="lon">
</div>
</div>
<div>
<label class="form-label">Station Altitude [meters]</label>
<div class="input-group input-group-flat">
<input type="number" class="form-control ps-1" autocomplete="off" placeholder="0" id="alt">
</div>
</div>
</div>
</div>
<div id="rxtx" style="display: none;">
<div class="card-body text-center py-4 p-sm-5">
<h1>First RX/TX</h1>
<p class="text-secondary">Each station must have some receivers/transmitters (configured as the same). Transmitters and receivers allow for sending and receiving signals. Receivers can be SDR devices or LORA devices. YAGS accesses these devices through the YAGS client on ground station devices.</p>
</div>
<div class="hr-text hr-text-center hr-text-spaceless">your data</div>
<div class="card-body">
<div class="mb-3">
<label class="form-label">Receiver/Transmitter type</label>
<select class="form-select mb-0" id="radio" onchange="radioChange()">
<option value="RTLSDR">RTL-SDR</option>
<option value="RFM95">RFM95</option>
</select>
</div>
<div id="rfm-options" style="display: none">
<div class="mb-3">
<label class="form-label">NSS PIN</label>
<div class="input-group input-group-flat">
<input type="number" class="form-control ps-1" autocomplete="off" placeholder="16" id="nss">
</div>
</div>
<div>
<label class="form-label">DIO0 PIN</label>
<div class="input-group input-group-flat">
<input type="number" class="form-control ps-1" autocomplete="off" placeholder="4" id="dio">
</div>
</div>
</div>
</div>
</div>
<div id="plan" style="display: none;">
<div class="card-body text-center py-4 p-sm-5">
<h1>Auto plan targets?</h1>
<p class="text-secondary">YAGS supports automatic scheduling of RX/TX events. Now we can add a few basic satellites for scheduling over your new RX/TX. Later, you will be able to add new targets and scheduling.</p>
</div>
<div class="hr-text hr-text-center hr-text-spaceless">your data</div>
<div class="card-body">
<label class="form-check mt-3">
<input class="form-check-input" id="noaa19" type="checkbox">
<span class="form-check-label">NOAA19 - APT @ 137Mhz</span>
</label>
<label class="form-check">
<input class="form-check-input" id="noaa18" type="checkbox">
<span class="form-check-label">NOAA18 - APT @ 137Mhz</span>
</label>
<label class="form-check">
<input class="form-check-input" id="noaa15" type="checkbox">
<span class="form-check-label">NOAA15 - APT @ 137Mhz</span>
</label>
<label class="form-check">
<input class="form-check-input" id="meteorm23" type="checkbox">
<span class="form-check-label">METEOR M2-3 - LRPT @ 137Mhz</span>
</label>
<label class="form-check">
<input class="form-check-input" id="meteorm24" type="checkbox">
<span class="form-check-label">METEOR M2-4 - LRPT @ 137Mhz</span>
</label>
<label class="form-check">
<input class="form-check-input" id="lucky7" type="checkbox">
<span class="form-check-label">LUCKY 7 - TELEMETRY @ 433Mhz</span>
</label>
<label class="form-check">
<input class="form-check-input" id="stratosat" type="checkbox">
<span class="form-check-label">StratoSat TK-1 - TELEMETRY @ 433Mhz</span>
</label>
</div>
</div>
<div id="connect" style="display: none;">
<div class="card-body text-center py-4 p-sm-5">
<h1>Connect YAGS client</h1>
<p class="text-secondary">The YAGS client is an application that runs on each ground station and controls it. This application is remotely managed by YAGS. Install the YAGS client application and configure it with the correct information. You can download the application from our GitHub and run it, for example, on an ESP32 or a Raspberry Pi.</p>
</div>
<div class="hr-text hr-text-center hr-text-spaceless">your configuration</div>
<div class="card-body">
<div class="mb-3">
<label class="form-label">API Key</label>
<input type="text" class="form-control" value="" id="apiKey" disabled="">
</div>
<div class="mb-3">
<label class="form-label">Master url</label>
<input type="text" class="form-control" value="{% BIND apiHost %}" disabled="">
</div>
<div class="alert alert-danger" role="alert" id="waiting">
<div class="d-flex">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon alert-icon"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"></path><path d="M12 8v4"></path><path d="M12 16h.01"></path></svg>
</div>
<div>
Waiting for YAGS client
</div>
</div>
</div>
<div class="alert alert-success" role="alert" id="connected" style="display: none;">
<div class="d-flex">
<div>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon alert-icon"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M5 12l5 5l10 -10"></path></svg>
</div>
<div>
YAGS client connected
</div>
</div>
</div>
</div>
</div>
<div id="done" style="display: none;">
<div class="card-body text-center py-4 p-sm-5">
<h1>Basic settings are done!</h1>
<p class="text-secondary">YAGS is ready to your first use.</p>
</div>
</div>
</div>
<div class="row align-items-center mt-3">
<div class="col-4">
<div class="progress">
<div class="progress-bar" id="progress-bar" style="width: 0%" role="progressbar" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="col">
<div class="btn-list justify-content-end">
<a href="#" onclick="nextPage()" id="nextBtn" class="btn btn-primary">
Continue
</a>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="/static/js/setup.js"></script>
</html>

View File

@ -229,7 +229,7 @@
<div class="col-lg-3">
<div class="mb-3">
<label class="form-label">Modulation</label>
<select class="form-select" id="transmitter-modulation">
<select class="form-select" id="transmitter-modulation" onchange="modulationChange()">
{% FOREACH modulations USE '<option value="(\ BIND item.id \)">(\ BIND item.name \)</option>' %}
</select>
</div>
@ -249,6 +249,37 @@
</div>
</div>
</div>
<div class="row" id="lora-params" style="display: none;">
<div class="col-lg-3">
<div class="mb-3">
<label class="form-label">Spreading Factor</label>
<input type="number" step="1" id="transmitter-sf" placeholder="7" min="7" max="12" class="form-control">
</div>
</div>
<div class="col-lg-3">
<div class="mb-3">
<label class="form-label">Coding Rate</label>
<input type="number" step="1" id="transmitter-codingrate" placeholder="5" class="form-control">
</div>
</div>
<div class="col-lg-3">
<div class="mb-3">
<label class="form-label">Sync Word</label>
<div class="input-group mb-2">
<span class="input-group-text">
0x
</span>
<input type="text" class="form-control" id="transmitter-syncword" placeholder="34">
</div>
</div>
</div>
<div class="col-lg-3">
<div class="mb-3">
<label class="form-label">Preamble Length</label>
<input type="number" step="1" id="transmitter-preamble" placeholder="8" class="form-control">
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row">
@ -273,7 +304,7 @@
<!-- Tabler Core -->
<script src="/dist/js/tabler.min.js?1668287865" defer=""></script>
<script src="/static/js/target.js" defer=""></script>
<script src="/static/js/target.js?2" defer=""></script>
</div>
</div>
</div>

149
web/VIEWS/uplinks.html Normal file
View File

@ -0,0 +1,149 @@
<!doctype html>
<html lang="en">
{% INCLUDE layout/head.html %}
<body>
<div class="page">
{% BINDINCLUDE layout/header.html logined %}
<div class="page-header d-print-none mt-4">
<div class="container-xl">
<div class="row g-2 align-items-center">
<div class="col">
<!-- Page pre-title -->
<div class="page-pretitle">
stations
</div>
<h2 class="page-title">
Uplinks
</h2>
</div>
<div class="col-auto ms-auto d-print-none">
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
Plan uplink
</button>
</div>
</div>
<div class="col mt-4" style="display: none;" id="created-alert">
<div class="alert alert-success" role="alert">Successly created uplink plan <span id="created-id"></span> [<a href="/uplinks">refresh</a>]?</div>
</div>
</div>
</div>
<div class="page-body">
<div class="container-xl">
<div class="row row-deck row-cards">
<div class="col-12">
<div class="card">
<div class="card-header">
<h3 class="card-title">Planed, Done and Faild</h3>
</div>
<div class="table-responsive">
<table class="table card-table table-vcenter text-nowrap datatable table-hover">
<thead>
<tr>
<th>Station</th>
<th>Target</th>
<th>Modulation</th>
<th>Type</th>
<th>Frequency</th>
<th>Status</th>
<th>Time</th>
</tr>
</thead>
<tbody>
{% FOREACH uplinks RENDER blocks/uplink-item.html %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal" id="exampleModal" tabindex="-1">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">New uplink</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-lg-5">
<div class="mb-3">
<label class="form-label">Station transmitter</label>
<select class="form-select" id="plan-transmitter">
{% FOREACH transmitters USE '<option value="(\ BIND item.id \)">(\ BIND item.station.name \) @ (\ BIND item.centerFrequency \)Hz</option>' %}
</select>
</div>
</div>
<div class="col-lg-7">
<div class="mb-3">
<label class="form-label">Target receiver</label>
<select class="form-select" id="plan-receiver">
{% FOREACH receivers USE '<option value="(\ BIND item.id \)">
(\ BIND item.target.name \) -
(\ BIND item.modulation.name \) -
(\ BIND item.dataType.name \) @
(\ BIND item.centerFrequency \)Hz
</option>' %}
</select>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row">
<div class="col-lg-6">
<div class="mb-3">
<label class="form-label">Uplink at UTC time</label>
<div class="input-group">
<input type="datetime-local" id="plan-start" class="form-control">
<span class="input-group-text">
<input class="form-check-input m-0" name="plan-start-type" type="radio" checked="" id="timed-uplink">
</span>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="mb-3">
<label class="form-label">Uplink after downlink</label>
<div class="input-group">
<input type="number" id="plan-after-down" class="form-control" placeholder="delay in sec." autocomplete="off">
<span class="input-group-text">
<input class="form-check-input m-0" name="plan-start-type" type="radio" id="delayd-uplink">
</span>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row">
<div class="col-lg-12">
<div class="mb-6">
<label class="form-label">Hex data</label>
<textarea id="plan-data" id="plan-data" class="form-control"></textarea>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn me-auto" data-bs-dismiss="modal">Close</button>
<button type="button" onclick="plan()" class="btn btn-primary" data-bs-dismiss="modal">Plan!</button>
</div>
</div>
</div>
</div>
<!-- Tabler Core -->
<script src="/dist/js/tabler.min.js?1668287865" defer=""></script>
<script src="/static/js/uplinks.js?v=3"></script>
</div>
</body>
</html>

View File

@ -15,6 +15,7 @@
$sites = [
"sites" => [
"observations" => ["controller" => __DIR__ . "/CONTROLLERS/observations.php", "name" => "Observations", "icon" => "/static/icons/telescope.svg", "menu" => true],
"uplinks" => ["controller" => __DIR__ . "/CONTROLLERS/uplinks.php", "name" => "Uplinks", "icon" => "/static/icons/wave-sine.svg", "menu" => true],
"targets" => ["controller" => __DIR__ . "/CONTROLLERS/targets.php", "name" => "Targets", "icon" => "/static/icons/focus-2.svg", "menu" => true],
//"modulations" => ["controller" => __DIR__ . "/CONTROLLERS/telemetry.php", "name" => "Telemetry", "icon" => "/static/icons/wave-sine.svg", "menu" => true],
/*
@ -27,6 +28,8 @@
"target" => ["controller" => __DIR__ . "/CONTROLLERS/target.php", "name" => "Target", "menu" => false],
"login" => ["controller" => __DIR__ . "/CONTROLLERS/login.php", "name" => "Login", "menu" => false],
"api" => ["controller" => __DIR__ . "/API/main.php", "name" => "api", "menu" => false],
"setup" => ["controller" => __DIR__ . "/CONTROLLERS/setup.php", "name" => "setup", "menu" => false],
"logout" => ["controller" => __DIR__ . "/CONTROLLERS/logout.php", "name" => "logout", "menu" => false],
],
"controller" => __DIR__ . "/CONTROLLERS/dashboard.php",
@ -56,11 +59,7 @@
// detect if is seeded
if (!$system->find("name", "seeds")) {
include "seeds.php";
$system->name->set("seeds");
$system->value->set("true");
$system->commit();
if (strpos($url, '/api/') === false) $router->route("/setup");
}
$router->route($url);

View File

@ -1,409 +1,536 @@
<?php
/**
* Create default user
*/
$admin = new \DAL\user();
$admin->userName->set("admin");
$admin->pass->set("admin");
$admin->admin->set(true);
$admin->commit(); /* commit changes to DB */
function seed($data) {
/**
* Create default user
*/
$admin = new \DAL\user();
$admin->userName->set($data["user"]);
$admin->pass->set($data["pass"]);
$admin->admin->set(true);
$admin->commit(); /* commit changes to DB */
$leoWSatTape = new \DAL\targetType();
$leoWSatTape->name->set("Weather Satellite");
$leoWSatTape->commit();
$leoWSatTape = new \DAL\targetType();
$leoWSatTape->name->set("Weather Satellite");
$leoWSatTape->commit();
$nanosatelliteType = new \DAL\targetType();
$nanosatelliteType->name->set("Nanosatellite");
$nanosatelliteType->commit();
$nanosatelliteType = new \DAL\targetType();
$nanosatelliteType->name->set("Nanosatellite");
$nanosatelliteType->commit();
$avhrrType = new \DAL\dataType();
$avhrrType->name->set("AVHRR");
$avhrrType->commit();
$avhrrType = new \DAL\dataType();
$avhrrType->name->set("AVHRR");
$avhrrType->commit();
$msumrType = new \DAL\dataType();
$msumrType->name->set("MSU-MR");
$msumrType->commit();
$msumrType = new \DAL\dataType();
$msumrType->name->set("MSU-MR");
$msumrType->commit();
$beaconType = new \DAL\dataType();
$beaconType->name->set("Beacon");
$beaconType->commit();
$beaconType = new \DAL\dataType();
$beaconType->name->set("Beacon");
$beaconType->commit();
$telemetryType = new \DAL\dataType();
$telemetryType->name->set("Telemetry");
$telemetryType->commit();
$telemetryType = new \DAL\dataType();
$telemetryType->name->set("Telemetry");
$telemetryType->commit();
/**
* Antennas seeds
*/
/**
* Antennas seeds
*/
$yagi = new \DAL\Antenna();
$yagi->name->set("YAGI");
$yagi->commit();
$yagi = new \DAL\Antenna();
$yagi->name->set("YAGI");
$yagi->commit();
$dish = new \DAL\Antenna();
$dish->name->set("DISH");
$dish->commit();
$dish = new \DAL\Antenna();
$dish->name->set("DISH");
$dish->commit();
$qfh = new \DAL\Antenna();
$qfh->name->set("QFH");
$qfh->commit();
$qfh = new \DAL\Antenna();
$qfh->name->set("QFH");
$qfh->commit();
$dipole = new \DAL\Antenna();
$dipole->name->set("Dipole");
$dipole->commit();
$dipole = new \DAL\Antenna();
$dipole->name->set("Dipole");
$dipole->commit();
$noneAnt = new \DAL\Antenna();
$noneAnt->name->set("none");
$noneAnt->commit();
/**
* Test station
*/
$myStation = new \DAL\station();
$myStation->name->set("default");
$myStation->locator->set([
"gps" => [
"lat" => 49.2397383,
"lon" => 16.5684175,
"alt" => 277
]
]);
$myStation->commit();
/**
* First station
*/
$myStation = new \DAL\station();
$myStation->name->set("My first station");
$myStation->locator->set([
"gps" => [
"lat" => $data["lat"],
"lon" => $data["lon"],
"alt" => $data["alt"]
]
]);
$myStation->commit();
$myStation137 = new \DAL\receiver();
$myStation137->station->set($myStation);
$myStation137->params->set([
"radio" => "rtlsdr",
"gain" => 45,
"agc" => false,
"bias" => false,
"fs" => [250000, 1024000, 1536000, 1792000, 1920000, 2048000, 2160000, 2400000, 2560000, 2880000, 3200000]
]);
$myStation137->antenna->set($yagi);
$myStation137->centerFrequency->set(433500000);
$myStation137->gain->set(45);
$myStation137->commit();
$myStationRcv = new \DAL\receiver();
$myStationRcv->station->set($myStation);
$myStationRcv->params->set($data["params"]);
$myStationRcv->antenna->set($noneAnt);
$myStationRcv->centerFrequency->set(0);
$myStationRcv->gain->set(0);
$myStationRcv->commit();
/*
$myStation2G = new \DAL\receiver();
$myStation2G->station->set($myStation);
$myStation2G->params->set([
"radio" => "hackrf",
"amp" => true,
"bias" => false,
"lna_gain" => 45,
"vga_gain" => 10,
"bias" => true
]);
$myStation2G->antenna->set($yagi);
$myStation2G->centerFrequency->set(1700000000);
$myStation2G->gain->set(45);
$myStation2G->commit();
*/
/*
$myStation2G = new \DAL\receiver();
$myStation2G->station->set($myStation);
$myStation2G->params->set([
"radio" => "hackrf",
"amp" => true,
"bias" => false,
"lna_gain" => 45,
"vga_gain" => 10,
"bias" => true
]);
$myStation2G->antenna->set($yagi);
$myStation2G->centerFrequency->set(1700000000);
$myStation2G->gain->set(45);
$myStation2G->commit();
*/
/**
* Modulations
*/
/**
* Modulations
*/
$apt = new \DAL\modulation();
$apt->name->set("APT");
$apt->commit();
$apt = new \DAL\modulation();
$apt->name->set("APT");
$apt->commit();
$bpsk = new \DAL\modulation();
$bpsk->name->set("BPSK");
$bpsk->commit();
$bpsk = new \DAL\modulation();
$bpsk->name->set("BPSK");
$bpsk->commit();
$hrpt = new \DAL\modulation();
$hrpt->name->set("HRPT");
$hrpt->commit();
$gfsk = new \DAL\modulation();
$gfsk->name->set("GFSK");
$gfsk->commit();
$dsb = new \DAL\modulation();
$dsb->name->set("DSB");
$dsb->commit();
$hrpt = new \DAL\modulation();
$hrpt->name->set("HRPT");
$hrpt->commit();
$lrpt = new \DAL\modulation();
$lrpt->name->set("LRPT");
$lrpt->commit();
$dsb = new \DAL\modulation();
$dsb->name->set("DSB");
$dsb->commit();
$cw = new \DAL\modulation();
$cw->name->set("CW");
$cw->commit();
$lrpt = new \DAL\modulation();
$lrpt->name->set("LRPT");
$lrpt->commit();
/**
* Process pipes
*/
$aptPipe = new \DAL\processPipe();
$aptPipe->name->set("NOAA APT");
$aptPipe->pipe->set([
"satdump noaa_apt baseband {baseband} {artefactDir} --samplerate {fs} --satellite_number {targetNum} --start_timestamp {start} --autocrop_wedges --baseband_format s8",
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8"
]);
$cw = new \DAL\modulation();
$cw->name->set("CW");
$cw->commit();
$aptPipe->commit();
$lora = new \DAL\modulation();
$lora->name->set("LORA");
$lora->commit();
$lrptPipe = new \DAL\processPipe();
$lrptPipe->name->set("METEOR LRPT");
$lrptPipe->pipe->set([
"satdump meteor_m2-x_lrpt baseband {baseband} {artefactDir} --samplerate {fs} --baseband_format s8",
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8"
]);
/**
* Process pipes
*/
$aptPipe = new \DAL\processPipe();
$aptPipe->name->set("NOAA APT");
$aptPipe->pipe->set([
"satdump noaa_apt baseband {baseband} {artefactDir} --samplerate {fs} --satellite_number {targetNum} --start_timestamp {start} --autocrop_wedges --baseband_format s8",
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8"
]);
$lrptPipe->commit();
$aptPipe->commit();
$spectogramPipe = new \DAL\processPipe();
$spectogramPipe->name->set("Spectogram");
$spectogramPipe->pipe->set([
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8",
]);
$lrptPipe = new \DAL\processPipe();
$lrptPipe->name->set("METEOR LRPT");
$lrptPipe->pipe->set([
"satdump meteor_m2-x_lrpt baseband {baseband} {artefactDir} --samplerate {fs} --baseband_format s8",
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8"
]);
$spectogramPipe->commit();
$lrptPipe->commit();
$cwPipe = new \DAL\processPipe();
$cwPipe->name->set("CW Morse");
$cwPipe->pipe->set([
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"cw_morse.py {baseband} {artefactDir}/morse.txt -fs {fs} -fc \"[?]\"",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8"
]);
$spectogramPipe = new \DAL\processPipe();
$spectogramPipe->name->set("Spectogram");
$spectogramPipe->pipe->set([
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8",
]);
$cwPipe->commit();
$spectogramPipe->commit();
$luckyPipe = new \DAL\processPipe();
$luckyPipe->name->set("Lucky7-UHF");
$luckyPipe->pipe->set([
"satdump lucky7_link baseband {baseband} {artefactDir} --samplerate {fs} --dc_block --start_timestamp {start} --enable_doppler --baseband_format s8",
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"/decoders/lucky7 {artefactDir}/lucky7_link.frm {start} > {artefactDir}/telemetry.json",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8",
"test -f {artefactDir}/lucky7_link.frm"
]);
$cwPipe = new \DAL\processPipe();
$cwPipe->name->set("CW Morse");
$cwPipe->pipe->set([
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"cw_morse.py {baseband} {artefactDir}/morse.txt -fs {fs} -fc \"[?]\"",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8"
]);
$luckyPipe->commit();
$cwPipe->commit();
$luckyPipe = new \DAL\processPipe();
$luckyPipe->name->set("Lucky7-UHF");
$luckyPipe->pipe->set([
"satdump lucky7_link baseband {baseband} {artefactDir} --samplerate {fs} --dc_block --start_timestamp {start} --enable_doppler --baseband_format s8",
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"/decoders/lucky7 {artefactDir}/lucky7_link.frm {start} > {artefactDir}/telemetry.json",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8",
"test -f {artefactDir}/lucky7_link.frm"
]);
$luckyPipe->commit();
/**
* NOAA 19
*/
$noaa19 = new \DAL\target();
$noaa19->name->set("NOAA 19");
$noaa19->type->set($leoWSatTape);
$noaa19->orbit->set("leo");
$noaa19->description->set("NOAA 19 is the fifth in a series of five Polar-orbiting Operational Environmental Satellites (POES) with advanced microwave sounding instruments that provide imaging and sounding capabilities.");
$noaa19->locator->set([
"tle" => [
"line1" => "1 33591U 09005A 23243.18101660 .00000207 00000-0 13587-3 0 9998",
"line2" => "2 33591 99.0938 290.2850 0014342 35.8617 324.3514 14.12812127750532"
]
]);
$noaa19->commit();
$stratosatPipe = new \DAL\processPipe();
$stratosatPipe->name->set("Stratosat_TK1-UHF");
$stratosatPipe->pipe->set([
"satdump stratosat_tk1_uhf baseband {baseband} {artefactDir} --samplerate {fs} --dc_block --start_timestamp {start} --enable_doppler --baseband_format s8",
"baseband_spectogram.py {baseband} {artefactDir}/spectogram.png -fs {fs} -fc {freq}",
"cp {baseband} {artefactDir}/{dtstart}_{fs}SPS_{freq}Hz.s8"
]);
$noaa19APT = new \DAL\transmitter();
$noaa19APT->target->set($noaa19);
$noaa19APT->dataType->set($avhrrType);
$noaa19APT->bandwidth->set(34000);
$noaa19APT->centerFrequency->set(137100000);
$noaa19APT->modulation->set($apt);
$noaa19APT->antenna->set($qfh);
$noaa19APT->priority->set(2);
$noaa19APT->processPipe->set($aptPipe);
$noaa19APT->commit();
$stratosatPipe->commit();
$noaa19DSB = new \DAL\transmitter();
$noaa19DSB->target->set($noaa19);
$noaa19DSB->dataType->set($avhrrType);
$noaa19DSB->bandwidth->set(34000);
$noaa19DSB->centerFrequency->set(137770000);
$noaa19DSB->modulation->set($dsb);
$noaa19DSB->antenna->set($qfh);
$noaa19DSB->commit();
/**
* NOAA 19
*/
$noaa19 = new \DAL\target();
$noaa19->name->set("NOAA 19");
$noaa19->type->set($leoWSatTape);
$noaa19->orbit->set("leo");
$noaa19->description->set("NOAA 19 is the fifth in a series of five Polar-orbiting Operational Environmental Satellites (POES) with advanced microwave sounding instruments that provide imaging and sounding capabilities.");
$noaa19->locator->set([
"tle" => [
"line1" => "1 33591U 09005A 23243.18101660 .00000207 00000-0 13587-3 0 9998",
"line2" => "2 33591 99.0938 290.2850 0014342 35.8617 324.3514 14.12812127750532"
]
]);
$noaa19->commit();
$noaa19HRPT = new \DAL\transmitter();
$noaa19HRPT->target->set($noaa19);
$noaa19HRPT->dataType->set($avhrrType);
$noaa19HRPT->bandwidth->set(3000000);
$noaa19HRPT->centerFrequency->set(1698000000);
$noaa19HRPT->modulation->set($hrpt);
$noaa19HRPT->antenna->set($qfh);
$noaa19HRPT->commit();
$noaa19APT = new \DAL\transmitter();
$noaa19APT->target->set($noaa19);
$noaa19APT->dataType->set($avhrrType);
$noaa19APT->bandwidth->set(34000);
$noaa19APT->centerFrequency->set(137100000);
$noaa19APT->modulation->set($apt);
$noaa19APT->antenna->set($qfh);
$noaa19APT->priority->set(2);
$noaa19APT->processPipe->set($aptPipe);
$noaa19APT->commit();
/**
* NOAA 18
*/
$noaa18 = new \DAL\target();
$noaa18->name->set("NOAA 18");
$noaa18->type->set($leoWSatTape);
$noaa18->orbit->set("leo");
$noaa18->description->set("NOAA 18, known before launch as NOAA-N, is a weather forecasting satellite run by NOAA. NOAA-N (18) was launched into a sun-synchronous orbit at an altitude of 854 km above the Earth, with an orbital period of 102 minutes. It hosts the AMSU-A, MHS, AVHRR, Space Environment Monitor SEM/2 instrument and High Resolution Infrared Radiation Sounder (HIRS) instruments, as well as the SBUV/2 ozone-monitoring instrument.");
$noaa18->locator->set([
"tle" => [
"line1" => "1 28654U 05018A 23250.34978256 .00000271 00000-0 16921-3 0 9997",
"line2" => "2 28654 98.9045 324.3258 0015006 144.5825 215.6347 14.13000434943172"
]
]);
$noaa18->commit();
$noaa19DSB = new \DAL\transmitter();
$noaa19DSB->target->set($noaa19);
$noaa19DSB->dataType->set($avhrrType);
$noaa19DSB->bandwidth->set(34000);
$noaa19DSB->centerFrequency->set(137770000);
$noaa19DSB->modulation->set($dsb);
$noaa19DSB->antenna->set($qfh);
$noaa19DSB->commit();
$noaa18APT = new \DAL\transmitter();
$noaa18APT->target->set($noaa18);
$noaa18APT->dataType->set($avhrrType);
$noaa18APT->bandwidth->set(34000);
$noaa18APT->centerFrequency->set(137912500);
$noaa18APT->modulation->set($apt);
$noaa18APT->antenna->set($qfh);
$noaa18APT->priority->set(1);
$noaa18APT->processPipe->set($aptPipe);
$noaa18APT->commit();
$noaa19HRPT = new \DAL\transmitter();
$noaa19HRPT->target->set($noaa19);
$noaa19HRPT->dataType->set($avhrrType);
$noaa19HRPT->bandwidth->set(3000000);
$noaa19HRPT->centerFrequency->set(1698000000);
$noaa19HRPT->modulation->set($hrpt);
$noaa19HRPT->antenna->set($qfh);
$noaa19HRPT->commit();
$noaa18DSB = new \DAL\transmitter();
$noaa18DSB->target->set($noaa18);
$noaa18DSB->dataType->set($avhrrType);
$noaa18DSB->bandwidth->set(34000);
$noaa18DSB->centerFrequency->set(137350000);
$noaa18DSB->modulation->set($dsb);
$noaa18DSB->antenna->set($qfh);
$noaa18DSB->commit();
/**
* NOAA 18
*/
$noaa18 = new \DAL\target();
$noaa18->name->set("NOAA 18");
$noaa18->type->set($leoWSatTape);
$noaa18->orbit->set("leo");
$noaa18->description->set("NOAA 18, known before launch as NOAA-N, is a weather forecasting satellite run by NOAA. NOAA-N (18) was launched into a sun-synchronous orbit at an altitude of 854 km above the Earth, with an orbital period of 102 minutes. It hosts the AMSU-A, MHS, AVHRR, Space Environment Monitor SEM/2 instrument and High Resolution Infrared Radiation Sounder (HIRS) instruments, as well as the SBUV/2 ozone-monitoring instrument.");
$noaa18->locator->set([
"tle" => [
"line1" => "1 28654U 05018A 23250.34978256 .00000271 00000-0 16921-3 0 9997",
"line2" => "2 28654 98.9045 324.3258 0015006 144.5825 215.6347 14.13000434943172"
]
]);
$noaa18->commit();
$noaa18HRPT = new \DAL\transmitter();
$noaa18HRPT->target->set($noaa18);
$noaa18HRPT->dataType->set($avhrrType);
$noaa18HRPT->bandwidth->set(3000000);
$noaa18HRPT->centerFrequency->set(1707000000);
$noaa18HRPT->modulation->set($hrpt);
$noaa18HRPT->antenna->set($qfh);
$noaa18HRPT->commit();
$noaa18APT = new \DAL\transmitter();
$noaa18APT->target->set($noaa18);
$noaa18APT->dataType->set($avhrrType);
$noaa18APT->bandwidth->set(34000);
$noaa18APT->centerFrequency->set(137912500);
$noaa18APT->modulation->set($apt);
$noaa18APT->antenna->set($qfh);
$noaa18APT->priority->set(1);
$noaa18APT->processPipe->set($aptPipe);
$noaa18APT->commit();
/**
* NOAA 15
*/
$noaa15 = new \DAL\target();
$noaa15->name->set("NOAA 15");
$noaa15->type->set($leoWSatTape);
$noaa15->orbit->set("leo");
$noaa15->description->set("");
$noaa15->locator->set([
"tle" => [
"line1" => "1 25338U 98030A 23256.05271705 .00000271 00000-0 13068-3 0 9997",
"line2" => "2 25338 98.6015 283.5892 0011307 61.1013 299.1300 14.26387191317785"
]
]);
$noaa15->commit();
$noaa18DSB = new \DAL\transmitter();
$noaa18DSB->target->set($noaa18);
$noaa18DSB->dataType->set($avhrrType);
$noaa18DSB->bandwidth->set(34000);
$noaa18DSB->centerFrequency->set(137350000);
$noaa18DSB->modulation->set($dsb);
$noaa18DSB->antenna->set($qfh);
$noaa18DSB->commit();
$noaa15APT = new \DAL\transmitter();
$noaa15APT->target->set($noaa15);
$noaa15APT->dataType->set($avhrrType);
$noaa15APT->bandwidth->set(34000);
$noaa15APT->centerFrequency->set(137620000);
$noaa15APT->modulation->set($apt);
$noaa15APT->antenna->set($qfh);
$noaa15APT->priority->set(100);
$noaa15APT->processPipe->set($aptPipe);
$noaa15APT->commit();
$noaa18HRPT = new \DAL\transmitter();
$noaa18HRPT->target->set($noaa18);
$noaa18HRPT->dataType->set($avhrrType);
$noaa18HRPT->bandwidth->set(3000000);
$noaa18HRPT->centerFrequency->set(1707000000);
$noaa18HRPT->modulation->set($hrpt);
$noaa18HRPT->antenna->set($qfh);
$noaa18HRPT->commit();
$noaa15DSB = new \DAL\transmitter();
$noaa15DSB->target->set($noaa15);
$noaa15DSB->dataType->set($avhrrType);
$noaa15DSB->bandwidth->set(34000);
$noaa15DSB->centerFrequency->set(1377700000);
$noaa15DSB->modulation->set($dsb);
$noaa15DSB->antenna->set($qfh);
$noaa15DSB->commit();
/**
* NOAA 15
*/
$noaa15 = new \DAL\target();
$noaa15->name->set("NOAA 15");
$noaa15->type->set($leoWSatTape);
$noaa15->orbit->set("leo");
$noaa15->description->set("");
$noaa15->locator->set([
"tle" => [
"line1" => "1 25338U 98030A 23256.05271705 .00000271 00000-0 13068-3 0 9997",
"line2" => "2 25338 98.6015 283.5892 0011307 61.1013 299.1300 14.26387191317785"
]
]);
$noaa15->commit();
$noaa15HRPT = new \DAL\transmitter();
$noaa15HRPT->target->set($noaa15);
$noaa15HRPT->dataType->set($avhrrType);
$noaa15HRPT->bandwidth->set(3000000);
$noaa15HRPT->centerFrequency->set(1702500000);
$noaa15HRPT->modulation->set($hrpt);
$noaa15HRPT->antenna->set($qfh);
$noaa15HRPT->commit();
$noaa15APT = new \DAL\transmitter();
$noaa15APT->target->set($noaa15);
$noaa15APT->dataType->set($avhrrType);
$noaa15APT->bandwidth->set(34000);
$noaa15APT->centerFrequency->set(137620000);
$noaa15APT->modulation->set($apt);
$noaa15APT->antenna->set($qfh);
$noaa15APT->priority->set(100);
$noaa15APT->processPipe->set($aptPipe);
$noaa15APT->commit();
$meteor23 = new \DAL\target();
$meteor23->name->set("METEOR M2-3");
$meteor23->type->set($leoWSatTape);
$meteor23->orbit->set("leo");
$meteor23->description->set("");
$meteor23->locator->set([
"tle" => [
"line1" => "1 57166U 23091A 23258.09139909 .00000046 00000-0 39414-4 0 9995",
"line2" => "2 57166 98.7568 309.6443 0003662 194.1864 165.9212 14.23842173 11338"
]
]);
$meteor23->commit();
$noaa15DSB = new \DAL\transmitter();
$noaa15DSB->target->set($noaa15);
$noaa15DSB->dataType->set($avhrrType);
$noaa15DSB->bandwidth->set(34000);
$noaa15DSB->centerFrequency->set(1377700000);
$noaa15DSB->modulation->set($dsb);
$noaa15DSB->antenna->set($qfh);
$noaa15DSB->commit();
$meteor23LRPT1 = new \DAL\transmitter();
$meteor23LRPT1->target->set($meteor23);
$meteor23LRPT1->dataType->set($msumrType);
$meteor23LRPT1->bandwidth->set(120000);
$meteor23LRPT1->centerFrequency->set(137900000);
$meteor23LRPT1->modulation->set($lrpt);
$meteor23LRPT1->antenna->set($qfh);
$meteor23LRPT1->priority->set(3);
$meteor23LRPT1->processPipe->set($lrptPipe);
$meteor23LRPT1->commit();
$noaa15HRPT = new \DAL\transmitter();
$noaa15HRPT->target->set($noaa15);
$noaa15HRPT->dataType->set($avhrrType);
$noaa15HRPT->bandwidth->set(3000000);
$noaa15HRPT->centerFrequency->set(1702500000);
$noaa15HRPT->modulation->set($hrpt);
$noaa15HRPT->antenna->set($qfh);
$noaa15HRPT->commit();
$meteor23LRPT2 = new \DAL\transmitter();
$meteor23LRPT2->target->set($meteor23);
$meteor23LRPT2->dataType->set($msumrType);
$meteor23LRPT2->bandwidth->set(120000);
$meteor23LRPT2->centerFrequency->set(137100000);
$meteor23LRPT2->modulation->set($lrpt);
$meteor23LRPT2->antenna->set($qfh);
$meteor23LRPT2->processPipe->set($lrptPipe);
$meteor23LRPT2->commit();
/**
* METEOR M2-3
*/
$meteor23HRPT = new \DAL\transmitter();
$meteor23HRPT->target->set($meteor23);
$meteor23HRPT->dataType->set($msumrType);
$meteor23HRPT->bandwidth->set(3000000);
$meteor23HRPT->centerFrequency->set(1700000000);
$meteor23HRPT->modulation->set($hrpt);
$meteor23HRPT->antenna->set($qfh);
$meteor23HRPT->commit();
$meteor23 = new \DAL\target();
$meteor23->name->set("METEOR M2-3");
$meteor23->type->set($leoWSatTape);
$meteor23->orbit->set("leo");
$meteor23->description->set("");
$meteor23->locator->set([
"tle" => [
"line1" => "1 57166U 23091A 23258.09139909 .00000046 00000-0 39414-4 0 9995",
"line2" => "2 57166 98.7568 309.6443 0003662 194.1864 165.9212 14.23842173 11338"
]
]);
$meteor23->commit();
$maxvalier = new \DAL\target();
$maxvalier->name->set("MAX VALIER SAT");
$maxvalier->type->set($nanosatelliteType);
$maxvalier->orbit->set("leo");
$maxvalier->description->set("");
$maxvalier->locator->set([
"tle" => [
"line1" => "1 42778U 17036P 23282.84620820 .00050788 00000-0 10567-2 0 9991",
"line2" => "2 42778 97.1421 315.3778 0008233 57.6254 302.5791 15.45432755350391"
]
]);
$maxvalier->commit();
$meteor23LRPT1 = new \DAL\transmitter();
$meteor23LRPT1->target->set($meteor23);
$meteor23LRPT1->dataType->set($msumrType);
$meteor23LRPT1->bandwidth->set(120000);
$meteor23LRPT1->centerFrequency->set(137900000);
$meteor23LRPT1->modulation->set($lrpt);
$meteor23LRPT1->antenna->set($qfh);
$meteor23LRPT1->priority->set(3);
$meteor23LRPT1->processPipe->set($lrptPipe);
$meteor23LRPT1->commit();
$maxvalierCW = new \DAL\transmitter();
$maxvalierCW->target->set($maxvalier);
$maxvalierCW->dataType->set($beaconType);
$maxvalierCW->bandwidth->set(120000);
$maxvalierCW->centerFrequency->set(145960000);
$maxvalierCW->modulation->set($cw);
$maxvalierCW->antenna->set($yagi);
$maxvalierCW->priority->set(0);
$maxvalierCW->processPipe->set($cwPipe);
$maxvalierCW->commit();
$meteor23LRPT2 = new \DAL\transmitter();
$meteor23LRPT2->target->set($meteor23);
$meteor23LRPT2->dataType->set($msumrType);
$meteor23LRPT2->bandwidth->set(120000);
$meteor23LRPT2->centerFrequency->set(137100000);
$meteor23LRPT2->modulation->set($lrpt);
$meteor23LRPT2->antenna->set($qfh);
$meteor23LRPT2->processPipe->set($lrptPipe);
$meteor23LRPT2->commit();
$lucky7 = new \DAL\target();
$lucky7->name->set("Lucky 7");
$lucky7->type->set($nanosatelliteType);
$lucky7->orbit->set("sso");
$lucky7->description->set("It is a single unit CubeSat with a size of 112×112×113.5 mm, to be easily traceable in space, available by launch cost and compatible with a variety of launch opportunities. Its aim is to test everyday electronics tweaked for deep space or long-lasting missions such as to the Moon, Mars, and beyond. As their lucky number is seven and it is supposed to be the seventh Czech made satellite in a row, they called it simply Lucky-7.");
$lucky7->locator->set([
"tle" => [
"line1" => "1 44406U 19038W 24094.95219425 .00026482 00000-0 71098-3 0 9995",
"line2" => "2 44406 97.7044 89.1200 0014055 7.8960 352.2502 15.37821998262930"
]
]);
$lucky7->commit();
$meteor23HRPT = new \DAL\transmitter();
$meteor23HRPT->target->set($meteor23);
$meteor23HRPT->dataType->set($msumrType);
$meteor23HRPT->bandwidth->set(3000000);
$meteor23HRPT->centerFrequency->set(1700000000);
$meteor23HRPT->modulation->set($hrpt);
$meteor23HRPT->antenna->set($qfh);
$meteor23HRPT->commit();
$lucky7Telem = new \DAL\transmitter();
$lucky7Telem->target->set($lucky7);
$lucky7Telem->dataType->set($telemetryType);
$lucky7Telem->bandwidth->set(120000);
$lucky7Telem->centerFrequency->set(437525000);
$lucky7Telem->modulation->set($bpsk);
$lucky7Telem->antenna->set($dipole);
$lucky7Telem->priority->set(0);
$lucky7Telem->processPipe->set($luckyPipe);
$lucky7Telem->commit();
/**
* METEOR M2-4
*/
$meteor24 = new \DAL\target();
$meteor24->name->set("METEOR M2-4");
$meteor24->type->set($leoWSatTape);
$meteor24->orbit->set("leo");
$meteor24->description->set("");
$meteor24->locator->set([
"tle" => [
"line1" => "1 57166U 23091A 23258.09139909 .00000046 00000-0 39414-4 0 9995",
"line2" => "2 57166 98.7568 309.6443 0003662 194.1864 165.9212 14.23842173 11338"
]
]);
$meteor24->commit();
$meteor24LRPT1 = new \DAL\transmitter();
$meteor24LRPT1->target->set($meteor23);
$meteor24LRPT1->dataType->set($msumrType);
$meteor24LRPT1->bandwidth->set(120000);
$meteor24LRPT1->centerFrequency->set(137900000);
$meteor24LRPT1->modulation->set($lrpt);
$meteor24LRPT1->antenna->set($qfh);
$meteor24LRPT1->priority->set(3);
$meteor24LRPT1->processPipe->set($lrptPipe);
$meteor24LRPT1->commit();
$meteor24LRPT2 = new \DAL\transmitter();
$meteor24LRPT2->target->set($meteor23);
$meteor24LRPT2->dataType->set($msumrType);
$meteor24LRPT2->bandwidth->set(120000);
$meteor24LRPT2->centerFrequency->set(137100000);
$meteor24LRPT2->modulation->set($lrpt);
$meteor24LRPT2->antenna->set($qfh);
$meteor24LRPT2->processPipe->set($lrptPipe);
$meteor24LRPT2->commit();
$meteor24HRPT = new \DAL\transmitter();
$meteor24HRPT->target->set($meteor23);
$meteor24HRPT->dataType->set($msumrType);
$meteor24HRPT->bandwidth->set(3000000);
$meteor24HRPT->centerFrequency->set(1700000000);
$meteor24HRPT->modulation->set($hrpt);
$meteor24HRPT->antenna->set($qfh);
$meteor24HRPT->commit();
/**
* Max valier sat
*/
$maxvalier = new \DAL\target();
$maxvalier->name->set("MAX VALIER SAT");
$maxvalier->type->set($nanosatelliteType);
$maxvalier->orbit->set("leo");
$maxvalier->description->set("");
$maxvalier->locator->set([
"tle" => [
"line1" => "1 42778U 17036P 23282.84620820 .00050788 00000-0 10567-2 0 9991",
"line2" => "2 42778 97.1421 315.3778 0008233 57.6254 302.5791 15.45432755350391"
]
]);
$maxvalier->commit();
$maxvalierCW = new \DAL\transmitter();
$maxvalierCW->target->set($maxvalier);
$maxvalierCW->dataType->set($beaconType);
$maxvalierCW->bandwidth->set(120000);
$maxvalierCW->centerFrequency->set(145960000);
$maxvalierCW->modulation->set($cw);
$maxvalierCW->antenna->set($yagi);
$maxvalierCW->priority->set(0);
$maxvalierCW->processPipe->set($cwPipe);
$maxvalierCW->commit();
/**
* Lucky 7
*/
$lucky7 = new \DAL\target();
$lucky7->name->set("Lucky 7");
$lucky7->type->set($nanosatelliteType);
$lucky7->orbit->set("sso");
$lucky7->description->set("It is a single unit CubeSat with a size of 112×112×113.5 mm, to be easily traceable in space, available by launch cost and compatible with a variety of launch opportunities. Its aim is to test everyday electronics tweaked for deep space or long-lasting missions such as to the Moon, Mars, and beyond. As their lucky number is seven and it is supposed to be the seventh Czech made satellite in a row, they called it simply Lucky-7.");
$lucky7->locator->set([
"tle" => [
"line1" => "1 44406U 19038W 24094.95219425 .00026482 00000-0 71098-3 0 9995",
"line2" => "2 44406 97.7044 89.1200 0014055 7.8960 352.2502 15.37821998262930"
]
]);
$lucky7->commit();
$lucky7Telem = new \DAL\transmitter();
$lucky7Telem->target->set($lucky7);
$lucky7Telem->dataType->set($telemetryType);
$lucky7Telem->bandwidth->set(120000);
$lucky7Telem->centerFrequency->set(437525000);
$lucky7Telem->modulation->set($gfsk);
$lucky7Telem->antenna->set($dipole);
$lucky7Telem->priority->set(0);
$lucky7Telem->processPipe->set($luckyPipe);
$lucky7Telem->commit();
/**
* Stratosat TK-1
*/
$stratosattk = new \DAL\target();
$stratosattk->name->set("StratoSat TK-1");
$stratosattk->type->set($nanosatelliteType);
$stratosattk->orbit->set("sso");
$stratosattk->description->set("3U Cubesat StratoSat TK-1 is a Stratonautica satellite, created on the basis of a shortened satellite platform Geoscan 3U. One of the three units is a transport container for the delivery of 6 pocketcubes into low Earth orbit (StratoSat TK-1-A, StratoSat TK-1-B, StratoSat TK-1-C, StratoSat TK-1-D, StratoSat TK-1-E, StratoSat TK-1-F). These pico-satellites are intended for educational programs for high school students. Most pocketcubes were made by high school or university students. Each pocketcube operates on an independent power supply system and has radio transmitters and cameras on board. The process of the exit of the satellites from the transport container will be filmed using high-resolution photo and video cameras that are installed on the middle unit. All imagery data taken during the mission will be transmitted to amateurs around the world using open radio-protocol.");
$stratosattk->locator->set([
"tle" => [
"line1" => "1 57167U 23091B 24146.85238156 .00015568 00000+0 91391-3 0 9996",
"line2" => "2 57167 97.6120 199.9936 0015849 190.6793 169.4102 15.11710813 50186"
]
]);
$stratosattk->commit();
$stratosattkTelem = new \DAL\transmitter();
$stratosattkTelem->target->set($stratosattk);
$stratosattkTelem->dataType->set($telemetryType);
$stratosattkTelem->bandwidth->set(120000);
$stratosattkTelem->centerFrequency->set(435870000);
$stratosattkTelem->modulation->set($gfsk);
$stratosattkTelem->antenna->set($dipole);
$stratosattkTelem->priority->set(0);
$stratosattkTelem->processPipe->set($stratosatPipe);
$stratosattkTelem->commit();
/**
* Set autoplans
*/
$autoplan = [];
foreach ($data["plans"] as $target) {
if ($target == "noaa19apt") $autoplan[] = $noaa19APT->id->get();
if ($target == "noaa18apt") $autoplan[] = $noaa18APT->id->get();
if ($target == "noaa15apt") $autoplan[] = $noaa15APT->id->get();
if ($target == "meteorm23") $autoplan[] = $meteor23LRPT1->id->get();
if ($target == "meteorm24") $autoplan[] = $meteor24LRPT1->id->get();
if ($target == "lucky7") $autoplan[] = $lucky7Telem->id->get();
if ($target == "stratosat") $autoplan[] = $stratosattkTelem->id->get();
}
$myStationRcv->autoPlan->set($autoplan);
$myStationRcv->commit();
return [
"gs" => $myStation->id->get(),
"apiKey" => $myStation->apiKey->get()
];
}

183
web/static/js/setup.js Normal file
View File

@ -0,0 +1,183 @@
var pages = ["welcome", "users", "station", "rxtx", "plan", "connect"];
var pagesCntr = [dummyCntr, processUser, processStation, processRxTx, processPlan, connectCntr];
var aPage = 0;
var data = {};
var apiKey = "";
function dummyCntr() {
return true;
}
function connectCntr() {
alert("Waiting until client is connected");
return false;
}
function nextPage(useCntr = true) {
if (aPage + 1 > pages.length) {
window.location.href = "/";
return;
}
if (useCntr && !pagesCntr[aPage]()) return;
document.getElementById(pages[aPage]).style.display = "none";
aPage++;
if (aPage + 1 > pages.length) document.getElementById("done").style.display = "block";
else document.getElementById(pages[aPage]).style.display = "block";
document.getElementById("progress-bar").style.width = aPage / pages.length * 100 + "%";
}
function processUser() {
data["user"] = document.getElementById("username").value;
data["pass"] = document.getElementById("pass1").value;
if (data["user"] == "") {
alert("Username cant be empty");
return false;
}
if (data["pass"] == "") {
alert("Password cant be empty");
return false;
}
if (data["pass"] != document.getElementById("pass2").value) {
alert("Passwords is not same");
return false;
}
return true;
}
function processStation() {
data["lat"] = document.getElementById("lat").value;
data["lon"] = document.getElementById("lon").value;
data["alt"] = document.getElementById("alt").value;
if (data["alt"] == "") {
alert("alt cant be empty");
return false;
}
if (data["lon"] == "") {
alert("lon cant be empty");
return false;
}
if (data["lat"] == "") {
alert("lat cant be empty");
return false;
}
return true;
}
function processRxTx() {
var radio = document.getElementById("radio").value;
if (radio == "RTLSDR") data["params"] = "{\"radio\":\"rtlsdr\",\"gain\":45,\"agc\":false,\"bias\":false,\"fs\":[250000,1024000,1536000,1792000,1920000,2048000,2160000,2400000,2560000,2880000,3200000],\"comment\":\"Auto created by SETUP\"}";
else if (radio == "RFM95") {
var dio = document.getElementById("dio").value;
var nss = document.getElementById("nss").value;
if (dio == "" || nss == "") {
alert("Need dio0 and nss pin");
return false;
}
data["params"] = "{\"radio\":\"RFM95\",\"nss\":" + nss + ",\"dio0\":" + dio + ",\"power\":10,\"comment\":\"Auto created by SETUP\"}";
}
return true;
}
function radioChange() {
if (document.getElementById("radio").value == "RFM95") document.getElementById("rfm-options").style.display = "block";
else document.getElementById("rfm-options").style.display = "none";
}
function processPlan() {
data["plans"] = [];
if (document.getElementById("noaa19").checked) data["plans"].push("noaa19apt");
if (document.getElementById("noaa18").checked) data["plans"].push("noaa18apt");
if (document.getElementById("noaa15").checked) data["plans"].push("noaa15apt");
if (document.getElementById("meteorm23").checked) data["plans"].push("meteorm23lrpt");
if (document.getElementById("meteorm24").checked) data["plans"].push("meteorm24lrpt");
if (document.getElementById("lucky7").checked) data["plans"].push("lucky7");
if (document.getElementById("stratosat").checked) data["plans"].push("stratosat");
data["plans"] = JSON.stringify(data["plans"]);
// now create req on API and create seeds
var dataP = new FormData();
for (var key in data) {
dataP.append(key, data[key]);
}
document.getElementById("nextBtn").style.display = "none";
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
const json = JSON.parse(this.responseText);
console.log(json);
if (json["status"] == false) {
alert("Error when try setup DB: " + req.responseText)
return;
}
document.getElementById("apiKey").value = json["apikey"];
apiKey = json["apikey"];
// pull status every 10s
setTimeout(() => {
getClientStatus();
}, 10000);
nextPage(false);
document.getElementById("nextBtn").style.display = "block";
}
};
xhttp.open("POST", "/api/cron/setup", true);
xhttp.send(dataP);
return false;
}
function getClientStatus() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
const json = JSON.parse(this.responseText);
if (json["status"] == true) {
document.getElementById("waiting").style.display = "none";
document.getElementById("connected").style.display = "block";
if (aPage == 5) {
setTimeout(() => {
nextPage(false);
}, 2000);
}
}
}
};
xhttp.open("GET", "/api/station/amIActive?apiKey=" + apiKey, true);
xhttp.send();
// pull status every 10s
setTimeout(() => {
getClientStatus();
}, 10000);
}

View File

@ -1,8 +1,20 @@
var openTransmitter = null;
function modulationChange() {
var modulation = document.getElementById("transmitter-modulation");
if (modulation.options[modulation.selectedIndex].text == "LORA") {
document.getElementById("lora-params").style.display = "flex";
} else {
document.getElementById("lora-params").style.display = "none";
}
}
function save(targetID) {
var transmitter = new FormData();
var modulationEl = document.getElementById("transmitter-modulation");
var freq = document.getElementById("transmitter-freq").value;
var band = document.getElementById("transmitter-band").value;
var antenna = document.getElementById("transmitter-antenna").value;
@ -10,6 +22,12 @@ function save(targetID) {
var datatype = document.getElementById("transmitter-datatype").value;
var priority = document.getElementById("transmitter-priority").value;
var pipe = document.getElementById("transmitter-pipe").value;
var sf = document.getElementById("transmitter-sf").value;
var codingrate = document.getElementById("transmitter-codingrate").value;
var syncword = document.getElementById("transmitter-syncword").value;
var preamble = document.getElementById("transmitter-preamble").value;
var id = openTransmitter;
transmitter.append('id', id);
@ -22,6 +40,14 @@ function save(targetID) {
transmitter.append('pipe', pipe);
transmitter.append('target', targetID);
if (modulationEl.options[modulationEl.selectedIndex].text == "LORA") {
transmitter.append('lora', 'true');
transmitter.append('sf', sf);
transmitter.append('codingRate', codingrate);
transmitter.append('syncWord', syncword);
transmitter.append('preambleLength', preamble);
}
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {

35
web/static/js/uplinks.js Normal file
View File

@ -0,0 +1,35 @@
function plan() {
var plan = new FormData();
var transmitter = document.getElementById("plan-transmitter").value;
var receiver = document.getElementById("plan-receiver").value;
var start = document.getElementById("plan-start").value;
var delay = document.getElementById("plan-after-down").value;
var data = document.getElementById("plan-data").value;
var delaydUse = document.getElementById("delayd-uplink").checked;
if (delaydUse) {
// 0xFFFFFFFF
start = "2106-02-07T06:28:15";
} else {
delay = 0;
}
plan.append('transmitter', transmitter);
plan.append('receiver', receiver);
plan.append('start', start);
plan.append('delay', delay);
plan.append('data', data);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("created-id").innerHTML = JSON.parse(this.responseText).id;
document.getElementById("created-alert").style.display = "block";
}
};
xhttp.open("POST", "/api/uplink/plan", true);
xhttp.send(plan);
}