Author |
Topic |
 Ix Forres Caldari Righteous Chaps
|
Posted - 2009.02.23 20:07:00 - [ 1]
Edited by: Ix Forres on 06/06/2010 12:56:30This is a thread intended as a guide to further information, some of which may be scattered far and wide. API Documentation http://wiki.eve-id.net/APIv2_Page_Index (Unofficial but useful)http://www.eveonline.com/api/doc/ (Official but hugely incomplete)API LibrariesPHP ALE, Yapeal, PhealRuby Reve, EAALPython eveapi Python Module, Eveapwhy packageJava EveApi, JEveCommon Lisp Common Lisp API PackagePerl WebService::EveOnline.NET libeveapi, EveAI, Eve ToolboxEquations and CalculationThe Equations page on the EVE-Dev WikiStatic Database DumpTyrannis 1.0.1 Static Data (Various formats, complete)You may also want to investigate the official CCP page with icons if you need the icon files. This page also contains a raw 'dump' (actually a backup file) for MSSQL. (Old Dumps) Tyrannis 1.0Dominion 1.0Apocrypha 1.5Apocrypha 1.3Apocrypha 1.2Apocrypha 1.1Apocrypha 1.0Quantum RiseCorporation Logo Generatorshttp://clg.eve-metrics.com - Corp logo generator, with facility for out-of-alliance corporations to generate their logo for sites to use (limited API) http://www.evecorplogo.net - Corp logo generator Forum Integration ToolsESAM - Simple Machines Forum API integration ( Google Code site) Other ResourcesThe EVE-Dev Wiki HomepageThe EVE-Dev forumCommunityThere is a thriving community of developers on both these forums, the EVE-Dev forum, and on IRC. You can join the #eve-dev channel on irc.coldfront.net using your IRC client of choice. Recommendations include Pidgin, X-Chat (windows version available at http://silverex.org), mIRC (Trialware), and Chatzilla (firefox extension). |
 Amida Ta German Mining and Manufacture Corp. |
Posted - 2009.02.23 21:22:00 - [ 2]
It's missing EveAI.Live, so no glue ready *g* |
 Ix Forres Caldari Righteous Chaps
|
Posted - 2009.02.23 21:40:00 - [ 3]
Originally by: Amida Ta It's missing EveAI.Live, so no glue ready *g*
Oops- missed it! It's up there now. Any other suggestions from anyone? Thought that we should really have a sticky in here with the links anyone starting out would need. |
 Lumy Minmatar Sebiestor Tribe
|
Posted - 2009.02.23 22:45:00 - [ 4]
How about putting all that stuff on Evelopedia ;) Any volunteers? |
 CCP Atropos

 |
Posted - 2009.02.24 17:04:00 - [ 5]
Stuck! |
 Kattie P |
Posted - 2009.03.20 03:26:00 - [ 6]
Check out the results of this query. It identifies what I believe are 227 systems in mapSolarSystems that are incorrectly labelled with respect to their numbers of jump gates (i.e.: fringe, corridor and hub). For instance, Unpas is listed as a corridor, but according to mapSolarSystemJumps, it has three jump gates (Shihuken, Urlen, and Uitra), making it a hub. If I'm somehow misinterpreting the data, please let me know.
select * from ( Select s.solarSystemName, s.solarSystemID, COUNT(1) jumps, s.fringe, case when COUNT(1) = 1 then 1 else 0 end fringe_REAL, s.corridor, case when COUNT(1) = 2 then 1 else 0 end corridor_REAL, s.hub, case when COUNT(1) > 2 then 1 else 0 end hub_REAL from mapSolarSystems s, mapSolarSystemJumps j where s.solarSystemID = j.fromSolarSystemID group by j.fromSolarSystemID, s.solarSystemName, s.solarSystemID, s.security, s.fringe, s.corridor, s.hub ) tbl where (fringe <> fringe_REAL or corridor <> corridor_REAL)
Thanks,
Kattie P. |
 Kattie P |
Posted - 2009.03.20 03:29:00 - [ 7]
I forgot to mention: the above post refers to the Apocrypha data dump (for which I'm very grateful!) |
 Ix Forres Caldari Righteous Chaps
|
Posted - 2009.03.23 20:42:00 - [ 8]
Originally by: Kattie P Check out the results of this query. It identifies what I believe are 227 systems in mapSolarSystems that are incorrectly labelled with respect to their numbers of jump gates (i.e.: fringe, corridor and hub). For instance, Unpas is listed as a corridor, but according to mapSolarSystemJumps, it has three jump gates (Shihuken, Urlen, and Uitra), making it a hub. If I'm somehow misinterpreting the data, please let me know.
select * from ( Select s.solarSystemName, s.solarSystemID, COUNT(1) jumps, s.fringe, case when COUNT(1) = 1 then 1 else 0 end fringe_REAL, s.corridor, case when COUNT(1) = 2 then 1 else 0 end corridor_REAL, s.hub, case when COUNT(1) > 2 then 1 else 0 end hub_REAL from mapSolarSystems s, mapSolarSystemJumps j where s.solarSystemID = j.fromSolarSystemID group by j.fromSolarSystemID, s.solarSystemName, s.solarSystemID, s.security, s.fringe, s.corridor, s.hub ) tbl where (fringe <> fringe_REAL or corridor <> corridor_REAL)
Thanks,
Kattie P.
Should probably bugreport that rather than posting it in a thread unrelated to your plight. Updated main post with new db dump while I was here. |
 Satis Iqulenax Amarr Free Imperial Vikings |
Posted - 2009.03.31 16:02:00 - [ 9]
|
 Lumy Minmatar Sebiestor Tribe
|
Posted - 2009.04.01 23:25:00 - [ 10]
Please, add Entity's corp logo pack http://dl.eve-files.com/media/corp/Entity/corplogos.zip And mine version of generator, too: http://evecorplogo.code-box.sk/ |
 Dav Varan |
Posted - 2009.04.16 21:30:00 - [ 11]
Edited by: Dav Varan on 16/04/2009 21:30:12 From the change log in the apoc dump
---------------------------------- -- REMOVED IN APOCRYPHA ---------------------------------- -- invBlueprintTypes.chanceOfReverseEngineering
This used to hold the base invention chance iirc.
Where do I go to get this information now ?
|
 Satis Iqulenax Amarr Free Imperial Vikings |
Posted - 2009.04.17 13:00:00 - [ 12]
Ix can I make you add: No Api info required to http://www.evecorplogo.net - Corp logo generator since it's working without any api info. another thing you might want to add as well is that it's a online generator that takes either corporation id or corporation names as the request method.
kind Regards Satis |
 Tonto Auri Vhero' Multipurpose Corp
|
Posted - 2009.04.21 00:13:00 - [ 13]
Suggesting removal of "Edited by: ..." lines when editing first post :) |
 Mehan Qualson |
Posted - 2009.04.21 16:55:00 - [ 14]
|
 burbura |
Posted - 2009.05.31 12:14:00 - [ 15]
Does anyone know how to actually install and use the php version?
greetings,
(yeah srr kinda noob on php thingy's |
 Dacen Chilar Caldari Federation of Synthetic Persons
|
Posted - 2009.06.09 20:29:00 - [ 16]
I find it very irritating that you should enter an apiKey in order to get the corpLogo, if just the eve corp id suffice.
Thats not very good programming and it certainly does not need the api(whatever the intentions about the gathered apiKeys are). |
 111010110 |
Posted - 2009.06.15 00:46:00 - [ 17]
Originally by: Dacen Chilar I find it very irritating that you should enter an apiKey in order to get the corpLogo, if just the eve corp id suffice.
Thats not very good programming and it certainly does not need the api(whatever the intentions about the gathered apiKeys are).
This one doesn't need API keys. The other one has a nice harvest of keys this way to use to read other people's forums .. |
 Ix Forres Caldari Righteous Chaps
|
Posted - 2009.07.01 21:28:00 - [ 18]
Originally by: 111010110
Originally by: Dacen Chilar I find it very irritating that you should enter an apiKey in order to get the corpLogo, if just the eve corp id suffice.
Thats not very good programming and it certainly does not need the api(whatever the intentions about the gathered apiKeys are).
This one doesn't need API keys. The other one has a nice harvest of keys this way to use to read other people's forums ..
Yeah, of course. The API functionality in that one is there because it was created before that info could be obtained without the API for corps outside of alliances. That was a recent-ish change and I've just not had time to update it. It doesn't require you to use your API keys; it'll work just fine with any corp, the API bit can be ignored. It doesn't even store keys; there's a simple SQLite backend that stored corpid->graphic/colorid mappings so they could be regenerated without needing to store the keys but I'll delete that now the data's public. |
 JPhoton |
Posted - 2009.09.01 00:09:00 - [ 19]
Originally by: Ix Forres Edited by: Ix Forres on 18/08/2009 18:01:22
Static Database Dump
Apocrypha 1.3 Static Data (Various formats, complete) The above dump contains wormhole data not found in the official static data dump, along with NPC data.
What is the mechanism for downloading the static database dump from zofu? I get directory listings, but no way that I can see to download the files. JP |
 Dragonaire Caldari Corax. PURgE Alliance |
Posted - 2009.09.01 06:13:00 - [ 20]
Might try downloading the latest SDD you can find the links here in thread as it seems someone hasn't updated this thread to reflect 1.5 yet  As to how to download them try clicking on the file name of the one you need and the download should start for you. |
 JPhoton |
Posted - 2009.09.01 16:21:00 - [ 21]
Originally by: Dragonaire Might try downloading the latest SDD you can find the links here in thread as it seems someone hasn't updated this thread to reflect 1.5 yet 
As to how to download them try clicking on the file name of the one you need and the download should start for you.
I appreciate the suggestions. I downloaded the SDD a week ago, but my copy of SQL Server Express 2005 will not read it. I run primarily on a MAC, though I have a PC for PC-only work. I went to zufo to avoid the step of loading into SQL Server and transporting to MySQL or sqlite3 - a step made more difficult because I was unable to read into SQL Server. I am just at the stage of tapping into the data for the first time, so I am content with a previous version. Hence zufo. I also clicked on the names of the files at zufo (with both Firefox and IE browsers), but all I get is a screenfull of binary data - no download. JP |
 Dragonaire Caldari Corax. PURgE Alliance |
Posted - 2009.09.01 16:47:00 - [ 22]
Sounds like you have your browser configured wrong for those file types and it's trying to view them instead of downloading them. Try right chick or whatever a Mac uses for the same thing and tell it to 'save' the file and it should work. You might have 'save as' instead which would also work.
On why you probably couldn't use the latest SDD it's probably because they've now gone to 2008 version which the older version doesn't understand. |
 Ix Forres Caldari Righteous Chaps
|
Posted - 2009.09.01 19:24:00 - [ 23]
Originally by: JPhoton
I also clicked on the names of the files at zufo (with both Firefox and IE browsers), but all I get is a screenfull of binary data - no download.
zofu has a thing about application/octet-stream MIME types. You'll have to right click and hit 'Save as' to download the files. |
 Iwan Petrov |
Posted - 2009.09.27 22:44:00 - [ 24]
Edited by: Iwan Petrov on 27/09/2009 23:08:05 -- delete -- |
 CCP Navigator

 C C P C C P Alliance |
Posted - 2010.05.28 18:06:00 - [ 25]
Re-opening this thread for updates :) |
 slinkor |
Posted - 2010.07.05 15:22:00 - [ 26]
All well and good but where has the page gone where one could actually find their API? |
 Tonto Auri Vhero' Multipurpose Corp
|
Posted - 2010.07.05 21:26:00 - [ 27]
Originally by: slinkor All well and good but where has the page gone where one could actually find their API?
It is the same as always. Your characters - API management. |
 Tonto Auri Vhero' Multipurpose Corp
|
Posted - 2010.09.01 22:30:00 - [ 28]
Referentially interesting: http://www.eveonline.com/ingameboard.asp?a=topic&threadID=1375995 HTTP headers to use in API queries. |
 CCP Zymurgist

 Gallente C C P |
Posted - 2011.01.21 16:59:00 - [ 29]
Awesome work Ix Forres! I've remade the thread here to help maintain and keep it up to date. If anyone has any suggestions to add or improve this topic please post in the new thread  |