rename project to EliteBGS

This commit is contained in:
2021-11-10 21:24:39 +01:00
parent f159b29191
commit df4b5d6914
32 changed files with 62 additions and 69 deletions

View File

@@ -6,7 +6,7 @@ using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace NonaBGS.EDDB {
namespace EliteBGS.EDDB {
public class API {
private static readonly string EDDB_SYSTEMS_ARCHIVE = "https://eddb.io/archive/v6/systems_populated.json";
private static readonly string EDDB_STATIONS_ARCHIVE = "https://eddb.io/archive/v6/stations.json";

View File

@@ -4,7 +4,7 @@ using System.Collections.Generic;
using System.Globalization;
using Newtonsoft.Json.Linq;
namespace NonaBGS.EDDB {
namespace EliteBGS.EDDB {
public class PopulatedSystems {
private string json_file = null;
private JArray root = null;

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.IO;
using Newtonsoft.Json.Linq;
namespace NonaBGS.EDDB {
namespace EliteBGS.EDDB {
public class Stations {
private JObject root = null;
private Dictionary<int, List<string>> by_system_id = null;