GT2/Ejectable/GT2.tsx

333 lines
9.3 KiB
TypeScript
Raw Normal View History

2021-08-25 02:25:04 +00:00
import React, { useState, useEffect, Component } from 'react';
2021-08-24 00:02:21 +00:00
import * as Location from 'expo-location';
2021-08-20 11:24:38 +00:00
import { Text, View } from './components/Themed';
2021-08-24 15:43:25 +00:00
import { StyleSheet } from 'react-native';
2021-08-25 02:25:04 +00:00
import * as geolib from 'geolib';
import { GeolibInputCoordinates } from 'geolib/es/types';
2021-08-24 00:02:21 +00:00
2021-08-25 02:25:04 +00:00
var debug:number = 9;
var testCount = 0;
var bgEnabled:boolean = false;
2021-08-24 00:02:21 +00:00
var expoGeoState:any = null;
export var locEnabled:boolean = false;
const heartbeat:number = 500;
const displayBeat:number = 3;
2021-08-25 02:25:04 +00:00
const ticksPerDs = 1;
const geoLibAccuracy = 0.34;
2021-08-20 11:24:38 +00:00
const styles = StyleSheet.create({
tripText: {
marginHorizontal: -10,
marginVertical: 60,
2021-08-23 06:34:16 +00:00
textAlign: 'left',
2021-08-20 11:24:38 +00:00
width: "80%",
fontSize: 12,
fontWeight: 'bold',
}});
2021-08-25 02:25:04 +00:00
interface expoGeoObj {
coords: [
altitude:number,
altitudeAccuracy:number,
latitude:number,
accuracy:number,
longitude:number,
heading:number,
speed:number,
timestamp:number
]
}
2021-08-20 11:24:38 +00:00
2021-08-25 02:25:04 +00:00
class Coordinate {
2021-08-22 04:30:04 +00:00
2021-08-25 02:25:04 +00:00
public mLatitude:number = 0.0;
public mLongitude:number = 0.0;
public glCoords:any = {};
constructor (longitude:number, latitude:number) {
this.mLongitude = longitude;
this.mLatitude = latitude;
this,this.get_glcoords();
}
public get_glcoords() {
this.glCoords['lat'] = this.mLatitude;
this.glCoords['lon'] = this.mLongitude;
}
public distanceTo(otherPoint:Coordinate) : number {
return geolib.getDistance(this.glCoords,otherPoint.glCoords,geoLibAccuracy);
}
}
async function startTracking(client:any){
if (debug > 5) console.log('Starting tracking')
if(!client.location){
client.location = await Location.watchPositionAsync({
accuracy: Location.Accuracy.Highest,
distanceInterval: 3,
timeInterval: (heartbeat / 2),
}, (loc) => {
Trips.deltaLoc(loc)
});
}
}
async function stopTracking(client:any){
if (debug > 5) console.log('Remove tracking')
await client.location.remove();
}
2021-08-24 00:02:21 +00:00
class Trip {
2021-08-20 11:24:38 +00:00
2021-08-24 00:02:21 +00:00
public elapsed:string = "00.00.00";
ticks:number = 0;
interval:any;
segments:number = 1;
ds:number = 0;
CO2:number = 0.0;
2021-08-25 02:25:04 +00:00
location:any = null;
lastDSFixTick = 0;
lastFix:Coordinate = new Coordinate(0.0,0.0);
loc:Coordinate = new Coordinate(0.0,0.0);
2021-08-24 00:02:21 +00:00
2021-08-20 11:24:38 +00:00
tick() {let hours:number = 0, minutes:number = 0, seconds:number = 0;
2021-08-25 02:25:04 +00:00
this.ticks += ( 1000 / heartbeat ) ;
2021-08-24 00:02:21 +00:00
hours = this.ticks < 3600 ? 0 : (this.ticks / 3600);
minutes = this.ticks < 60 ? 0 : (this.ticks - (hours * 3600)) / 60;
seconds = this.ticks % 60;
2021-08-25 02:25:04 +00:00
this.elapsed = hours.toFixed(0) + ":" + minutes.toFixed(0) + ":" + seconds.toFixed(0);
}
public start() { this.interval = setInterval(() => this.tick(), heartbeat);
if (!bgEnabled) startTracking(this);
}
public resume() { this.lastFix.mLatitude = 0.0;
2021-08-24 00:02:21 +00:00
this.segments++;
this.interval = setInterval(() => this.tick(), heartbeat); }
2021-08-25 02:25:04 +00:00
public stop() { Trips.distance += this.ds;
this.ds = 0.0;
2021-08-24 00:02:21 +00:00
clearInterval(this.interval);
2021-08-25 02:25:04 +00:00
if (!bgEnabled) stopTracking(this);
2021-08-24 00:02:21 +00:00
}
}
2021-08-20 11:24:38 +00:00
export class GT2 {
2021-08-24 00:02:21 +00:00
trip:Trip = new Trip();
endPoint:Coordinate = new Coordinate(0.0,0.0);
startPoint:Coordinate = new Coordinate(0.0,0.0);
2021-08-21 07:45:27 +00:00
2021-08-23 06:34:16 +00:00
displayInterval:number = displayBeat * heartbeat;
public distance:number = 0.0;
2021-08-24 00:02:21 +00:00
co2Rate:number = 250.0;
2021-08-23 06:34:16 +00:00
z:number = 0.0;
2021-08-24 00:02:21 +00:00
public v:number = 0.0;
2021-08-23 06:34:16 +00:00
public inProgress:boolean = false;
public paused:boolean = false;
public elapsed:number = 0.0;
elevation:number = 0.0;
2021-08-24 00:02:21 +00:00
public units:string = "km";
public CO2Effect:string = "carbon burden";
2021-08-23 06:34:16 +00:00
nTrips:number = 0;
2021-08-24 00:02:21 +00:00
n:number = 0.0;
m:number = 0.0;
2021-08-23 06:34:16 +00:00
public deltaLoc(lastFix:any) {
2021-08-24 00:02:21 +00:00
lastFix = JSON.stringify(lastFix);
let expoFix:expoGeoObj = JSON.parse(lastFix);
2021-08-23 06:34:16 +00:00
2021-08-25 02:25:04 +00:00
if (testCount < 1) {
var n:number = -1;
var nyc:Coordinate = new Coordinate ( 40.7128 , 74.0060 );
var ord:Coordinate = new Coordinate ( 41.8781 , 87.6298);
n = nyc.distanceTo(ord);
console.log('nyc ord ' + n);
testCount++;
2021-08-22 04:30:04 +00:00
2021-08-24 00:02:21 +00:00
}
2021-08-20 11:24:38 +00:00
2021-08-25 02:25:04 +00:00
this.trip.loc.mLongitude = expoFix.coords['longitude'];
this.trip.loc.mLatitude = expoFix.coords['latitude'];
this.trip.loc.get_glcoords();
if (Trips.startPoint.mLatitude == 0.0) {
Trips.startPoint.mLatitude = this.trip.loc.mLatitude;
Trips.startPoint.mLongitude = this.trip.loc.mLongitude;
this.trip.loc.get_glcoords();
}
if (this.trip.lastFix.mLatitude != 0.0) {
if ((this.trip.ticks - this.trip.lastDSFixTick) >= ticksPerDs) {
this.trip.lastDSFixTick = this.trip.ticks;
this.trip.lastFix.mLatitude = this.trip.loc.mLatitude;
this.trip.lastFix.mLatitude = this.trip.loc.mLatitude;
this.trip.loc.get_glcoords();
this.trip.ds += this.trip.lastFix.distanceTo(this.trip.loc);
if (debug > 8) console.log(this.trip.ds);
}
}
else {
this.trip.lastFix.mLatitude = this.trip.loc.mLatitude;
this.trip.lastFix.mLatitude = this.trip.loc.mLatitude;
this.trip.loc.get_glcoords();
}
2021-08-20 11:24:38 +00:00
}
public end() {
2021-08-24 00:02:21 +00:00
this.trip.stop();
2021-08-20 11:24:38 +00:00
this.inProgress = false;
2021-08-23 06:34:16 +00:00
this.nTrips++;
2021-08-24 00:02:21 +00:00
2021-08-20 11:24:38 +00:00
}
2021-08-24 00:02:21 +00:00
public setLocEnabled(value:boolean) { locEnabled = value}
2021-08-20 11:24:38 +00:00
public pause() {
2021-08-23 06:34:16 +00:00
if (!this.paused) {
2021-08-24 00:02:21 +00:00
this.trip.stop();
2021-08-23 06:34:16 +00:00
this.paused = true;
} else {
2021-08-24 00:02:21 +00:00
this.trip.resume();
2021-08-23 06:34:16 +00:00
this.paused = false;
}
2021-08-20 11:24:38 +00:00
}
2021-08-24 00:02:21 +00:00
public reset() {
this.distance = 0.0;
this.endPoint = new Coordinate(0,0);
this.startPoint = new Coordinate(0,0);
this.v = 0;
this.inProgress = false;
this.paused = false;
this.elapsed = 0.0;
}
2021-08-20 11:24:38 +00:00
public start() {
2021-08-23 06:34:16 +00:00
this.reset();
2021-08-24 00:02:21 +00:00
this.trip = new Trip();
this.trip.start();
2021-08-20 11:24:38 +00:00
this.inProgress = true;
2021-08-24 00:02:21 +00:00
2021-08-20 11:24:38 +00:00
}
2021-08-24 00:02:21 +00:00
lt:number = 0.0;
public getTripSummary() : string {
2021-08-25 02:25:04 +00:00
var preferredUnits:number = ((this.units == 'km') ? (this.distance / 1000)
: (this.distance / 1609.34));
2021-08-24 00:02:21 +00:00
return (
'Elapsed - ' + this.trip.elapsed + '\n' +
'Origin: ' + 'lat: ' + this.trip.loc.mLatitude.toFixed(8) +
' long: ' + this.trip.loc.mLongitude.toFixed(8) + '\n' +
'Destination: ' + 'lat: ' + this.trip.loc.mLatitude.toFixed(8) +
2021-08-25 02:25:04 +00:00
' long: ' + this.trip.loc.mLongitude.toFixed(8) + '\n' +
'CO2: ' + this.trip.CO2 + ' grams ' + this.CO2Effect + '\n\n' +
'Distance covered while consuming fuel: ' + preferredUnits.toFixed(4) + ' ' + this.units );
2021-08-24 00:02:21 +00:00
}
2021-08-23 06:34:16 +00:00
public getTripPanel() : string {
2021-08-25 02:25:04 +00:00
var bigDS:number = this.distance + this.trip.ds;
2021-08-24 00:02:21 +00:00
if (this.inProgress) {
return (
'Elapsed - ' + this.trip.elapsed + '\n' +
'Geo: ' + 'lat: ' + this.trip.loc.mLatitude.toFixed(8) +
' long: ' + this.trip.loc.mLongitude.toFixed(8) + '\n' +
2021-08-25 02:25:04 +00:00
'Vector: ' + 'distance: ' + bigDS.toFixed(4) + ' velocity: ' + this.v + 'm/s \n' +
2021-08-23 06:34:16 +00:00
'Altitude: ' + this.elevation + '\n');
2021-08-24 00:02:21 +00:00
}
else return("No trip in progress. " + this.nTrips + " trip(s) completed.");
2021-08-23 06:34:16 +00:00
}
}
export class TripDisplay extends React.Component {
constructor(props:any) {
super(props);
this.state = { seconds: 0 };
}
interval:any;
tick() {
this.setState(state => ({
seconds: 1
}));
}
componentDidMount() {
this.interval = setInterval(() => this.tick(), Trips.displayInterval);
}
componentWillUnmount() {
clearInterval(this.interval);
}
render() {
2021-08-20 11:24:38 +00:00
2021-08-25 02:25:04 +00:00
if (debug > 10)
2021-08-24 00:02:21 +00:00
return(
<View>
<Text style={styles.tripText}>
{Trips.getTripPanel() }
</Text>
</View> );
else;
return(
<View>
2021-08-22 04:30:04 +00:00
<Text style={styles.tripText}>
2021-08-23 06:34:16 +00:00
{Trips.getTripPanel() }
2021-08-22 04:30:04 +00:00
</Text>
2021-08-24 00:02:21 +00:00
<Text>{expoGeoState}</Text>
</View> );
2021-08-20 11:24:38 +00:00
}
}
2021-08-24 00:02:21 +00:00
export class TripSummary extends React.Component {
2021-08-24 15:43:25 +00:00
handleRefresh = () => {
// by calling this method react re-renders the component
this.setState({});
};
2021-08-24 00:02:21 +00:00
render() {
return(
<View>
<Text style={styles.tripText}>
{Trips.getTripSummary() }
</Text>
</View> );
}
}
2021-08-23 06:34:16 +00:00
export var Trips:GT2 = new GT2();