Aero GPS Recorder APP
用於記錄ULM比賽痕蹟的應急系統。
生成的文件為CSV格式。它們可以通過Web服務傳輸到服務器,非常容易實現。
Web服務的URL是可配置的。
PHP webservice示例:
<?PHP的
ob_start();
$ sRepTraceGPS =“myrep”;
$ json = array(“success”=> true);
$ jsonDataIN = json_decode($ _ POST [“json”],true);
for($ f = 0; $ f {
$ sFileBase = $ sRepTraceGPS。 “/”。 $ JsonDataIN [$ F] [“FILE_NAME”];
file_put_contents($ sFileBase,$ jsonDataIN [$ f] [“contents”]);
}
$ json [“nb_trace”] = count($ jsonDataIN);
ob_clean();
header(“Content-type:text / html; charset = utf-8”);
echo json_encode($ json);
?>