mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 17:42:41 +00:00
24 lines
810 B
Ucode
24 lines
810 B
Ucode
#!/usr/bin/env ucode
|
|
'use strict';
|
|
let fs = require("fs");
|
|
let ubus = require('ubus').connect();
|
|
|
|
let gps_info = ubus.call('gps', 'info');
|
|
let latitude = gps_info.latitude ?? 0;
|
|
let longitude = gps_info.longitude ?? 0;
|
|
|
|
// afc-location.json file content
|
|
let afc_location = {};
|
|
afc_location.location_type = "ellipse";
|
|
afc_location.location = longitude + ":" + latitude ;
|
|
afc_location.height = gps_info.elevation ?? 0;
|
|
afc_location.height_type = "AMSL";
|
|
afc_location.major_axis = gps_info.major_axis ?? 0;
|
|
afc_location.minor_axis = gps_info.minor_axis ?? 0;
|
|
afc_location.orientation = gps_info.major_orientation ?? 0;
|
|
afc_location.vertical_tolerance = gps_info.vdop ?? 0;
|
|
|
|
let afc_location_json = fs.open("/etc/ucentral/afc-location.json", "w");
|
|
afc_location_json.write(afc_location);
|
|
afc_location_json.close();
|