forked from codeafrica/github-africa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerateGeoJSON.php
107 lines (97 loc) · 2.98 KB
/
generateGeoJSON.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
/*
* (C) Copyright 2015 Jerome Meinke and others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Contributors:
* Jerome Meinke, Freiburg, https://github.com/jmeinke
*/
require_once("config.php");
if (!defined("DEBUG"))
exit("Error: Configuration constants not found...\n");
try {
// Initialize the MongoDB connection
$conn = new MongoClient();
} catch ( MongoConnectionException $e ) {
exit("Couldn't connect to mongodb, is the \"mongo\" process running?\n");
}
try {
$db = $conn->github;
$cityCoords = $db->cityCoords;
$num_cities = $cityCoords->find()->count();
echo "There are ". $num_cities ." cities in the collection.\n";
}
catch (MongoException $e) {
exit($e->getMessage());
}
try {
$geoInfo = array();
echo "Listing user counts for all cities.\n";
foreach ($cityCoords->find() as $city) {
if (isset($city["gh_total_count"]) && $city["gh_total_count"] > 0) {
$tc = $city["gh_total_count"];
$i = 0;
$topCityUsers = "Top ten users: <br/>";
$users = $city["gh_users"];
// usort($users, "sort_by_rank");
foreach ($users as $user) {
if ($i > 9) break;
$topCityUsers .= "<div class=\"gh_profile\">"
."<img src=\"".$user["avatar_url"]."\" />"
."<a href=\"".$user["html_url"]."\">"
.strip_tags($user["login"])
."</a>
</div>";
$i++;
};
$topCityUsers .= "</ul>";
$lat = floatval($city["latitude"]);
$lng = floatval($city["longitude"]);
echo $city["city_ascii"] .": ". $tc .": ". $lat .": ". $lng ."\n";
$geoInfo[] = array(
"id" => $city["_id"]->__toString(),
"type" => "Feature",
"properties" => array(
"title" => $tc ." in ".$city["city_ascii"],
"description" => $topCityUsers,
"radius" => 5 + (int)(log($tc) * ($tc / 8000))
),
"geometry" => array(
"type" => "Point",
"coordinates" => array(
$lng,
$lat
)
)
);
}
}
$geoJSON = array(
"type" => 'FeatureCollection',
"features" => $geoInfo
);
$geoJSON = json_encode($geoJSON, JSON_PRETTY_PRINT);
// Write the geo information to a file
$jsFile = fopen(GEO_JSON_FILE, 'w+');
fwrite($jsFile, "var europe_info = ". $geoJSON .";\n");
fclose($jsFile);
}
catch (MongoException $e) {
exit($e->getMessage()."\n");
}
/*
function sort_by_rank($u1, $u2) {
return $u1["rank"] > $u2["rank"];
}
*/