-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
129 lines (129 loc) · 4.14 KB
/
datapackage.json
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "telecom-operators-of-the-world",
"title": "Telecom operators of the world",
"resources": [
{
"path": "process-revenue.py",
"pathType": "local",
"name": "process-revenue",
"format": "py",
"encoding": "ISO-8859-1"
},
{
"path": "process.py",
"pathType": "local",
"name": "process",
"format": "py",
"encoding": "ISO-8859-1"
},
{
"path": "telecom-operators.csv",
"pathType": "local",
"name": "telecom-operators",
"format": "csv",
"mediatype": "text/csv",
"encoding": "UTF-8",
"dialect": {
"delimiter": ",",
"quoteChar": "\""
},
"schema": {
"fields": [
{
"name": "Rank",
"type": "integer",
"format": "default"
},
{
"name": "Company",
"type": "string",
"format": "default"
},
{
"name": "Main Markets",
"type": "string",
"format": "default"
},
{
"name": "Technology",
"type": "string",
"format": "default"
},
{
"name": "Total Subscription",
"type": "string",
"format": "default"
},
{
"name": "Ownership",
"type": "string",
"format": "default"
}
],
"missingValues": [
""
]
}
},
{
"path": "telecom-revenue.csv",
"pathType": "local",
"name": "telecom-revenue",
"format": "csv",
"mediatype": "text/csv",
"encoding": "UTF-8",
"dialect": {
"delimiter": ",",
"quoteChar": "\""
},
"schema": {
"fields": [
{
"name": "Rank",
"type": "integer",
"format": "default"
},
{
"name": "Company",
"type": "string",
"format": "default"
},
{
"name": "Total Revenue (Billion$)",
"type": "string",
"format": "default"
},
{
"name": "Country",
"type": "string",
"format": "default"
}
],
"missingValues": [
""
]
}
}
],
"readme": "# telecom-operators-of-the-world\r\nThis is a dataset of leading telecom operators of the world\r\n\r\n## Data\r\n### List of mobile network operators:\r\nData is obtained from https://en.wikipedia.org/wiki/List_of_mobile_network_operators\r\nThe data contains \r\n \r\n * The overall rank of the mobile network company.\r\n * Their main markets.\r\n * Technology they use\r\n * Total Subscription\r\n * Ownership of the company\r\n This data can be viewed in telecom-operators.csv\r\n\r\n### List of mobile network operators:\r\nData is obtained from https://en.wikipedia.org/wiki/List_of_telephone_operating_companies\r\nThe data contains \r\n \r\n * The overall rank of the mobile network company.\r\n * Name of the company\r\n * Total Revenue\r\n * Country of the company\r\n This data can be viewed in telecom-revenue.csv\r\n\r\n\r\n\r\n## Preparation\r\n* The process.py and process-revenue scripts fetch data from table on wikipedia\r\n* The data is extracted and cleaned in python and written to a csv file.\r\n* Libraries used requests,beautifulsoup,csv\r\n\r\n## License\r\n[Public Domain Dedication and License v1.0](http://www.opendatacommons.org/licenses/pddl/1.0/)\r\n",
"description": "# telecom-operators-of-the-world\r\nThis is a dataset of leading telecom operators of the world\r\n\r\n## ",
"licenses": [
{
"name": "ODC-PDDL",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License"
}
],"views": [
{
"name": "Revenue generated by Telecom companies",
"title": "Revenue generated by Telecom companies",
"resources": ["telecom-revenue"],
"specType": "simple",
"spec": {
"type": "bar",
"group": "Company",
"series": [ "Total Revenue (Billion$)" ]
}
}
]
}