Jump Freighter Kill Statistics

I’ve been working with @Lockefox over the past few days to setup his Eve-Prosper zKillboard scraper on my Raspberry Pi LAMP instance that I have in my home lab in order to do some data analysis.

IMG_20131203_211739-1

Let there be Database Rows

The only edits that I had to make to the project code were the database connection details in scraper.ini and a narrowing down of ship classes listed in toaster_shiplist.json. After getting the data into mySQL and importing the invTypes and mapSolarSystems tables from the static dump into my database, I could start to filter and sort the results.

Kicking off the scraper:

pi@charon ~/eve_prosper $ python zkb_scraper.py — startdate=2013-12-01
DB Connection:          GOOD
zKillboard connection:  GOOD
no crash log found.  Executing as normal
Parsed Capital Industrial Ship: [200, 29713239, 0, ‘2013-04-08’] sleep=20.0
Parsed Capital Industrial Ship: [290, 27468307, 1, ‘2012-12-30’] sleep=20.0

Here is the query to get Racial JFs and also include the solar system name and security value:

— Get Racial JFs
SELECT destruction_data.date, destruction_data.week, destruction_data.typeID, destruction_data.systemID, destruction_data.destroyed, invTypes.typeName, mapSolarSystems.solarSystemName, mapSolarSystems.security
FROM destruction_data
JOIN invTypes
ON (destruction_data.typeID = invTypes.typeID)
JOIN mapSolarSystems
ON (destruction_data.systemID = mapSolarSystems.solarsystemID)
WHERE destruction_data.typeID IN (28850, 28844, 28848, 28846)
ORDER BY destruction_data.date DESC

Results

Out of 975 Jump Freighter kills covering 334 days, there is an average of 20 a week killed. It turns out that you are most likely to get caught in Lowsec in a Rhea.

2013-12-01_jf_kills_by_sec

2013-12-01_jf_kills_by_type

When we look at kills by system, Purjola (0.5), a Highsec system in the Forge stands out as the system with the most losses at 54. Not surprisingly the Lowsec system of Sagain (0.4) comes in second, most likely due to the terrible kickout station that I have covered here.

2013-12-01_jf_kills_by_system

 

More coming soon as I start to think of what types of statistics and trends I can pull out of the data. If you have something you would like me to look at, please leave a comment or tweet @K162space.


4 Comments on “Jump Freighter Kill Statistics”

  1. Reverend Mak says:

    Some stats that’d be interesting to see:
    – Which pilot/corp/alliance has most jf kills;
    – Mean and median loss value;
    – Top losec and top nuslec system(s) for kills;
    – Which pilot/corp/alliance has most jf losses;
    – Stats regarding number of pilots on kill;
    – Stats re. shiptypes on kill.

    I’ve been involved in both the ganking and the flying of jf’s, in nulsec alliances and as a public contractor, and I’d love to see whatever analysis you can come up with, really.

  2. […] ausliest. Eine kurze Recherche führte dazu das es bereits etwas vergleichbares gibt. Über K162space bin ich auf das Projekt von @Lockefox (eve-prosper) gestoßen welches genau dies bereits […]

  3. Claire Voyant says:

    I’m interested in hisec Jump Freighter ganks, having survived a few of them myself. With full skills a JF has 80% more hitpoints than a regular freighter so should require 30+ pilots to take it down in hisec. So I would be interested in seeing the security level, the number of pilots involved, and the total damage which then might be used to estimate the JF skill level. Are these JF being taken down by especially large gangs, or due to insufficient JF skill or pilot error (being AFK.) Also value of cargo might be an interesting factor.


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.