The "RandumUsers" directory contains files with random users.
{
"name": {
"first": "Diedre",
"last": "Clinton"
},
"gender": "female",
"birthday": "1959-11-06",
"contact": {
"address": {
"street": "2 Fraser Ave",
"zip": "81223",
"city": "Cotopaxi",
"state":"CO"
},
"email": ["diedre.clinton@nosql-matters.org",
"clinton@nosql-matters.org",
"diedre@nosql-matters.org"],
"region": "719",
"phone": ["719-7055896"]
},
"likes": ["swimming"],
"memberSince":"2009-03-14"
}
In order to import these users, use:
./arangoimp --file names_XXX.json --collection=users --create-collection=true --type=json
where XXX is 100, 1000, 10000, 100000, 200000, 300000.
The Airports directory contains a list of airports with geo information. There are roughly 44000 airports.
"id","ident","type","name","latitude_deg","longitude_deg","elevation_ft","continent","iso_country","iso_region","municipality","scheduled_service","gps_code","iata_code","local_code","home_link","wikipedia_link","keywords"
6523,"00A","heliport","Total Rf Heliport",40.07080078125,-74.9336013793945,11,"NA","US","US-PA","Bensalem","no","00A",,"00A",,,
In order to import these airports, use
./arangoimp --file airports.csv --collection=airports --create-collection=true --type=csv
The IPRanges directory contains IP address ranges and geo information. There are 3.7 Million ranges.
{
"locId" : "17",
"endIpNum" : "16777471",
"startIpNum" : "16777216",
"geo" : [ -27, 133 ]
}
In order to import these locations, use:
./arangoimp --file geoblocks.json --collection=ip_ranges --create-collection=true --type=json