Added SimPositionModel from flight tracker + setup mongo files
This commit is contained in:
parent
0252f115c6
commit
8be3b0fa02
32
Controllers/FlightsimController.cs
Normal file
32
Controllers/FlightsimController.cs
Normal file
@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace EFB.Controllers
|
||||
{
|
||||
//[Route("[controller]")]
|
||||
public class FlightsimController : Controller
|
||||
{
|
||||
private readonly ILogger<FlightsimController> _logger;
|
||||
|
||||
public FlightsimController(ILogger<FlightsimController> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
public IActionResult Index()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||
public IActionResult Error()
|
||||
{
|
||||
return View("Error!");
|
||||
}
|
||||
}
|
||||
}
|
@ -5,5 +5,7 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1"/>
|
||||
<PackageReference Include="MySql.Data" Version="*"/>
|
||||
<PackageReference Include="MongoDB.Driver" Version="*"/>
|
||||
<PackageReference Include="MongoDB.Bson" Version="*"/>
|
||||
</ItemGroup>
|
||||
</Project>
|
53
Models/SimPositionModel.cs
Normal file
53
Models/SimPositionModel.cs
Normal file
@ -0,0 +1,53 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using MongoDB.Bson.Serialization.Attributes;
|
||||
using MongoDB.Bson;
|
||||
using MongoDB.Driver;
|
||||
|
||||
namespace EFB.Models
|
||||
{
|
||||
public class SimPositionModel
|
||||
{
|
||||
[BsonId]
|
||||
public ObjectId Id { get; set; }
|
||||
public string EMail { get; set; } = "";
|
||||
public DateTime LatestPacketUpdate { get; set; }
|
||||
public SimPosition LatestPosition { get; set; } = null;
|
||||
|
||||
public SimPositionModel(string email, SimPosition position){
|
||||
EMail = email;
|
||||
LatestPacketUpdate = DateTime.Now;
|
||||
LatestPosition = position;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
public class SimPosition
|
||||
{
|
||||
public float Latitude { get; set; }
|
||||
public float Longitude { get; set; }
|
||||
public int Altitude { get; set; }
|
||||
|
||||
public SimPosition(float latitude, float longitude, int altitude){
|
||||
Latitude = latitude;
|
||||
Longitude = longitude;
|
||||
Altitude = altitude;
|
||||
}
|
||||
|
||||
//**Packet Processing not required**//
|
||||
|
||||
// public SimPosition(Packet[] data){
|
||||
// if (data[0].Data != null)
|
||||
// {
|
||||
// //Use Linq to search through the packets for a given id and use that data
|
||||
// Latitude = (data.Where(x => x.Id == 22).Select(x => x.Data[0]).ToArray())[0];
|
||||
// Longitude = (data.Where(x => x.Id == 23).Select(x => x.Data[0]).ToArray())[0];
|
||||
// Altitude = Convert.ToInt32((data.Where(x => x.Id == 24).Select(x => x.Data[0]).ToArray())[0]);
|
||||
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
15
Mongo/Mongo.cs
Normal file
15
Mongo/Mongo.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using MongoDB.Driver;
|
||||
using MongoDB.Bson;
|
||||
using EFB.Models;
|
||||
|
||||
namespace EFB.Mongo
|
||||
{
|
||||
public class Mongo
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user