forked from fuzzysteve/Eve-Route-Plan
-
Notifications
You must be signed in to change notification settings - Fork 1
LouiseMcMahon/Eve-Nullsec-Route-Planer
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A route planner designed for use in nullsec Allows addition of your jump bridge network and will take it into account when planning routes Attibutation: Original code from: https://github.com/fuzzysteve/Eve-Route-Plan ------------- This code depends on having the Static Data Extract from CCP loaded into a mysql database. Once it is, you need to create the map lists. As it's optimal route only, if you want to keep it in high-sec, you have to remove the low sec connections from the list. The SQL below will create the jump list table you'll need. If you are happy to include lowsec, then the SQL at the very bottom will do it. Only HS: create table mapSolarSystemJumpLists (fromSolarSystemID int(10) primary key,toSolarSystemID text); insert into mapSolarSystemJumpLists (select fromSolarSystemID,group_concat(toSolarSystemID SEPARATOR ',') from mapSolarSystemJumps,mapSolarSystems where mapSolarSystems.solarsystemid=mapSolarSystemJumps.toSolarSystemID and security>=0.5 group by fromSolarSystemID); Low/null sec included: create table mapSolarSystemJumpLists (fromSolarSystemID int(10) primary key,toSolarSystemID text); insert into mapSolarSystemJumpLists (select fromSolarSystemID,group_concat(toSolarSystemID SEPARATOR ',') from mapSolarSystemJumps,mapSolarSystems where mapSolarSystems.solarsystemid=mapSolarSystemJumps.toSolarSystemID group by fromSolarSystemID);
About
Basic route planner for Eve.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- PHP 90.8%
- JavaScript 6.3%
- CSS 2.9%