This file contains hidden or 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
| #Requires AutoHotkey v2.0 | |
| #SingleInstance Force | |
| filePath := "C:\Users\thc282\AppData\Roaming\Cognosphere\HYP\1_1\fedata\Cache\Cache_Data\data_1" | |
| try { | |
| fileContent := FileRead(filePath) | |
| } catch Error as e { | |
| MsgBox "❌ 無法讀取:" e.Message | |
| ExitApp | |
| } |
This file contains hidden or 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
| // constants | |
| var N_0 = 819069.80; // northing of projection origin | |
| var E_0 = 836694.05; // easting of projection origin | |
| var m_0 = 1; // scale factor | |
| var lat_0 = (22 + 18 / 60 + 43.68 / 3600) * Math.PI / 180; // DMS to radian, lat of projection origin | |
| var lng_0 = (114 + 10 / 60 + 42.80 / 3600) * Math.PI / 180; // DMS to decimal, lng of projection origin | |
| var M_0 = 0; // meridian distance measured from equator to origin | |
| var a = 0; | |
| var f = 0; |
⚠⚠⚠⚠⚠this must be set when new a renderer object⚠⚠⚠⚠⚠
{preserveDrawingBuffer: true}
//⚠⚠⚠⚠⚠this must be set when new a renderer object⚠⚠⚠⚠⚠
//{preserveDrawingBuffer: true}
const renderer = new THREE.WebGLRenderer({preserveDrawingBuffer: true});
//set a id for getting the canvas
renderer.domElement.id = 'screenshot';speed = (currentTime - startTime) / (endTime - startTime)
frame = Date.now()
const speed = (frame - positions[0].frame) / (positions[0 + delay].frame - positions[1 + delay].frame);
- The interpolation factor
speedrepresents the position between the two most recent positions in the positions array. frameis the current frame of the game.positions[0].frameis the frame of the most recent position in the positions array.positions[0 + delay].frameandpositions[1 + delay].frameare the frames of the two most recent positions, with a delay offset.
This file contains hidden or 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
| //Get the device type | |
| let system = navigator.userAgent | |
| let isAndroid = system.indexOf('Android') > -1 || system.indexOf('Adr') > -1 // android终端 | |
| let isiOS = !!system.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/) //ios终端 | |
| let Androidurl = "https://www.androidurl.com" | |
| let Appleurl = "https://www.Appleurl.com" | |
| // Open the Google Maps link in a new tab | |
| var newWindow = window.open('', '_blank') // Noted: this window.open() must be call outside the async, since safari blocked .open() inside any async function |
This file contains hidden or 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
| //Convert to csv | |
| downloadCSVFromJson = (filename, arrayOfJson) => { | |
| // convert JSON to CSV | |
| const replacer = (key, value) => value === null ? '' : value // specify how you want to handle null values here | |
| const header = Object.keys(arrayOfJson[0]) | |
| let csv = arrayOfJson.map(row => header.map(fieldName => | |
| JSON.stringify(row[fieldName], replacer)).join(',')) | |
| csv.unshift(header.join(',')) | |
| csv = csv.join('\r\n') |
This file contains hidden or 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
| <!--add this into <head> part --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
NewerOlder

