source: other-projects/maori-lang-detection/mongodb-data/1a_counts_miInUrlPath.json@ 33848

Last change on this file since 33848 was 33848, checked in by ak19, 4 years ago

Tables of mongodb counts (1-5 table) and manual counts (6table). GeoJSON maps for number of web PAGES in MRI and containing MRI.

File size: 1.5 KB
Line 
1/*
2All crawled sites which contain mi (mi.* or */mi) in the URL path.
3
4db.Websites.aggregate([
5 { $match: {urlContainsLangCodeInPath: true} },
6 { $unwind: "$geoLocationCountryCode" },
7 {
8 $group: {
9 _id: "$geoLocationCountryCode",
10 count: { $sum: 1 }
11 }
12 },
13 { $sort : { count : -1} }
14]);
15*/
16
17/* 1 */
18{
19 "_id" : "us",
20 "count" : 408.0
21}
22
23/* 2 */
24{
25 "_id" : "cn",
26 "count" : 123.0
27}
28
29/* 3 */
30{
31 "_id" : "fr",
32 "count" : 34.0
33}
34
35/* 4 */
36{
37 "_id" : "unknown",
38 "count" : 19.0
39}
40
41/* 5 */
42{
43 "_id" : "nz",
44 "count" : 14.0
45}
46
47/* 6 */
48{
49 "_id" : "de",
50 "count" : 12.0
51}
52
53/* 7 */
54{
55 "_id" : "nl",
56 "count" : 8.0
57}
58
59/* 8 */
60{
61 "_id" : "hk",
62 "count" : 7.0
63}
64
65/* 9 */
66{
67 "_id" : "au",
68 "count" : 7.0
69}
70
71/* 10 */
72{
73 "_id" : "ca",
74 "count" : 7.0
75}
76
77/* 11 */
78{
79 "_id" : "gb",
80 "count" : 5.0
81}
82
83/* 12 */
84{
85 "_id" : "jp",
86 "count" : 5.0
87}
88
89/* 13 */
90{
91 "_id" : "ua",
92 "count" : 4.0
93}
94
95/* 14 */
96{
97 "_id" : "ru",
98 "count" : 4.0
99}
100
101/* 15 */
102{
103 "_id" : "vg",
104 "count" : 2.0
105}
106
107/* 16 */
108{
109 "_id" : "sg",
110 "count" : 2.0
111}
112
113/* 17 */
114{
115 "_id" : "dk",
116 "count" : 2.0
117}
118
119/* 18 */
120{
121 "_id" : "se",
122 "count" : 1.0
123}
124
125/* 19 */
126{
127 "_id" : "ie",
128 "count" : 1.0
129}
130
131/* 20 */
132{
133 "_id" : "es",
134 "count" : 1.0
135}
136
137/* 21 */
138{
139 "_id" : "tr",
140 "count" : 1.0
141}
142
143/* 22 */
144{
145 "_id" : "za",
146 "count" : 1.0
147}
148
149/* 23 */
150{
151 "_id" : "cz",
152 "count" : 1.0
153}
154
155/* 24 */
156{
157 "_id" : "eu",
158 "count" : 1.0
159}
Note: See TracBrowser for help on using the repository browser.