python-stdnum branch master updated. 1.3
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
python-stdnum branch master updated. 1.3
- From: Commits of the python-stdnum project <python-stdnum-commits [at] lists.arthurdejong.org>
- To: python-stdnum-commits [at] lists.arthurdejong.org
- Reply-to: python-stdnum-users [at] lists.arthurdejong.org
- Subject: python-stdnum branch master updated. 1.3
- Date: Sat, 5 Mar 2016 23:53:44 +0100 (CET)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-stdnum".
The branch, master has been updated
via 41cecb5f2714d75a09e35385fd45b15fb8a03d29 (commit)
via 64577342c86a759a6c72905774ca269bf1820f03 (commit)
from 0061564e7718e8ea3e881030d71736822a3166da (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://arthurdejong.org/git/python-stdnum/commit/?id=41cecb5f2714d75a09e35385fd45b15fb8a03d29
commit 41cecb5f2714d75a09e35385fd45b15fb8a03d29
Author: Arthur de Jong <arthur@arthurdejong.org>
Date: Sat Mar 5 23:42:43 2016 +0100
Get files ready for 1.3 release
diff --git a/ChangeLog b/ChangeLog
index 9307465..a78944c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,62 @@
+2016-03-03 Arthur de Jong <arthur@arthurdejong.org>
+
+ * [6457734] getcnloc.py, getiban.py, stdnum/cn/loc.dat,
+ stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat:
+ Update database files
+
+ This also updates the getcnloc and getiban scripts to use new URLs.
+
+2015-10-30 Arthur de Jong <arthur@arthurdejong.org>
+
+ * [0061564] stdnum/dk/cpr.py, stdnum/iban.py, stdnum/imei.py,
+ stdnum/isbn.py, stdnum/isil.py, stdnum/issn.py, stdnum/nl/bsn.py,
+ stdnum/us/ssn.py, stdnum/verhoeff.py: Integrate information from
+ the wiki
+
+ This adds the information that was previously in the Trac wiki
+ into the source docstrings because the Trac instance is being
+ phased out.
+
+ This also includes small updates to the ISIL module.
+
+2015-10-28 Arthur de Jong <arthur@arthurdejong.org>
+
+ * [96c8151] stdnum/eu/vat.py: Fix SOAP client re-use
+
+ This fixes a bug when checking re-use of the global SOAP client
+ object. The object could not be evaluated in boolean context
+ so is no explicitly compared to None. For suds a MethodNotFound
+ exception would be raised for __nonzero__() (which Python uses
+ for boolean comparison).
+
+2015-10-28 Lionel Elie Mamane <lionel@mamane.lu>
+
+ * [2881b86] stdnum/eu/vat.py: Fix problem with check_vies_approx()
+
+2015-10-15 Ronald Paloschi <ronald.paloschi@gmail.com>
+
+ * [fb0efe0] stdnum/iso6346.py, tests/test_iso6346.doctest: Fix
+ for when ISO 6346 checksum is 10
+
+ Bug fix for when the checksum is 10, it was compared to 0 and
+ failed. New doctest exposing the bug that passes after the fix
+ is applied.
+
+ See: https://github.com/arthurdejong/python-stdnum/pull/30
+
+2015-10-11 Arthur de Jong <arthur@arthurdejong.org>
+
+ * [1361817] ChangeLog, MANIFEST.in, NEWS, README, docs/index.rst,
+ docs/stdnum.at.businessid.rst, docs/stdnum.br.cnpj.rst,
+ docs/stdnum.ch.uid.rst, docs/stdnum.ch.vat.rst,
+ docs/stdnum.cusip.rst, docs/stdnum.de.wkn.rst,
+ docs/stdnum.ee.ik.rst, docs/stdnum.fi.associationid.rst,
+ docs/stdnum.fi.ytunnus.rst, docs/stdnum.gb.sedol.rst,
+ docs/stdnum.imo.rst, docs/stdnum.isin.rst, docs/stdnum.mx.rfc.rst,
+ docs/stdnum.pl.pesel.rst, docs/stdnum.pl.regon.rst,
+ docs/stdnum.ru.inn.rst, setup.py, stdnum/__init__.py: Get files
+ ready for 1.2 release
+
2015-10-11 Arthur de Jong <arthur@arthurdejong.org>
* [1327045] getcnloc.py, stdnum/cn/loc.dat, stdnum/iban.dat,
diff --git a/NEWS b/NEWS
index f40fdee..50e94c4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+changes from 1.2 to 1.3
+-----------------------
+
+* fix ISO 6346 check digit calculation (thanks Ronald Paloschi)
+* fix problem with check_vies_approx() (thanks Lionel Elie Mamane)
+* fix problem with SOAP client when using suds
+* include documentation that was previously on the Trac wiki
+
+
changes from 1.1 to 1.2
-----------------------
diff --git a/getnumlist.py b/getnumlist.py
index 97c91bc..4c74479 100755
--- a/getnumlist.py
+++ b/getnumlist.py
@@ -2,7 +2,7 @@
# getnumlist.py - script to get a list of number formats in stdnum
#
-# Copyright (C) 2012, 2013 Arthur de Jong
+# Copyright (C) 2012-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -57,7 +57,7 @@ if __name__ == '__main__':
for module in get_number_modules():
print ' %s' % module.__name__.replace('stdnum.', '')
print ''
- print 'For index.xml:'
+ print 'For formats.xml:'
print ''
for module in get_number_modules():
print ' <li>%s</li>' % util.get_module_name(module)
diff --git a/setup.py b/setup.py
index 2562691..d91a7a9 100755
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
# setup.py - python-stdnum installation script
#
-# Copyright (C) 2010-2015 Arthur de Jong
+# Copyright (C) 2010-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/stdnum/__init__.py b/stdnum/__init__.py
index 78c033d..8da7c35 100644
--- a/stdnum/__init__.py
+++ b/stdnum/__init__.py
@@ -1,7 +1,7 @@
# __init__.py - main module
# coding: utf-8
#
-# Copyright (C) 2010-2015 Arthur de Jong
+# Copyright (C) 2010-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -153,4 +153,4 @@ parsing, validation, formatting or conversion functions.
# the version number of the library
-__version__ = '1.2'
+__version__ = '1.3'
http://arthurdejong.org/git/python-stdnum/commit/?id=64577342c86a759a6c72905774ca269bf1820f03
commit 64577342c86a759a6c72905774ca269bf1820f03
Author: Arthur de Jong <arthur@arthurdejong.org>
Date: Thu Mar 3 22:44:46 2016 +0100
Update database files
This also updates the getcnloc and getiban scripts to use new URLs.
diff --git a/getcnloc.py b/getcnloc.py
index 136cbf2..c0aac87 100755
--- a/getcnloc.py
+++ b/getcnloc.py
@@ -3,7 +3,7 @@
# getcnloc.py - script to fetch data from the CN Open Data community
#
# Copyright (C) 2014-2015 Jiangge Zhang
-# Copyright (C) 2015 Arthur de Jong
+# Copyright (C) 2015-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -54,7 +54,7 @@ data_revisions = [
def fetch_data():
data_collection = OrderedDict()
for revision in data_revisions:
- response = requests.get('%s/raw/master/%s.txt' % (data_url, revision))
+ response = requests.get('%s/raw/release/%s.txt' % (data_url, revision))
if response.ok:
print('%s is fetched' % revision, file=sys.stderr)
else:
diff --git a/getiban.py b/getiban.py
index e026293..44d9f19 100755
--- a/getiban.py
+++ b/getiban.py
@@ -2,7 +2,7 @@
# getiban.py - script to donwload and parse data from the IBAN registry
#
-# Copyright (C) 2011-2015 Arthur de Jong
+# Copyright (C) 2011-2016 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -28,7 +28,7 @@ import urllib
# The place where the current version of IBAN_Registry.txt can be downloaded.
-download_url = 'http://www.swift.com/dsp/resources/documents/IBAN_Registry.txt'
+download_url = 'https://www.swift.com/node/11971'
def clean_row(row):
diff --git a/stdnum/cn/loc.dat b/stdnum/cn/loc.dat
index 1fcb87b..f7b1a79 100644
--- a/stdnum/cn/loc.dat
+++ b/stdnum/cn/loc.dat
@@ -1,6 +1,6 @@
# generated from National Bureau of Statistics of the People's
# Republic of China, downloaded from https://github.com/cn/GB2260
-# 2015-10-11 10:02:20.899770
+# 2016-03-02 22:38:33.696025
110101 county="东城区" prefecture="市辖区" province="北京市"
110102 county="西城区" prefecture="市辖区" province="北京市"
110103 county="崇文区" prefecture="市辖区" province="北京市"
diff --git a/stdnum/iban.dat b/stdnum/iban.dat
index 69710fa..e9fce12 100644
--- a/stdnum/iban.dat
+++ b/stdnum/iban.dat
@@ -1,5 +1,5 @@
# generated from IBAN_Registry.txt, downloaded from
-# http://www.swift.com/dsp/resources/documents/IBAN_Registry.txt
+# https://www.swift.com/node/11971
AL country="Albania" bban="8!n16!c"
AD country="Andorra" bban="4!n4!n12!c"
AT country="Austria" bban="5!n11!n"
@@ -54,11 +54,12 @@ PL country="Poland" bban="8!n16!n"
PT country="Portugal" bban="4!n4!n11!n2!n"
QA country="Qatar" bban="4!a21!c"
RO country="Romania" bban="4!a16!c"
-LC country="Saint Lucia" bban="4!a24n"
+LC country="Saint Lucia" bban="4!a24!n"
SM country="San Marino" bban="1!a5!n5!n12!c"
ST country="Sao Tome And Principe" bban="8!n11!n2!n"
SA country="Saudi Arabia" bban="2!n18!c"
RS country="Serbia" bban="3!n13!n2!n"
+SC country="Seychelles" bban="4a!2n!2n!16n!3a!"
SK country="Slovak Republic" bban="4!n6!n10!n"
SI country="Slovenia" bban="5!n8!n2!n"
ES country="Spain" bban="4!n4!n1!n1!n10!n"
@@ -67,6 +68,7 @@ CH country="Switzerland" bban="5!n12!c"
TL country="Timor-Leste" bban="3!n14!n2!n"
TN country="Tunisia" bban="2!n3!n13!n2!n"
TR country="Turkey" bban="5!n1!n16!c"
+UA country="Ukraine" bban="6!n19!c"
AE country="United Arab Emirates" bban="3!n16!n"
GB country="United Kingdom" bban="4!a6!n8!n"
VG country="Virgin Islands, British" bban="4!a16!n"
diff --git a/stdnum/imsi.dat b/stdnum/imsi.dat
index fa0f5c3..f665ff8 100644
--- a/stdnum/imsi.dat
+++ b/stdnum/imsi.dat
@@ -100,15 +100,15 @@
30 bands="" cc="fr" country="France" operator="Symacom" status=""
31 bands="MVNO" brand="Vectone Mobile" cc="fr" country="France"
operator="Mundio Mobile" status="Operational"
88 bands="GSM 900 / GSM 1800" brand="Bouygues" cc="fr" country="France"
operator="Bouygues Telecom" status="Operational"
- 89 bands="" cc="fr" country="France" operator="Omer Telecom Ltd" status="Not
operational"
+ 89 bands="" cc="fr" country="France" operator="Fondation b-com" status=""
90 bands="" cc="fr" country="France" operator="Images & Réseaux" status=""
91 bands="" cc="fr" country="France" operator="Orange S.A." status=""
92 bands="TD-LTE 2300 / LTE 2600" brand="Com4Innov" cc="fr" country="France"
operator="Association Plate-forme Télécom" status="Operational"
- 93 bands="" cc="fr" country="France" operator="TDF" status=""
+ 93 bands="" cc="fr" country="France" operator="TDF" status="Not operational"
94 bands="" cc="fr" country="France" operator="Halys" status=""
00-99
212
- 01 bands="GSM 1800 / UMTS 2100 / LTE 2600" brand="Office des Telephones"
cc="mc" country="Monaco" operator="Monaco Telecom" status="Operational"
+ 01 bands="GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600" brand="Office
des Telephones" cc="mc" country="Monaco" operator="Monaco Telecom"
status="Operational"
00-99
213
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Mobiland" cc="ad"
country="Andorra" operator="Servei De Tele. DAndorra" status="Operational"
@@ -150,8 +150,9 @@
51 bands="GSM-R" brand="ADIF" cc="es" country="Spain" operator="Administrador
de Infraestructuras Ferroviarias" status="Operational"
00-99
216
- 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800" brand="Telenor" cc="hu"
country="Hungary" operator="Telenor Magyarország Zrt." status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800" brand="Telenor Hungary"
cc="hu" country="Hungary" operator="Telenor Magyarország Zrt."
status="Operational"
02 bands="" cc="hu" country="Hungary" operator="MVM Net Ltd." status=""
+ 03 bands="1800" brand="DIGI" cc="hu" country="Hungary" operator="DIGI
Telecommunication Ltd." status=""
30 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800 / LTE 1800 / LTE 2600"
brand="T-Mobile" cc="hu" country="Hungary" operator="Magyar Telekom Plc"
status="Operational"
70 bands="GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900" brand="Vodafone" cc="hu"
country="Hungary" operator="Vodafone Magyarország Zrt." status="Operational"
71 bands="MVNO" brand="UPC Hungary" cc="hu" country="Hungary" operator="UPC
Hungary Ltd." status="Operational"
@@ -177,27 +178,27 @@
07 bands="CDMA 450" cc="rs" country="Serbia" operator="Orion Telekom"
status="Operational"
00-99
222
- 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600"
brand="TIM" cc="it" country="Italy" operator="Telecom Italia SpA"
status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="TIM" cc="it" country="Italy" operator="Telecom Italia S.p.A"
status="Operational"
02 bands="Satellite (Globalstar)" brand="Elsacom" cc="it" country="Italy"
status="Not operational"
04 bands="" brand="Intermatica" cc="it" country="Italy" status=""
05 bands="" brand="Telespazio" cc="it" country="Italy" status=""
- 06 bands="" brand="Vodafone" cc="it" country="Italy" operator="Vodafone
Omnitel B.V." status=""
+ 06 bands="" brand="Vodafone" cc="it" country="Italy" operator="Vodafone
Italia S.p.A." status=""
07 bands="MVNO" brand="Nòverca" cc="it" country="Italy" operator="Nòverca
Italia" status="Not operational"
- 10 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600"
brand="Vodafone" cc="it" country="Italy" operator="Vodafone Omnitel B.V."
status="Operational"
+ 10 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="Vodafone" cc="it" country="Italy" operator="Vodafone Italia
S.p.A." status="Operational"
30 bands="GSM-R 900" brand="RFI" cc="it" country="Italy" operator="Rete
Ferroviaria Italiana" status="Operational"
- 33 bands="MVNO" brand="Poste Mobile" cc="it" country="Italy" operator="Poste
Mobile SpA" status="Operational"
+ 33 bands="MVNO" brand="Poste Mobile" cc="it" country="Italy" operator="Poste
Mobile S.p.A." status="Operational"
34 bands="MVNO" brand="BT Italia" cc="it" country="Italy" operator="British
Telecom Italia" status="Reserved"
- 35 bands="MVNO" brand="Lyca Italy" cc="it" country="Italy"
operator="Lycamobile" status="Operational"
+ 35 bands="MVNO" brand="Lycamobile" cc="it" country="Italy"
operator="Lycamobile" status="Operational"
36 bands="" brand="Digi Mobil" cc="it" country="Italy" operator="Digi Italy
S.r.l." status=""
- 37 bands="" brand="3 Italia" cc="it" country="Italy" operator="Hutchison 3G"
status=""
- 38 bands="" brand="LINKEM" cc="it" country="Italy" operator="Linkem SpA"
status=""
+ 37 bands="" brand="3 Italia" cc="it" country="Italy" operator="H3G S.p.A."
status=""
+ 38 bands="" brand="LINKEM" cc="it" country="Italy" operator="Linkem S.p.A."
status=""
39 bands="" brand="SMS Italia" cc="it" country="Italy" operator="SMS Italia
S.r.l." status=""
- 43 bands="" brand="TIM" cc="it" country="Italy" operator="Telecom Italia SpA"
status=""
- 48 bands="" brand="TIM" cc="it" country="Italy" operator="Telecom Italia SpA"
status=""
+ 43 bands="" brand="TIM" cc="it" country="Italy" operator="Telecom Italia
S.p.A." status=""
+ 48 bands="" brand="TIM" cc="it" country="Italy" operator="Telecom Italia
S.p.A." status=""
77 bands="UMTS 2100" brand="IPSE 2000" cc="it" country="Italy" status="Not
operational"
- 88 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600"
brand="Wind" cc="it" country="Italy" operator="Wind Telecomunicazioni SpA"
status="Operational"
- 98 bands="GSM 900" brand="BLU s.p.a" cc="it" country="Italy" operator="BLU
s.p.a" status="Not operational"
- 99 bands="UMTS 900 / UMTS 2100 / LTE 1800" brand="3 Italia" cc="it"
country="Italy" operator="Hutchison 3G" status="Operational"
+ 88 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600"
brand="Wind" cc="it" country="Italy" operator="Wind Telecomunicazioni S.p.A."
status="Operational"
+ 98 bands="GSM 900" brand="BLU" cc="it" country="Italy" operator="BLU S.p.A."
status="Not operational"
+ 99 bands="UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600" brand="3 Italia"
cc="it" country="Italy" operator="H3G S.p.A." status="Operational"
00-99
226
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
TD-LTE 2600" brand="Vodafone" cc="ro" country="Romania" operator="Vodafone
România" status="Operational"
@@ -220,15 +221,17 @@
07 bands="GSM 1800" brand="IN&Phone" cc="ch" country="Switzerland"
operator="IN&Phone SA" status="Not operational"
08 bands="GSM 1800" brand="Tele4u" cc="ch" country="Switzerland"
operator="TelCommunication Services AG" status="Operational"
09 bands="" cc="ch" country="Switzerland" operator="Comfone AG" status=""
- 12 cc="ch" country="Switzerland" operator="Sunrise" status="Inactive"
+ 12 brand="Sunrise" cc="ch" country="Switzerland" operator="Sunrise
Communications AG" status="Inactive"
50 bands="UMTS 2100" cc="ch" country="Switzerland" operator="3G Mobile AG"
status="Not operational"
51 bands="MVNO" cc="ch" country="Switzerland" operator="BebbiCell AG"
status="Operational"
52 brand="Barablu" cc="ch" country="Switzerland" operator="Barablu"
status="Not operational"
53 bands="MVNO" cc="ch" country="Switzerland" operator="UPC Cablecom GmbH"
status="Operational"
54 bands="MVNO" cc="ch" country="Switzerland" operator="Lycamobile AG"
status="Operational"
55 bands="" cc="ch" country="Switzerland" operator="WeMobile SA" status=""
- 56 bands="" cc="ch" country="Switzerland" operator="SMSRelay AG" status=""
+ 56 bands="" cc="ch" country="Switzerland" operator="SMSRelay AG" status="Not
operational"
57 bands="" cc="ch" country="Switzerland" operator="Mitto AG" status=""
+ 58 bands="MVNO" cc="ch" country="Switzerland" operator="Beeone Communications
SA" status="Operational"
+ 60 bands="" brand="Sunrise" cc="ch" country="Switzerland" operator="Sunrise
Communications AG" status=""
99 cc="ch" country="Switzerland" operator="Swisscom" status=""
00-99
230
@@ -237,8 +240,8 @@
03 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800 / LTE 900 / LTE 1800 / LTE
2100" brand="Vodafone" cc="cz" country="Czech Republic" operator="Vodafone
Czech Republic" status="Operational"
04 bands="CDMA2000 410 - 430" brand="U:fon" cc="cz" country="Czech Republic"
operator="Air Telecom a. s." status="Operational"
05 bands="" cc="cz" country="Czech Republic" operator="TRAVEL
TELEKOMMUNIKATION, s.r.o." status="Not operational"
- 06 bands="" cc="cz" country="Czech Republic" operator="OSNO TELECOMUNICATION,
s.r.o." status=""
- 07 bands="MVNO" cc="cz" country="Czech Republic" operator="ASTELNET, s.r.o."
status="Operational"
+ 06 bands="" cc="cz" country="Czech Republic" operator="OSNO TELECOMUNICATION,
s.r.o." status="Not operational"
+ 07 bands="MVNO" cc="cz" country="Czech Republic" operator="ASTELNET, s.r.o."
status="Not operational"
08 bands="" cc="cz" country="Czech Republic" operator="Compatel s.r.o."
status=""
09 bands="MVNO" cc="cz" country="Czech Republic" operator="Mundio
Distribution Czech Republic s.r.o." status=""
98 bands="GSM-R 900" cc="cz" country="Czech Republic" operator="Správa
železniční dopravní cesty, s.o." status="Operational"
@@ -275,18 +278,18 @@
19 bands="" cc="at" country="Austria" operator="Tele2 Telecommunication GmbH"
status=""
20 bands="" cc="at" country="Austria" operator="MTEL Austrija GmbH" status=""
91 bands="GSM-R" brand="GSM-R A" cc="at" country="Austria" operator="ÖBB"
status="Operational"
- 92 bands="" cc="at" country="Austria" operator="ArgoNET GmbH" status=""
+ 92 bands="CDMA 450" brand="ArgoNET" cc="at" country="Austria"
operator="ArgoNET GmbH" status="Operational"
00-99
234
00 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="BT" cc="gb" country="United
Kingdom" operator="BT Group" status="Operational"
- 01 bands="GSM 1800" brand="Vectone Mobile" cc="gb" country="United Kingdom"
operator="Mundio Mobile Limited" status="Operational"
+ 01 bands="MVNO" brand="Vectone Mobile" cc="gb" country="United Kingdom"
operator="Mundio Mobile Limited" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800" brand="O2
(UK)" cc="gb" country="United Kingdom" operator="Telefónica Europe"
status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Airtel-Vodafone" cc="gb"
country="United Kingdom" operator="Jersey Airtel Limited" status="Operational"
04 bands="GSM 1800" brand="FMS Solutions Ltd" cc="gb" country="United
Kingdom" operator="FMS Solutions Ltd" status="Reserved"
05 cc="gb" country="United Kingdom" operator="COLT Mobile Telecommunications
Limited" status=""
06 cc="gb" country="United Kingdom" operator="Internet Computer Bureau
Limited" status=""
- 07 bands="GSM 1800" cc="gb" country="United Kingdom" operator="Cable &
Wireless Worldwide" status="Operational"
- 08 cc="gb" country="United Kingdom" operator="OnePhone (UK) Ltd" status=""
+ 07 bands="GSM 1800" cc="gb" country="United Kingdom" operator="Vodafone"
status="Operational"
+ 08 cc="gb" country="United Kingdom" operator="BT OnePhone (UK) Ltd" status=""
09 cc="gb" country="United Kingdom" operator="Tismi BV" status=""
10 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800" brand="O2
(UK)" cc="gb" country="United Kingdom" operator="Telefónica Europe"
status="Operational"
11 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800" brand="O2
(UK)" cc="gb" country="United Kingdom" operator="Telefónica Europe"
status="Operational"
@@ -317,14 +320,18 @@
36 bands="GSM 900 / GSM 1800 / LTE" brand="Sure Mobile" cc="gb"
country="United Kingdom" operator="Sure (Isle of Man) Limited"
status="Operational"
37 bands="" cc="gb" country="United Kingdom" operator="Synectiv Ltd" status=""
38 bands="" brand="Virgin Mobile UK" cc="gb" country="United Kingdom"
operator="Virgin Media" status=""
- 39 bands="" cc="gb" country="United Kingdom" operator="SSE Energy Supply
Limited" status=""
+ 39 bands="" cc="gb" country="United Kingdom" operator="Gamma Telecom Holdings
Ltd." status=""
50 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="JT" cc="gb" country="United Kingdom" operator="JT Group
Limited" status="Operational"
51 bands="TD-LTE 3500 / TD-LTE 3700" brand="UK Broadband" cc="gb"
country="United Kingdom" operator="UK Broadband Limited" status="Operational"
52 bands="" cc="gb" country="United Kingdom" operator="Shyam Telecom UK Ltd"
status=""
- 53 bands="" cc="gb" country="United Kingdom" operator="Limitless Mobile Ltd"
status=""
+ 53 bands="MVNO" cc="gb" country="United Kingdom" operator="Limitless Mobile
Ltd" status="Operational"
54 bands="" cc="gb" country="United Kingdom" operator="The Carphone Warehouse
Limited" status=""
55 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Sure Mobile" cc="gb"
country="United Kingdom" operator="Sure (Guernsey) Limited" status="Operational"
+ 56 bands="" cc="gb" country="United Kingdom" operator="CESG" status=""
+ 57 bands="" cc="gb" country="United Kingdom" operator="Sky UK Limited"
status=""
58 bands="GSM 900 / UMTS 2100 / LTE 800 / LTE 1800" brand="Pronto GSM"
cc="gb" country="United Kingdom" operator="Manx Telecom" status="Operational"
+ 59 bands="MVNO" cc="gb" country="United Kingdom" operator="Limitless Mobile
Ltd" status="Operational"
+ 70 bands="" cc="gb" country="United Kingdom" operator="AMSUK Ltd." status=""
76 bands="GSM 900 / GSM 1800" brand="BT" cc="gb" country="United Kingdom"
operator="BT Group" status="Operational"
78 bands="TETRA" brand="Airwave" cc="gb" country="United Kingdom"
operator="Airwave Solutions Ltd" status="Operational"
86 bands="" cc="gb" country="United Kingdom" operator="EE" status=""
@@ -336,7 +343,7 @@
03 bands="" brand="UK Broadband" cc="gb" country="United Kingdom"
operator="UK Broadband Limited" status=""
77 brand="BT" cc="gb" country="United Kingdom" operator="BT Group" status=""
91 cc="gb" country="United Kingdom" operator="Vodafone United Kingdom"
status=""
- 92 cc="gb" country="United Kingdom" operator="Cable & Wireless UK" status=""
+ 92 cc="gb" country="United Kingdom" operator="Vodafone United Kingdom"
status=""
94 cc="gb" country="United Kingdom" operator="Hutchison 3G UK Ltd" status=""
95 cc="gb" country="United Kingdom" operator="Network Rail Infrastructure
Limited" status=""
00-99
@@ -375,7 +382,7 @@
06 bands="UMTS 2100" brand="Telenor" cc="se" country="Sweden"
operator="Telenor Sverige AB" status="Operational"
07 bands="UMTS 2100 / LTE 800 / LTE 900 / LTE 1800 / LTE 2600" brand="Tele2"
cc="se" country="Sweden" operator="Tele2 Sverige AB" status="Operational"
08 bands="GSM 900 / GSM 1800" brand="Telenor" cc="se" country="Sweden"
operator="Telenor Sverige AB" status="Not operational"
- 09 bands="MVNO" brand="djuice" cc="se" country="Sweden" operator="Telenor
Mobile Sweden AS" status="Not operational"
+ 09 bands="" cc="se" country="Sweden" operator="Communication for Devices in
Sweden AB" status=""
10 brand="Spring Mobil" cc="se" country="Sweden" operator="Spring Mobil AB"
status="Operational"
11 bands="" cc="se" country="Sweden" operator="Lindholmen Science Park AB"
status="Not operational"
12 bands="MVNO" brand="Lycamobile" cc="se" country="Sweden"
operator="Lycamobile Sweden Limited" status="Operational"
@@ -393,7 +400,7 @@
24 bands="GSM 900 / LTE 800 / LTE 900 / LTE 1800 / LTE 2600" brand="Sweden
2G" cc="se" country="Sweden" operator="Net4Mobility HB" status="Operational"
25 bands="" cc="se" country="Sweden" operator="Digitel Mobile Srl"
status="Not operational"
26 bands="GSM" cc="se" country="Sweden" operator="Beepsend AB"
status="Operational"
- 27 bands="MVNO" cc="se" country="Sweden" operator="Fogg Mobile AB"
status="Operational"
+ 27 bands="MVNO" cc="se" country="Sweden" operator="GlobeTouch AB"
status="Operational"
28 bands="" cc="se" country="Sweden" operator="CoolTEL Aps" status=""
29 bands="" cc="se" country="Sweden" operator="Mercury International Carrier
Services" status=""
30 bands="" cc="se" country="Sweden" operator="NextGen Mobile Ltd." status=""
@@ -435,42 +442,47 @@
00-99
244
03 bands="GSM 1800" brand="DNA" cc="fi" country="Finland" operator="DNA Oy"
status="Operational"
- 04 bands="MVNO" brand="AINA" cc="fi" country="Finland" operator="DNA Oy /
Aina Oyj" status="Operational"
+ 04 bands="MVNO" brand="AINA" cc="fi" country="Finland" operator="TeliaSonera
Finland Oyj / Aina Oyj" status="Not operational"
05 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="Elisa" cc="fi" country="Finland" operator="Elisa Oyj"
status="Operational"
07 bands="GSM 900 / GSM 1800" brand="Nokia" cc="fi" country="Finland"
operator="Nokia Test Network" status="Not operational"
08 bands="GSM 1800 / UMTS 2100" brand="Nokia" cc="fi" country="Finland"
operator="Nokia Test Network" status="Not operational"
09 bands="GSM 900" cc="fi" country="Finland" operator="Nokia Solutions and
Networks Oy" status="Not operational"
- 10 bands="" cc="fi" country="Finland" operator="Viestintävirasto" status=""
- 11 bands="MVNO" brand="Vectone Mobile" cc="fi" country="Finland"
operator="Mundio Mobile Oy" status="Operational"
+ 10 bands="MVNO" cc="fi" country="Finland" operator="Viestintävirasto"
status="Not operational"
+ 11 bands="MVNO" cc="fi" country="Finland" operator="Viestintävirasto"
status="Not operational"
12 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="DNA" cc="fi" country="Finland" operator="DNA Oy"
status="Operational"
13 bands="GSM 900 / GSM 1800" brand="DNA" cc="fi" country="Finland"
operator="DNA Oy" status="Not operational"
14 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="Ålcom"
cc="fi" country="Finland" operator="Ålands Telekommunikation Ab"
status="Operational"
15 bands="GSM 1800" brand="SAMK" cc="fi" country="Finland"
operator="Satakunta University of Applied Sciences" status="Not operational"
16 bands="MVNO" brand="Tele2" cc="fi" country="Finland" operator="Oy Finland
Tele2 AB" status="Not operational"
- 17 bands="GSM-R" brand="RHK" cc="fi" country="Finland" operator="Finnish
Transport Agency" status="Operational"
+ 17 bands="GSM-R" brand="Corenet" cc="fi" country="Finland" operator="Corenet
Oy / Finnish Transport Agency" status="Operational"
21 bands="MVNO" brand="Elisa- Saunalahti" cc="fi" country="Finland"
operator="Elisa Oyj" status="Operational"
25 bands="CDMA" brand="Datame" cc="fi" country="Finland" operator="Datame Oy"
status="Not operational"
26 bands="MVNO" brand="Compatel" cc="fi" country="Finland" operator="Compatel
Ltd" status="Operational"
27 bands="" cc="fi" country="Finland" operator="VTT Technical Research Centre
of Finland" status=""
29 bands="MVNO" cc="fi" country="Finland" operator="SCNL Truphone"
status="Not operational"
- 30 bands="MVNO" brand="Vectone Mobile" cc="fi" country="Finland"
operator="Mundio Mobile Oy" status="Operational"
+ 30 bands="MVNO" brand="Vectone Mobile" cc="fi" country="Finland"
operator="Mundio Mobile Oy" status="Not Operational"
31 bands="MVNO" brand="Kuiri" cc="fi" country="Finland" operator="Ukko Mobile
Oy" status="Operational"
32 bands="MVNO" brand="Voxbone" cc="fi" country="Finland" operator="Voxbone
SA" status="Operational"
33 bands="TETRA" brand="VIRVE" cc="fi" country="Finland" operator="Virve
Tuotteet ja Palvelut Oy" status="Operational"
- 34 bands="" brand="Elektrobit Wireless" cc="fi" country="Finland"
operator="Elektrobit Wireless Communications Oy" status="Operational"
+ 34 bands="MVNO" brand="Bittium Wireless" cc="fi" country="Finland"
operator="Bittium Wireless Oy" status="Operational"
35 bands="LTE 450" brand="Ukko Mobile" cc="fi" country="Finland"
operator="Ukkoverkot Oy" status="Operational"
- 36 bands="" brand="Sonera" cc="fi" country="Finland" operator="TeliaSonera
Finland Oyj" status=""
+ 36 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="Sonera / DNA" cc="fi" country="Finland" operator="TeliaSonera
Finland Oyj / Suomen Yhteisverkko Oy" status="Operational"
+ 37 bands="MVNO" brand="Tismi" cc="fi" country="Finland" operator="Tismi BV"
status="Operational"
+ 38 bands="" cc="fi" country="Finland" operator="Nokia Solutions and Networks
Oy" status="Operational"
+ 39 bands="" cc="fi" country="Finland" operator="Nokia Solutions and Networks
Oy" status="Operational"
+ 40 bands="" cc="fi" country="Finland" operator="Nokia Solutions and Networks
Oy" status="Operational"
+ 41 bands="" cc="fi" country="Finland" operator="Nokia Solutions and Networks
Oy" status="Operational"
91 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="Sonera" cc="fi" country="Finland" operator="TeliaSonera
Finland Oyj" status="Operational"
00-99
246
- 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800" brand="Omnitel" cc="lt"
country="Lithuania" status="Operational"
- 02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="BITĖ" cc="lt"
country="Lithuania" operator="UAB Bitė Lietuva" status="Operational"
- 03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="Tele
2" cc="lt" country="Lithuania" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800 / LTE 1800"
brand="Omnitel" cc="lt" country="Lithuania" status="Operational"
+ 02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="BITĖ" cc="lt" country="Lithuania" operator="UAB Bitė Lietuva"
status="Operational"
+ 03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="Tele 2" cc="lt" country="Lithuania" status="Operational"
04 bands="" cc="lt" country="Lithuania" operator="Ministry of the Interior)"
status=""
05 bands="GSM-R 900" brand="LitRail" cc="lt" country="Lithuania"
operator="Lietuvos geležinkeliai (Lithuanian Railways)" status="Operational"
- 06 bands="GSM 1800" brand="Mediafon" cc="lt" country="Lithuania"
operator="UAB Mediafon" status="Operational"
+ 06 bands="" brand="Mediafon" cc="lt" country="Lithuania" operator="UAB
Mediafon" status="Operational"
07 bands="" cc="lt" country="Lithuania" operator="Compatel Ltd." status=""
- 08 bands="WiMAX 3500" brand="MEZON" cc="lt" country="Lithuania"
operator="Lietuvos radijo ir televizijos centras" status="Operational"
+ 08 bands="WiMAX 3500 / LTE 3500" brand="MEZON" cc="lt" country="Lithuania"
operator="Lietuvos radijo ir televizijos centras" status="Operational"
00-99
247
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800" brand="LMT"
cc="lv" country="Latvia" operator="Latvian Mobile Telephone"
status="Operational"
@@ -484,13 +496,13 @@
09 bands="MVNO" brand="Camel Mobile" cc="lv" country="Latvia" operator="Camel
Mobile" status="Operational"
00-99
248
- 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="EMT" cc="ee" country="Estonia" operator="Estonian Mobile
Telecom" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="Telia" cc="ee" country="Estonia" operator="Estonian Mobile
Telecom" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600" brand="Elisa" cc="ee" country="Estonia" operator="Elisa Eesti"
status="Operational"
- 03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600"
brand="Tele 2" cc="ee" country="Estonia" operator="Tele 2 Eesti"
status="Operational"
+ 03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2100 / LTE 2600" brand="Tele 2" cc="ee" country="Estonia" operator="Tele 2
Eesti" status="Operational"
04 bands="MVNO" cc="ee" country="Estonia" operator="OY Top Connect"
status="Operational"
05 bands="" cc="ee" country="Estonia" operator="AS Bravocom Mobiil" status=""
06 bands="UMTS 2100" cc="ee" country="Estonia" operator="Progroup Holding"
status="Operational"
- 07 bands="" cc="ee" country="Estonia" operator="Televõrgu AS" status=""
+ 07 bands="CDMA2000 450" brand="Kou" cc="ee" country="Estonia"
operator="Televõrgu AS" status="Not operational"
08 bands="MVNO" brand="VIVEX" cc="ee" country="Estonia" operator="VIVEX OU"
status="Operational"
09 bands="" cc="ee" country="Estonia" operator="Bravo Telecom" status=""
10 bands="" cc="ee" country="Estonia" operator="Telcotrade OÜ" status=""
@@ -499,7 +511,7 @@
250
01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 1800 /
LTE 2600 / TD-LTE 2600" brand="MTS" cc="ru" country="Russian Federation"
operator="Mobile TeleSystems" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600"
brand="MegaFon" cc="ru" country="Russian Federation" operator="MegaFon OJSC -
previously known as North-West GSM" status="Operational"
- 03 bands="GSM 900 / GSM 1800" brand="NCC" cc="ru" country="Russian
Federation" operator="Nizhegorodskaya Cellular Communications"
status="Operational"
+ 03 bands="GSM 900 / GSM 1800" brand="NCC" cc="ru" country="Russian
Federation" operator="Nizhegorodskaya Cellular Communications (purchased
Tele2)" status="Operational"
04 bands="GSM 900" brand="Sibchallenge" cc="ru" country="Russian Federation"
operator="Sibchallenge" status="Not operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100 / CDMA2000 450" brand="ETK" cc="ru"
country="Russian Federation" operator="Yeniseytelecom" status="Operational"
06 bands="CDMA2000 450" brand="Skylink" cc="ru" country="Russian Federation"
operator="CJSC Saratov System of Cellular Communications" status="Operational"
@@ -520,6 +532,7 @@
23 bands="GSM 900 / GSM 1800" brand="Mobicom - Novosibirsk" cc="ru"
country="Russian Federation" operator="Mobicom - Novosibirsk" status="Not
operational"
28 bands="GSM 900" brand="Beeline" cc="ru" country="Russian Federation"
operator="Beeline" status="Not operational"
32 bands="GSM 900 / GSM 1800" brand="Win Mobile" cc="ru" country="Russian
Federation" operator="K-Telecom" status="Operational"
+ 34 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Krymtelekom" cc="ru"
country="Russian Federation" operator="Krymtelekom" status="Operational"
35 bands="GSM 1800 / LTE 1800" brand="MOTIV" cc="ru" country="Russian
Federation" operator="EKATERINBURG-2000" status="Operational"
38 bands="GSM 900 / GSM 1800" brand="Tambov GSM" cc="ru" country="Russian
Federation" operator="Central Telecommunication Company" status="Operational"
39 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800 / TD-LTE 2300 / LTE 2600"
brand="Rostelecom" cc="ru" country="Russian Federation" operator="ROSTELECOM"
status="Operational"
@@ -533,12 +546,12 @@
99 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 800 / LTE 2600"
brand="Beeline" cc="ru" country="Russian Federation" operator="OJSC
Vimpel-Communications" status="Operational"
00-99
255
- 01 bands="GSM 900 / GSM 1800 / CDMA 450 / UMTS 2100" brand="MTS" cc="ua"
country="Ukraine" operator="MTS Ukraine" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / CDMA 450 / UMTS 2100" brand="Vodafone" cc="ua"
country="Ukraine" operator="MTS Ukraine" status="Operational"
02 bands="GSM 900 / GSM 1800" brand="Beeline" cc="ua" country="Ukraine"
operator="Kyivstar GSM JSC" status="Not operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Kyivstar" cc="ua"
country="Ukraine" operator="Kyivstar GSM JSC" status="Operational"
04 bands="CDMA 800" brand="IT" cc="ua" country="Ukraine"
operator="Intertelecom" status="Operational"
05 bands="GSM 1800" brand="Golden Telecom" cc="ua" country="Ukraine"
operator="Kyivstar GSM JSC" status="Not operational"
- 06 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="life:)" cc="ua"
country="Ukraine" operator="Astelit" status="Operational"
+ 06 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="lifecell" cc="ua"
country="Ukraine" operator="Astelit" status="Operational"
07 bands="UMTS 2100" brand="3Mob" cc="ua" country="Ukraine" operator="3Mob
(Ukrtelecom UMTS )" status="Operational"
21 bands="CDMA 800" brand="PEOPLEnet" cc="ua" country="Ukraine"
operator="Telesystems of Ukraine" status="Operational"
23 bands="CDMA 800" brand="CDMA Ukraine" cc="ua" country="Ukraine"
operator="Intertelecom" status="Not operational"
@@ -558,7 +571,7 @@
02 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800 / LTE 2600"
brand="Moldcell" cc="md" country="Moldova" status="Operational"
03 bands="CDMA 450" brand="Unité" cc="md" country="Moldova"
operator="Moldtelecom" status="Operational"
04 bands="GSM 900 / GSM 1800" brand="Eventis" cc="md" country="Moldova"
operator="Eventis Telecom" status="Not operational"
- 05 bands="UMTS 900 / UMTS 2100" brand="Unité" cc="md" country="Moldova"
operator="Moldtelecom" status="Operational"
+ 05 bands="UMTS 900 / UMTS 2100 / LTE 1800" brand="Unité" cc="md"
country="Moldova" operator="Moldtelecom" status="Operational"
99 bands="UMTS 2100" brand="Unité" cc="md" country="Moldova"
operator="Moldtelecom" status="Operational"
00-99
260
@@ -624,7 +637,7 @@
16 bands="MVNO" cc="de" country="Germany" operator="Telogic Germany GmbH"
status="Not operational"
17 bands="" brand="E-Plus" cc="de" country="Germany" operator="E-Plus
Mobilfunk" status=""
18 bands="MVNO" cc="de" country="Germany" operator="NetCologne"
status="Operational"
- 19 bands="" cc="de" country="Germany" operator="Inquam Deutschland" status=""
+ 19 bands="CDMA 450" cc="de" country="Germany" operator="Inquam Deutschland"
status=""
20 bands="GSM" brand="OnePhone" cc="de" country="Germany" operator="E-Plus
Mobilfunk" status="Operational"
33 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="simquadrat" cc="de"
country="Germany" operator="sipgate GmbH" status="Operational"
41 bands="" cc="de" country="Germany" operator="First Telecom GmbH" status=""
@@ -691,7 +704,7 @@
22 bands="" cc="is" country="Iceland" operator="Landhelgisgæslan (Icelandic
Coast Guard)" status=""
00-99
276
- 01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="AMC" cc="al"
country="Albania" operator="Albanian Mobile Communications" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800 / LTE 2600"
brand="Telekom.al" cc="al" country="Albania" operator="Telekom Albania"
status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100 /LTE 1800 / LTE 2600"
brand="Vodafone" cc="al" country="Albania" operator="Vodafone Albania"
status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Eagle Mobile" cc="al"
country="Albania" operator="Eagle Mobile" status="Operational"
04 bands="GSM 900 / GSM 1800" brand="Plus Communication" cc="al"
country="Albania" operator="Plus Communication" status="Operational"
@@ -730,7 +743,7 @@
284
01 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="M-Tel" cc="bg"
country="Bulgaria" operator="Mobiltel" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Vivacom" cc="bg"
country="Bulgaria" operator="BTC" status="Operational"
- 05 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Telenor" cc="bg"
country="Bulgaria" operator="Telenor (Bulgaria)" status="Operational"
+ 05 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800"
brand="Telenor" cc="bg" country="Bulgaria" operator="Telenor (Bulgaria)"
status="Operational"
07 bands="GSM-R" brand="НКЖИ" cc="bg" country="Bulgaria" operator="НАЦИОНАЛНА
КОМПАНИЯ ЖЕЛЕЗОПЪТНА ИНФРАСТРУКТУРА" status="Operational"
09 bands="" cc="bg" country="Bulgaria" operator="COMPATEL LIMITED"
status="Not operational"
11 bands="LTE 1800" cc="bg" country="Bulgaria" operator="Bulsatcom"
status="Not operational"
@@ -739,8 +752,8 @@
286
01 bands="GSM 900 / UMTS 2100" brand="Turkcell" cc="tr" country="Turkey"
operator="Turkcell Iletisim Hizmetleri A.S." status="Operational"
02 bands="GSM 900 / UMTS 2100" brand="Vodafone" cc="tr" country="Turkey"
operator="Vodafone Turkey" status="Operational"
- 03 bands="GSM 1800 / UMTS 2100" brand="Avea" cc="tr" country="Turkey"
status="Operational"
- 04 bands="GSM 1800" cc="tr" country="Turkey" operator="Aycell" status="Not
operational"
+ 03 bands="GSM 1800 / UMTS 2100" brand="Türk Telekom" cc="tr" country="Turkey"
operator="Türk Telekom" status="Operational"
+ 04 bands="GSM 1800" brand="Aycell" cc="tr" country="Turkey" operator="Aycell"
status="Not operational"
00-99
288
01 bands="GSM 900 / UMTS 900 / UMTS 2100" brand="Faroese Telecom" cc="fo"
country="Faroe Islands (Denmark)" operator="Faroese Telecom"
status="Operational"
@@ -855,7 +868,7 @@
013 bands="" brand="Verizon" cc="us" country="United States of America"
operator="Verizon Wireless" status=""
014 bands="" cc="us" country="United States of America" status=""
015 bands="iDEN" brand="Southern LINC" cc="us" country="United States of
America" operator="Southern Communications" status=""
- 016 bands="CDMA2000 1900 / CDMA2000 1700" brand="Cricket Wireless" cc="us"
country="United States of America" operator="Cricket Communications"
status="Operational"
+ 016 bands="CDMA2000 1900 / CDMA2000 1700" brand="Cricket Wireless" cc="us"
country="United States of America" operator="Cricket Communications"
status="Not operational"
017 bands="iDEN" brand="ProxTel" cc="us" country="United States of America"
operator="North Sight Communications Inc." status=""
020 bands="GSM 850 / GSM 1900 / UMTS" brand="Union Wireless" cc="us"
country="United States of America" operator="Union Telephone Company"
status="Operational"
030 bands="GSM 850" brand="AT&T" cc="us" country="United States of America"
operator="AT&T Mobility" status="Operational"
@@ -872,12 +885,12 @@
070 bands="GSM 850" brand="AT&T" cc="us" country="United States of America"
operator="AT&T Mobility" status="Operational"
080 bands="GSM 1900" brand="AT&T" cc="us" country="United States of America"
operator="AT&T Mobility" status="Operational"
090 bands="GSM 1900" brand="Cricket Wireless" cc="us" country="United States
of America" operator="Cricket Communications" status="Operational"
- 100 bands="GSM 850 / UMTS 850 / UMTS AWS" brand="Plateau Wireless" cc="us"
country="United States of America" operator="New Mexico RSA 4 East LP"
status="Operational"
+ 100 bands="GSM 850 / UMTS 850 / UMTS 1700" brand="Plateau Wireless" cc="us"
country="United States of America" operator="New Mexico RSA 4 East LP"
status="Operational"
110 bands="CDMA / GSM 850 / LTE 700" brand="IT&E Wireless" cc="us"
country="United States of America" operator="PTI Pacifica Inc."
status="Operational"
120 bands="CDMA2000 1900 / LTE 850 / LTE 1900" brand="Sprint" cc="us"
country="United States of America" operator="Sprint Corporation"
status="Operational"
130 bands="CDMA2000 1900" brand="Carolina West Wireless" cc="us"
country="United States of America" operator="Carolina West Wireless"
status="Operational"
140 bands="GSM 850 / GSM 1900 / UMTS 850 / LTE 1700" brand="GTA Wireless"
cc="us" country="United States of America" operator="Teleguam Holdings, LLC"
status="Operational"
- 150 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="Cricket Wireless" cc="us"
country="United States of America" operator="AT&T Mobility" status="Operational"
+ 150 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us"
country="United States of America" operator="AT&T Mobility" status="Operational"
160 bands="GSM 1900" brand="T-Mobile" cc="us" country="United States of
America" operator="T-Mobile US" status="Operational"
170 bands="GSM 1900" brand="AT&T" cc="us" country="United States of America"
operator="AT&T Mobility" status="Operational"
180 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="West Central" cc="us"
country="United States of America" operator="West Central Wireless"
status="Operational"
@@ -891,71 +904,78 @@
260 bands="GSM 1900 / UMTS 1900 / UMTS 1700 / LTE 700 / LTE 1900 / LTE 1700"
brand="T-Mobile USA" cc="us" country="United States of America"
operator="T-Mobile USA" status="Operational"
270 bands="GSM 1900" cc="us" country="United States of America"
operator="T-Mobile" status="Not operational"
280 bands="GSM 1900" brand="AT&T" cc="us" country="United States of America"
operator="AT&T Mobility" status="Not Operational"
- 290 bands="GSM 1900" brand="nep" cc="us" country="United States of America"
operator="NEP Cellcorp Inc." status="Operational"
+ 290 bands="GSM 1900" brand="nep" cc="us" country="United States of America"
operator="NEP Cellcorp Inc." status="Not operational"
300 bands="GSM 1900" brand="Big Sky Mobile" cc="us" country="United States of
America" operator="iSmart Mobile, LLC" status="Operational"
310 bands="GSM 1900" cc="us" country="United States of America"
operator="T-Mobile" status="Not operational"
- 311 bands="GSM 1900" cc="us" country="United States of America"
operator="Farmers Wireless" status="Operational"
- 320 bands="GSM 850 / GSM 1900" brand="Cellular One" cc="us" country="United
States of America" operator="Smith Bagley, Inc." status="Operational"
+ 311 bands="GSM 1900" cc="us" country="United States of America"
operator="Farmers Wireless" status="Not operational"
+ 320 bands="GSM 850 / GSM 1900 / UMTS" brand="Cellular One" cc="us"
country="United States of America" operator="Smith Bagley, Inc."
status="Operational"
330 bands="CDMA" brand="Alltel" cc="us" country="United States of America"
operator="Allied Wireless Communications Corporation (AWCC)" status="Not
operational"
340 bands="GSM 1900" brand="Westlink Communications" cc="us" country="United
States of America" operator="High Plains Midwest LLC" status="Not operational"
350 bands="CDMA" brand="Verizon" cc="us" country="United States of America"
operator="Verizon Wireless" status="Not operational"
360 bands="CDMA" brand="Pioneer Cellular" cc="us" country="United States of
America" operator="Cellular Network Partnership" status="Operational"
370 bands="GSM 1900 / UMTS 850 / LTE 700" brand="Docomo" cc="us"
country="United States of America" operator="NTT Docomo Pacific"
status="Operational"
380 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us"
country="United States of America" operator="AT&T Mobility" status="Not
operational"
- 390 bands="GSM 850" brand="Cellular One of East Texas" cc="us"
country="United States of America" operator="TX-11 Acquisition, LLC"
status="Operational"
- 400 bands="GSM 1900" brand="i CAN_GSM" cc="us" country="United States of
America" operator="Wave Runner LLC (Guam)" status="Operational"
+ 390 bands="GSM 850 / LTE 700 / CDMA" brand="Cellular One of East Texas"
cc="us" country="United States of America" operator="TX-11 Acquisition, LLC"
status="Operational"
+ 400 bands="GSM 1900 / UMTS 1900 / LTE 700" brand="iConnect" cc="us"
country="United States of America" operator="Wave Runner LLC"
status="Operational"
410 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="AT&T" cc="us"
country="United States of America" operator="AT&T Mobility" status="Operational"
420 bands="GSM 1900 / UMTS 1700" brand="Cincinnati Bell" cc="us"
country="United States of America" operator="Cincinnati Bell Wireless"
status="Not operational"
- 430 bands="GSM 1900" cc="us" country="United States of America"
operator="Alaska Digitel" status="Operational"
- 440 bands="GSM 1900" brand="Cellular One" cc="us" country="United States of
America" status=""
- 450 bands="GSM 850 / GSM 1900" brand="Viaero" cc="us" country="United States
of America" operator="Viaero Wireless" status="Operational"
- 460 bands="GSM 1900" brand="Simmetry" cc="us" country="United States of
America" operator="TMP Corporation" status="Not operational"
+ 430 bands="GSM 1900 / UMTS 1900" brand="GCI" cc="us" country="United States
of America" operator="GCI Communications Corp." status="Operational"
+ 440 bands="MVNO" cc="us" country="United States of America"
operator="Numerex" status="Operational"
+ 450 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="Viaero" cc="us"
country="United States of America" operator="Viaero Wireless"
status="Operational"
+ 460 bands="GSM 1900" brand="NewCore" cc="us" country="United States of
America" operator="NewCore Wireless LLC" status="Operational"
470 bands="CDMA2000 1900" brand="nTelos" cc="us" country="United States of
America" operator="nTelos Communications, Inc." status="Operational"
- 480 bands="" cc="us" country="United States of America" operator="Choice
Phone" status="Operational"
- 490 bands="GSM 850 / GSM 1900" brand="T-Mobile" cc="us" country="United
States of America" status="Operational"
- 500 bands="CDMA2000 800 / CDMA2000 1900" brand="Alltel" cc="us"
country="United States of America" status="Operational"
- 510 bands="" brand="Airtel" cc="us" country="United States of America"
operator="Airtel Wireless" status="Operational"
- 520 bands="" brand="VeriSign" cc="us" country="United States of America"
status=""
- 530 bands="" cc="us" country="United States of America" operator="West
Virginia Wireless" status="Operational"
- 540 bands="GSM 1900" brand="Oklahoma Western" cc="us" country="United States
of America" operator="Oklahoma Western Telephone Company" status="Operational"
+ 480 bands="iDEN" brand="Instant Connect" cc="us" country="United States of
America" operator="Wave Runner LLC" status="Operational"
+ 490 bands="GSM 850 / GSM 1900" cc="us" country="United States of America"
operator="T-Mobile" status="Operational"
+ 500 bands="CDMA2000 850 / CDMA2000 1900" brand="Alltel" cc="us"
country="United States of America" operator="Public Service Cellular Inc."
status="Operational"
+ 510 bands="" brand="Cellcom" cc="us" country="United States of America"
operator="Nsighttel Wireless LLC" status=""
+ 520 bands="" brand="TNS" cc="us" country="United States of America"
operator="Transaction Network Services" status=""
+ 530 bands="" brand="iWireless" cc="us" country="United States of America"
operator="Iowa Wireless Services LLC" status=""
+ 540 bands="GSM 850 / GSM 1900" brand="Phoenix" cc="us" country="United States
of America" operator="Oklahoma Western Telephone Company" status="Operational"
+ 550 bands="" cc="us" country="United States of America" operator="Syniverse
Technologies" status=""
560 bands="GSM 850" brand="AT&T" cc="us" country="United States of America"
operator="AT&T Mobility" status="Operational"
570 bands="GSM 850 / LTE 700" brand="Cellular One" cc="us" country="United
States of America" operator="TX-10, LLC and Central Louisiana Cellular, LLC
(MTPCS)" status="Operational"
- 580 bands="" brand="T-Mobile" cc="us" country="United States of America"
status="Not operational"
+ 580 bands="CDMA2000" cc="us" country="United States of America"
operator="Inland Cellular Telephone Company" status="Operational"
59 bands="CDMA" brand="Cellular One" cc="bm" country="Bermuda"
status="Operational"
- 590 bands="GSM 850 / GSM 1900" brand="Alltel" cc="us" country="United States
of America" operator="Alltel Communications Inc" status="Operational"
- 600 bands="CDMA 850 / CDMA 1900 / LTE 700" brand="Cellcom" cc="us"
country="United States of America" operator="New-Cell Inc." status="Operational"
- 610 bands="GSM 1900" brand="Epic Touch" cc="us" country="United States of
America" operator="Elkhart Telephone Co." status="Operational"
- 620 bands="GSM 1900" brand="Coleman County Telecom" cc="us" country="United
States of America" operator="Coleman County Telecommunications"
status="Operational"
+ 590 bands="GSM 850 / GSM 1900" cc="us" country="United States of America"
operator="Verizon Wireless" status=""
+ 600 bands="CDMA2000 850 / CDMA2000 1900 / LTE 700" brand="Cellcom" cc="us"
country="United States of America" operator="New-Cell Inc." status="Operational"
+ 610 bands="GSM 1900" brand="Epic PCS" cc="us" country="United States of
America" operator="Elkhart Telephone Co." status="Not operational"
+ 620 bands="" brand="Cellcom" cc="us" country="United States of America"
operator="Nsighttel Wireless LLC" status=""
630 bands="LTE 700" brand="miSpot" cc="us" country="United States of America"
operator="Agri-Valley Communications" status="Not operational"
- 640 bands="GSM 1900" brand="AirFire" cc="us" country="United States of
America" operator="Airadigm Communications" status="Not Operational"
- 650 bands="GSM 850" brand="Jasper" cc="us" country="United States of America"
operator="Jasper Wireless, Inc." status="Operational"
+ 640 bands="MVNO" cc="us" country="United States of America"
operator="Numerex" status="Operational"
+ 650 bands="MVNO" brand="Jasper" cc="us" country="United States of America"
operator="Jasper Technologies" status="Operational"
660 bands="GSM 1900" brand="T-Mobile" cc="us" country="United States of
America" status="Not operational"
- 670 bands="" brand="Northstar" cc="us" country="United States of America"
status="Operational"
+ 670 bands="" brand="AT&T" cc="us" country="United States of America"
operator="AT&T Mobility" status=""
680 bands="GSM 850 / GSM 1900" brand="AT&T" cc="us" country="United States of
America" operator="AT&T Mobility" status="Operational"
690 bands="GSM 1900" brand="Limitless Mobile" cc="us" country="United States
of America" operator="Limitless Mobile, LLC" status="Operational"
+ 700 bands="GSM" brand="Bigfoot Cellular" cc="us" country="United States of
America" operator="Cross Valiant Cellular Partnership" status=""
+ 710 bands="GSM 850" brand="ASTAC" cc="us" country="United States of America"
operator="Arctic Slope Telephone Association Cooperative" status="Operational"
+ 720 bands="" cc="us" country="United States of America" operator="Syniverse
Technologies" status=""
730 bands="" brand="U.S. Cellular" cc="us" country="United States of America"
operator="U.S. Cellular" status=""
- 740 bands="" brand="Convey" cc="us" country="United States of America"
operator="Convey Communications Inc." status="Operational"
+ 740 bands="" cc="us" country="United States of America" operator="Green Eagle
Communications, Inc." status=""
750 bands="CDMA2000 850 / CDMA2000 1900" brand="Appalachian Wireless" cc="us"
country="United States of America" operator="East Kentucky Network, LLC"
status="Operational"
760 bands="" cc="us" country="United States of America" operator="Lynch 3G
Communications Corporation" status="Not operational"
- 770 bands="GSM 1900" brand="i wireless" cc="us" country="United States of
America" operator="Iowa Wireless Services" status="Operational"
- 780 bands="GSM 1900" cc="us" country="United States of America"
operator="Airlink PCS" status="Not operational"
- 790 bands="GSM 1900" brand="PinPoint" cc="us" country="United States of
America" operator="PinPoint Communications" status="Operational"
+ 770 bands="GSM 1900 / UMTS 1700 / LTE 1700 / LTE 1900" brand="iWireless"
cc="us" country="United States of America" operator="Iowa Wireless Services"
status="Operational"
+ 780 bands="iDEN" brand="Dispatch Direct" cc="us" country="United States of
America" operator="D. D. Inc." status="Operational"
+ 790 bands="GSM 1900 / UMTS / LTE" brand="BLAZE" cc="us" country="United
States of America" operator="PinPoint Communications Inc." status="Operational"
800 bands="GSM 1900" cc="us" country="United States of America"
operator="T-Mobile" status="Not operational"
- 830 bands="GSM 850" brand="Caprock" cc="us" country="United States of
America" operator="Caprock Cellular" status="Operational"
- 840 bands="GSM 1900" brand="telna Mobile" cc="us" country="United States of
America" operator="Telecom North America Mobile, Inc." status="Operational"
- 850 bands="CDMA2000 850 / CDMA2000 1900 / GSM 850 / GSM 1900" brand="Aeris"
cc="us" country="United States of America" operator="Aeris Communications,
Inc." status="Operational"
+ 810 bands="1900" cc="us" country="United States of America" operator="LCFR
LLC" status=""
+ 820 bands="" cc="us" country="United States of America" operator="Verizon
Wireless" status=""
+ 830 bands="" cc="us" country="United States of America" operator="Clearwire
Corporation" status=""
+ 840 bands="MVNO" brand="telna Mobile" cc="us" country="United States of
America" operator="Telecom North America Mobile, Inc." status="Operational"
+ 850 bands="MVNO" brand="Aeris" cc="us" country="United States of America"
operator="Aeris Communications, Inc." status="Operational"
860 bands="CDMA" brand="Five Star Wireless" cc="us" country="United States of
America" operator="TX RSA 15B2, LP" status="Operational"
- 870 bands="GSM 850" brand="PACE" cc="us" country="United States of America"
operator="Kaplan Telephone Company" status="Operational"
- 880 bands="GSM 850" brand="DTC Wireless" cc="us" country="United States of
America" operator="Advantage Cellular Systems" status="Operational"
- 890 bands="GSM 850 / GSM 1900" brand="Unicel" cc="us" country="United States
of America" operator="Rural Cellular Corporation" status="Operational"
+ 870 bands="MVNO" brand="PACE" cc="us" country="United States of America"
operator="Kaplan Telephone Company" status="Operational"
+ 880 bands="GSM 850" brand="DTC Wireless" cc="us" country="United States of
America" operator="Advantage Cellular Systems, Inc." status="Operational"
+ 890 bands="GSM 850 / GSM 1900" cc="us" country="United States of America"
operator="Verizon Wireless" status=""
900 bands="CDMA2000 850 / CDMA2000 1900" brand="Mid-Rivers Wireless" cc="us"
country="United States of America" operator="Cable & Communications
Corporation" status="Operational"
- 910 bands="GSM 850" brand="First Cellular" cc="us" country="United States of
America" operator="First Cellular of Southern Illinois" status="Operational"
+ 910 bands="GSM 850" cc="us" country="United States of America"
operator="Verizon Wireless" status=""
+ 920 bands="CDMA" cc="us" country="United States of America" operator="James
Valley Wireless, LLC" status="Operational"
930 bands="CDMA" cc="us" country="United States of America" operator="Copper
Valley Wireless" status="Operational"
- 940 bands="" cc="us" country="United States of America" operator="Iris
Wireless LLC" status="Operational"
- 950 bands="GSM 850" brand="XIT Wireless" cc="us" country="United States of
America" operator="Texas RSA 1 dba XIT Cellular" status="Operational"
- 960 bands="CDMA / LTE 700" cc="us" country="United States of America"
operator="Strata Networks" status="Operational"
- 970 bands="Satellite" brand="Telemedicine Wireless" cc="us" country="United
States of America" operator="Telemedicine Wireless (USA)
Telecommunications,Inc" status="Operational"
- 980 bands="CDMA / LTE 700" brand="Peoples Telephone Cooperative, Inc."
cc="us" country="United States of America" operator="Texas RSA 7B3"
status="Operational"
+ 940 bands="MVNO" cc="us" country="United States of America" operator="Iris
Wireless LLC" status=""
+ 950 bands="GSM 850" brand="AT&T" cc="us" country="United States of America"
operator="AT&T Mobility" status="Operational"
+ 960 bands="CDMA / LTE 700" brand="STRATA" cc="us" country="United States of
America" operator="UBET Wireless" status="Operational"
+ 970 bands="Satellite" cc="us" country="United States of America"
operator="Globalstar" status="Operational"
+ 980 bands="CDMA / LTE 700" brand="Peoples Telephone" cc="us" country="United
States of America" operator="Texas RSA 7B3" status="Not operational"
990 bands="LTE 700" brand="Evolve Broadband" cc="us" country="United States
of America" operator="Worldcall Interconnect Inc." status="Operational"
000-999
311
@@ -972,7 +992,7 @@
090 bands="GSM 1900" brand="Long Lines Wireless" cc="us" country="United
States of America" operator="Long Lines Wireless LLC" status="Operational"
100 bands="GSM 1900" cc="us" country="United States of America"
operator="High Plains Wireless" status="Operational"
110 bands="GSM 1900" cc="us" country="United States of America"
operator="High Plains Wireless" status="Operational"
- 120 bands="" cc="us" country="United States of America" operator="Choice
Phone" status="Operational"
+ 120 bands="" brand="iConnect" cc="us" country="United States of America"
operator="Wave Runner LLC" status="Operational"
130 bands="GSM 850" cc="us" country="United States of America" operator="Cell
One Amarillo" status="Operational"
140 bands="CDMA" brand="Sprocket Wireless" cc="us" country="United States of
America" operator="Cross Telephone / MBO Wireless" status="Operational"
150 bands="GSM 850" cc="us" country="United States of America"
operator="Wilkes Cellular" status="Operational"
@@ -983,7 +1003,7 @@
210 bands="GSM 1900 / UMTS 2100" cc="us" country="United States of America"
operator="Emery Telcom Wireless" status="Operational"
220 bands="CDMA" brand="U.S. Cellular" cc="us" country="United States of
America" operator="U.S. Cellular" status="Operational"
230 bands="CDMA 850 / CDMA 1900 / LTE 1900 / LTE 1700" brand="C Spire
Wireless" cc="us" country="United States of America" operator="Cellular South
Inc." status="Operational"
- 250 bands="iDEN / GSM 1900 / LTE 700" brand="iConnect" cc="gu" country="Guam
(United States of America)" operator="Wave Runner LLC / Choice Phone LLC"
status="Operational"
+ 250 bands="" brand="iConnect" cc="us" country="United States of America"
operator="Wave Runner LLC" status="Operational"
330 bands="" brand="Bug Tussel Wireless" cc="us" country="United States of
America" operator="Bug Tussel Wireless" status="Operational"
360 bands="UMTS 1700" cc="us" country="United States of America"
operator="Stelera Wireless" status="Not operational"
370 bands="LTE 1700" brand="GCI Wireless" cc="us" country="United States of
America" operator="General Communication Inc." status="Operational"
@@ -994,7 +1014,7 @@
481 cc="us" country="United States of America"
490 bands="LTE 850 / LTE 1900 / TD-LTE 2500" brand="Sprint Corporation"
cc="us" country="United States of America" operator="Sprint"
status="Operational"
500 bands="UMTS / LTE 700 / LTE 1700" cc="us" country="United States of
America" operator="Mosaic Telecom" status="Operational"
- 530 bands="" cc="us" country="United States of America" operator="Newcore
Wireless" status="Operational"
+ 530 bands="GSM 1900" brand="NewCore" cc="us" country="United States of
America" operator="NewCore Wireless LLC" status="Operational"
570 bands="UMTS 1700 / LTE 1700" cc="us" country="United States of America"
operator="BendBroadband" status="Not operational"
580 bands="LTE 700 / LTE 850" brand="U.S. Cellular" cc="us" country="United
States of America" operator="U.S. Cellular" status="Operational"
630 bands="" brand="C Spire Wireless" cc="us" country="United States of
America" operator="Cellular South Inc." status=""
@@ -1002,6 +1022,7 @@
650 bands="CDMA / LTE 700 / WiMAX 3700" brand="United Wireless" cc="us"
country="United States of America" operator="United Wireless"
status="Operational"
660 bands="CDMA2000 1900 / CDMA 2000 1700 / LTE 1700" brand="metroPCS"
cc="us" country="United States of America" operator="metroPCS"
status="Operational"
750 bands="LTE" cc="us" country="United States of America"
operator="NetAmerica Alliance" status="Operational"
+ 790 bands="" cc="us" country="United States of America" operator="Coleman
County Telephone Cooperative, Inc." status=""
810 bands="CDMA / LTE 700" brand="Bluegrass Wireless" cc="us" country="United
States of America" operator="Bluegrass Wireless" status="Operational"
830 bands="LTE 700" cc="us" country="United States of America"
operator="Thumb Cellular LP" status="Operational"
870 bands="MVNO" brand="Boost" cc="us" country="United States of America"
operator="Boost Mobile" status="Operational"
@@ -1023,6 +1044,7 @@
130 bands="LTE 700" brand="Appalachian Wireless" cc="us" country="United
States of America" operator="East Kentucky Network, LLC" status="Operational"
180 bands="" cc="us" country="United States of America" operator="Limiteless
Mobile LLC" status=""
220 bands="LTE 700" cc="us" country="United States of America"
operator="Chariton Valley Telephone" status="Operational"
+ 260 bands="LTE 1900" brand="NewCore" cc="us" country="United States of
America" operator="Central LTE Holdings" status="Operational"
270 bands="LTE 700" brand="Pioneer Cellular" cc="us" country="United States
of America" operator="Cellular Network Partnership" status="Operational"
280 bands="LTE 700" brand="Pioneer Cellular" cc="us" country="United States
of America" operator="Cellular Network Partnership" status="Operational"
330 bands="LTE 700" brand="Nemont" cc="us" country="United States of America"
operator="Sagebrush Cellular" status="Operational"
@@ -1072,8 +1094,8 @@
020 bands="" brand="LIME" cc="jm" country="Jamaica" operator="LIME (Cable &
Wireless)" status="Not operational"
050 bands="GSM 900 / GSM 1800 / GSM 1900" brand="Digicel" cc="tc"
country="Turks and Caicos Islands" operator="Digicel (Turks & Caicos) Limited"
status="Operational"
070 bands="GSM / UMTS / CDMA" brand="Claro" cc="jm" country="Jamaica"
operator="Oceanic Digital Jamaica Limited" status="Not operational"
- 110 bands="" brand="LIME" cc="jm" country="Jamaica" operator="LIME (Cable &
Wireless)" status="Operational"
- 180 bands="GSM 850 / GSM 1900 / UMTS 850" brand="LIME" cc="jm"
country="Jamaica" operator="LIME (Cable & Wireless)" status="Operational"
+ 110 bands="" brand="FLOW" cc="jm" country="Jamaica" operator="Cable &
Wireless Communications" status="Operational"
+ 180 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900" brand="FLOW" cc="jm"
country="Jamaica" operator="Cable & Wireless Communications"
status="Operational"
000-999
340
01 bands="GSM 900 / UMTS 2100" brand="Orange" country="French Antilles
(France) - BL/GF/GP/MF/MQ" operator="Orange Caraïbe Mobiles"
status="Operational"
@@ -1320,7 +1342,7 @@
043 bands="CDMA 2000 / GSM 1800 / UMTS 2100" brand="TATA DOCOMO" cc="in"
country="India" operator="Rajasthan" status="Operational"
044 bands="CDMA 2000 / GSM 1800" brand="TATA DOCOMO" cc="in" country="India"
operator="Tamil Nadu including Chennai" status="Operational"
045 bands="CDMA 2000 / GSM 1800" brand="TATA DOCOMO" cc="in" country="India"
operator="Uttar Pradesh (E)" status="Operational"
- 046 bands="CDMA 2000 / GSM 1800 / UMTS 2100" brand="TATA DOCOMO" cc="in"
country="India" operator="Uttar Pradesh (W) & Uttarkhand" status="Operational"
+ 046 bands="CDMA 2000 / GSM 1800 / UMTS 2100" brand="TATA DOCOMO" cc="in"
country="India" operator="Uttar Pradesh (W) & Uttarakhand" status="Operational"
047 bands="CDMA 2000 / GSM 1800" brand="TATA DOCOMO" cc="in" country="India"
operator="West Bengal" status="Operational"
05 bands="GSM 1800" brand="Reliance" cc="in" country="India" operator="Delhi
& NCR" status="Operational"
06 bands="GSM 1800" brand="Reliance" cc="in" country="India"
operator="Gujarat" status="Operational"
@@ -1389,7 +1411,7 @@
851 bands="GSM 1800" brand="IDEA" cc="in" country="India" operator="Punjab"
status="Operational"
852 bands="GSM 1800" brand="IDEA" cc="in" country="India" operator="Tamil
Nadu" status="Operational"
853 bands="GSM 1800" brand="IDEA" cc="in" country="India" operator="West
Bengal" status="Operational"
- 854 bands="" brand="Jio" cc="in" country="India" operator="Andra Pradesh"
status="Reserved"
+ 854 bands="" brand="Jio" cc="in" country="India" operator="Andhra Pradesh"
status="Reserved"
855 bands="" brand="Jio" cc="in" country="India" operator="Assam"
status="Reserved"
856 bands="" brand="Jio" cc="in" country="India" operator="Bihar"
status="Reserved"
857 bands="" brand="Jio" cc="in" country="India" operator="Gujarat"
status="Reserved"
@@ -1451,13 +1473,14 @@
08 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Hutch" cc="lk" country="Sri
Lanka" operator="Hutchison Telecommunications Lanka (Pvt) Ltd"
status="Operational"
00-99
414
- 01 bands="GSM 900 / UMTS 2100" brand="MPT" cc="mm" country="Myanmar"
operator="Myanmar Post and Telecommunication" status="Operational"
+ 01 bands="GSM 900 / UMTS 2100" brand="MPT" cc="mm" country="Myanmar"
operator="Myanmar Posts and Telecommunications" status="Operational"
+ 03 bands="CDMA 800" brand="CDMA800" cc="mm" country="Myanmar"
operator="Myanmar Economic Corporation" status="Operational"
05 bands="UMTS 900 / UMTS 2100" brand="Ooredoo" cc="mm" country="Myanmar"
operator="Ooredoo Myanmar" status="Operational"
06 bands="GSM 900 / UMTS 2100" brand="Telenor Myanmar" cc="mm"
country="Myanmar" operator="Telenor Myanmar (Comcel Myanmar)"
status="Operational"
00-99
415
01 bands="GSM 900 / UMTS 2100 / LTE 1800" brand="Alfa" cc="lb"
country="Lebanon" operator="MIC 1" status="Operational"
- 03 bands="GSM 900 / UMTS 2100 / LTE 1800" brand="mtc touch" cc="lb"
country="Lebanon" operator="MIC 2" status="Operational"
+ 03 bands="GSM 900 / UMTS 2100 / LTE 1800" brand="touch" cc="lb"
country="Lebanon" operator="MIC 2" status="Operational"
05 bands="GSM 900" brand="Ogero Mobile" cc="lb" country="Lebanon"
operator="Ogero Telecom" status="Operational"
00-99
416
@@ -1472,6 +1495,7 @@
09 bands="" cc="sy" country="Syria" operator="Syrian Telecom" status=""
00-99
418
+ 00 bands="GSM 900" brand="Asia Cell" cc="iq" country="Iraq" operator="Asia
Cell Telecommunications Company" status="Operational"
05 bands="GSM 900" brand="Asia Cell" cc="iq" country="Iraq" operator="Asia
Cell Telecommunications Company" status="Operational"
08 bands="GSM 900" brand="SanaTel" cc="iq" country="Iraq" status="Operational"
20 bands="GSM 900 / GSM 1800" brand="Zain" cc="iq" country="Iraq"
operator="Zain Iraq" status="Operational"
@@ -1509,13 +1533,13 @@
03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="du" cc="ae" country="United
Arab Emirates" operator="Emirates Integrated Telecommunications Company"
status="Operational"
00-99
425
- 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800"
brand="Orange" cc="il" country="Israel" operator="Partner Communications
Company Ltd." status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800"
brand="Partner" cc="il" country="Israel" operator="Partner Communications
Company Ltd." status="Operational"
02 bands="GSM 1800 / UMTS 850 / UMTS 2100 / LTE 1800" brand="Cellcom" cc="il"
country="Israel" operator="Cellcom Israel Ltd." status="Operational"
03 bands="CDMA 800 / UMTS 850 / UMTS 2100 / LTE 1800" brand="Pelephone"
cc="il" country="Israel" operator="Pelephone Communications Ltd."
status="Operational"
04 bands="" cc="il" country="Israel" operator="Globalsim Ltd" status=""
05 bands="GSM 900" brand="Jawwal" cc="ps" country="Palestine"
operator="Palestine Cellular Communications, Ltd." status="Operational"
06 bands="GSM 900 / GSM 1800" brand="Wataniya" cc="ps" country="Palestine"
operator="Wataniya Palestine Mobile Telecommunications Company"
status="Operational"
- 07 bands="iDEN 800 / UMTS 2100" brand="Hot Mobile" cc="il" country="Israel"
operator="Hot Mobile Ltd. (Former Mirs Communications)" status="Operational"
+ 07 bands="iDEN 800 / UMTS 2100" brand="Hot Mobile" cc="il" country="Israel"
operator="Hot Mobile Ltd." status="Operational"
08 bands="UMTS 2100 / LTE 1800" brand="Golan Telecom" cc="il"
country="Israel" operator="Golan Telecom Ltd" status="Operational"
11 bands="MVNO" cc="il" country="Israel" operator="365 Telecom" status=""
12 bands="MVNO" cc="il" country="Israel" operator="Free Telecom" status=""
@@ -1531,6 +1555,7 @@
23 bands="" cc="il" country="Israel" operator="Beezz Communication Solutions
Ltd." status=""
24 bands="MVNO" brand="012 Telecom" cc="il" country="Israel"
operator="Partner Communications Company Ltd." status="Operational"
25 bands="LTE" brand="IMOD" cc="il" country="Israel" operator="Israel
Ministry of Defense" status="Not operational"
+ 28 bands="LTE 1800" cc="il" country="Israel" operator="PHI Networks" status=""
00-99
426
01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800" brand="Batelco" cc="bh"
country="Bahrain" operator="Bahrain Telecommunications Company"
status="Operational"
@@ -1558,10 +1583,10 @@
04 bands="GSM 900" brand="SmartCell" cc="np" country="Nepal" operator="Smart
Telecom Pvt. Ltd." status="Operational"
00-99
432
- 11 bands="GSM 900 / GSM 1800 / UMTS" brand="IR-MCI (Hamrahe Avval)" cc="ir"
country="Iran" operator="Mobile Communications Company of Iran"
status="Operational"
+ 11 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 2600" brand="IR-MCI (Hamrahe
Avval)" cc="ir" country="Iran" operator="Mobile Communications Company of Iran"
status="Operational"
14 bands="GSM 900" brand="TKC" cc="ir" country="Iran"
operator="Telecommunication Kish Company" status="Operational"
19 bands="GSM 900" brand="MTCE (Espadan)" cc="ir" country="Iran"
operator="Mobile Telecommunications Company of Esfahan" status="Operational"
- 20 bands="UMTS" brand="Rightel" cc="ir" country="Iran" status="Operational"
+ 20 bands="UMTS 900 / UMTS 2100 / LTE 1800" brand="Rightel" cc="ir"
country="Iran" status="Operational"
32 bands="GSM 900 / GSM 1800" brand="Taliya" cc="ir" country="Iran"
operator="Rafsanjan Industrial Complex" status="Operational"
35 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800" brand="MTN Irancell"
cc="ir" country="Iran" operator="MTN Irancell Telecommunications Services
Company" status="Operational"
70 bands="GSM 900 / GSM 1800" brand="TCI" cc="ir" country="Iran"
operator="Telephone Communications Company of Iran" status="Operational"
@@ -1580,8 +1605,8 @@
436
01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800" brand="Tcell" cc="tj"
country="Tajikistan" operator="JV Somoncom" status="Operational"
02 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800" brand="Tcell" cc="tj"
country="Tajikistan" operator="Indigo Tajikistan" status="Operational"
- 03 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Megafon Tajikistan" cc="tj"
country="Tajikistan" operator="TT Mobile" status="Operational"
- 04 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 1800 / LTE 2100"
brand="Babilon-M" cc="tj" country="Tajikistan" operator="Babilon-Mobile"
status="Operational"
+ 03 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 800" brand="Megafon
Tajikistan" cc="tj" country="Tajikistan" operator="TT Mobile"
status="Operational"
+ 04 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2100"
brand="Babilon-M" cc="tj" country="Tajikistan" operator="Babilon-Mobile"
status="Operational"
05 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Beeline" cc="tj"
country="Tajikistan" operator="Tacom" status="Operational"
12 bands="UMTS 2100" brand="Tcell" cc="tj" country="Tajikistan"
operator="Indigo" status=""
00-99
@@ -1597,125 +1622,31 @@
03 bands="CDMA 450" brand="AGTS CDMA" cc="tm" country="Turkmenistan"
operator="AŞTU" status="Operational"
00-99
440
- 00 bands="UMTS 1700" brand="Y!Mobile" cc="jp" country="Japan"
operator="EMOBILE Limited" status="Operational"
- 01 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 02 bands="UMTS 2100" brand="NTT docomo" cc="jp" country="Japan" operator="NTT
DoCoMo - Kansai" status="Operational"
- 03 bands="UMTS 2100" brand="NTT docomo" cc="jp" country="Japan" operator="NTT
DoCoMo - Hokuriku" status="Operational"
- 04 bands="UMTS 900 / UMTS 2100" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 06 bands="UMTS 900 / UMTS 2100" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 07 bands="CDMA2000 / 1X EV-DO Rev.A" brand="KDDI" cc="jp" country="Japan"
operator="KDDI Corporation" status="Operational"
- 08 bands="CDMA2000" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 09 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Kansai" status="Operational"
- 10 bands="UMTS 800 / UMTS 1700 / UMTS 2100 / WCDMA / HSDPA / HSUPA / LTE
(4G)" brand="NTT docomo" cc="jp" country="Japan" operator="NTT docomo"
status="Operational"
- 11 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Tokai" status="Operational"
- 12 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 13 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 14 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Tohoku" status="Operational"
- 15 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 16 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 17 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 18 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Tokai" status="Operational"
- 19 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Hokkaido" status="Operational"
- 20 bands="UMTS 900 / UMTS 2100" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 21 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 22 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Kansai" status="Operational"
- 23 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Tokai" status="Operational"
- 24 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Chugoku" status="Operational"
- 25 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Hokkaido" status="Operational"
- 26 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Kyushu" status="Operational"
- 27 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Tohoku" status="Operational"
- 28 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Shikoku" status="Operational"
- 29 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 30 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 31 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Kansai" status="Operational"
- 32 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo" status="Operational"
- 33 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Tokai" status="Operational"
- 34 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT docomo" cc="jp"
country="Japan" operator="NTT docomo - Kyushu" status="Operational"
- 35 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo - Kansai" status="Operational"
- 36 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo" status="Operational"
- 37 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo" status="Operational"
- 38 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo" status="Operational"
- 39 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo" status="Operational"
- 40 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 41 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 42 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 43 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 44 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 45 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 46 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 47 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 48 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 49 bands="UMTS / HSDPA / LTE (4G)" brand="NTT DoCoMo" cc="jp" country="Japan"
operator="NTT DoCoMo" status="Operational"
- 50 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 51 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 52 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 53 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 54 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 55 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 56 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 58 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo - Kansai" status="Operational"
- 60 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo - Kansai" status="Operational"
- 61 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo - Chugoku" status="Operational"
- 62 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo - Kyushu" status="Operational"
- 63 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo" status="Operational"
- 64 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo" status="Operational"
- 65 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo - Shikoku" status="Operational"
- 66 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo" status="Operational"
- 67 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo - Tohoku" status="Operational"
- 68 bands="UMTS 800 / UMTS 1700 / UMTS 2100" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo - Kyushu" status="Operational"
- 69 bands="UMTS / WCDMA / HSDPA / HSUPA / LTE (4G)" brand="NTT DoCoMo" cc="jp"
country="Japan" operator="NTT DoCoMo" status="Operational"
- 70 bands="CDMA2000 800 / CDMA2000 2100" brand="au" cc="jp" country="Japan"
operator="KDDI Corporation" status="Operational"
- 71 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 72 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 73 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 74 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 75 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 76 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 77 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 78 bands="UMTS / HSDPA" cc="jp" country="Japan" operator="Okinawa Cellular
Telephone" status="Operational"
- 79 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 80 bands="GSM" brand="TU-KA" cc="jp" country="Japan" operator="TU-KA Cellular
Tokyo" status="Not operational"
- 81 bands="GSM" brand="TU-KA" cc="jp" country="Japan" operator="TU-KA Cellular
Tokyo" status="Not operational"
- 82 bands="GSM" brand="TU-KA" cc="jp" country="Japan" operator="TU-KA Phone
Kansai" status="Not operational"
- 83 bands="GSM" brand="TU-KA" cc="jp" country="Japan" operator="TU-KA Cellular
Tokai" status="Not operational"
- 84 bands="GSM" brand="TU-KA" cc="jp" country="Japan" operator="TU-KA Phone
Kansai" status="Not operational"
- 85 bands="GSM" brand="TU-KA" cc="jp" country="Japan" operator="TU-KA Cellular
Tokai" status="Not operational"
- 86 bands="GSM" brand="TU-KA" cc="jp" country="Japan" operator="TU-KA Cellular
Tokyo" status="Not operational"
- 87 bands="UMTS / HSDPA" brand="NTT DoCoMo" cc="jp" country="Japan"
operator="NTT DoCoMo - Chugoku" status="Operational"
- 88 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 89 bands="WCDMA" brand="KDDI" cc="jp" country="Japan" operator="KDDI
Corporation" status="Operational"
- 90 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 92 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 93 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 94 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 95 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 96 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 97 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 98 bands="UMTS / HSPA+ / DC-HSDPA" brand="SoftBank" cc="jp" country="Japan"
operator="SoftBank Mobile Corp" status="Operational"
- 99 bands="LTE (4G)" brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTT
DoCoMo" status="Operational"
+ 00 bands="UMTS 1800" brand="Y!Mobile" cc="jp" country="Japan"
operator="SoftBank Corp." status="Operational"
+ 01 bands="WiMAX 2500" brand="UQ WiMAX" cc="jp" country="Japan" operator="UQ
Communications Inc." status="Operational"
+ 02 bands="WiMAX 2500" cc="jp" country="Japan" operator="Hanshin Cable
Enginerring Co., Ltd." status=""
+ 05 bands="TD-LTE 2500" cc="jp" country="Japan" operator="Wireless City
Planning Inc." status="Operational"
+ 10 bands="UMTS 850 / UMTS 1800 / UMTS 2100 / LTE 700 / LTE 850 / LTE 1500 /
LTE 1800 / LTE 2100" brand="NTT docomo" cc="jp" country="Japan" operator="NTT
DoCoMo, Inc." status="Operational"
+ 20 bands="UMTS 900 / UMTS 2100 / LTE 900 / LTE 1800 / LTE 2100"
brand="SoftBank" cc="jp" country="Japan" operator="SoftBank Corp."
status="Operational"
+ 21 bands="UMTS 900 / UMTS 2100 / LTE 900 / LTE 1800 / LTE 2100"
brand="SoftBank" cc="jp" country="Japan" operator="SoftBank Corp."
status="Operational"
+ 50 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 51 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 52 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 53 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 54 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 70 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 71 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 72 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 73 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 74 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 75 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 76 bands="CDMA2000 850 / CDMA2000 2100 / LTE 700 / LTE 850 / LTE 1500 / LTE
2100" brand="au" cc="jp" country="Japan" operator="KDDI Corporation"
status="Operational"
+ 78 bands="CDMA2000 850 / CDMA2000 2100" brand="au" cc="jp" country="Japan"
operator="Okinawa Cellular Telephone" status="Operational"
00-99
441
- 40 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTTドコモ" status=""
- 41 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTTドコモ" status=""
- 42 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTTドコモ" status=""
- 43 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTTドコモ" status=""
- 44 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTTドコモ" status=""
- 45 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTTドコモ" status=""
- 50 brand="TU-KA" cc="jp" country="Japan" operator="KDDI" status=""
- 51 brand="TU-KA" cc="jp" country="Japan" operator="KDDI" status=""
- 61 brand="SoftBank" cc="jp" country="Japan" operator="SoftBank Mobile Corp"
status=""
- 62 brand="SoftBank" cc="jp" country="Japan" operator="SoftBank Mobile Corp"
status=""
- 63 brand="SoftBank" cc="jp" country="Japan" operator="SoftBank Mobile Corp"
status=""
- 64 brand="SoftBank" cc="jp" country="Japan" operator="SoftBank Mobile Corp"
status=""
- 65 brand="SoftBank" cc="jp" country="Japan" operator="SoftBank Mobile Corp"
status=""
- 70 brand="KDDI" cc="jp" country="Japan" operator="KDDI" status=""
- 90 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTT DoCoMo" status=""
- 91 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTT DoCoMo" status=""
- 92 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTT DoCoMo" status=""
- 93 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTT DoCoMo" status=""
- 94 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTT DoCoMo" status=""
- 98 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTT DoCoMo" status=""
- 99 brand="NTT DoCoMo" cc="jp" country="Japan" operator="NTT DoCoMo" status=""
+ 00 bands="TD-LTE 2500" cc="jp" country="Japan" operator="Wireless City
Planning Inc." status="Operational"
+ 01 bands="UMTS 900 / UMTS 2100 / LTE 900 / LTE 1800 / LTE 2100"
brand="SoftBank" cc="jp" country="Japan" operator="SoftBank Corp."
status="Operational"
+ 10 bands="WiMAX 2500" brand="UQ WiMAX" cc="jp" country="Japan" operator="UQ
Communications Inc." status="Operational"
00-99
450
02 bands="CDMA2000 1800" brand="KT" cc="kr" country="South Korea"
operator="KT" status="Discontinued"
@@ -1894,6 +1825,7 @@
30 bands="" cc="au" country="Australia" operator="Compatel Limited" status=""
31 bands="" cc="au" country="Australia" operator="BHP Billiton" status=""
32 bands="" cc="au" country="Australia" operator="Thales Australia" status=""
+ 33 bands="" cc="au" country="Australia" operator="CLX Networks Pty Ltd"
status=""
38 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="Crazy John's"
cc="au" country="Australia" operator="Vodafone Hutchison Australia Proprietary
Limited" status="Operational"
62 bands="LTE 2300" brand="NBN" cc="au" country="Australia"
operator="National Broadband Network Co." status=""
68 bands="LTE 2300" brand="NBN" cc="au" country="Australia"
operator="National Broadband Network Co." status=""
@@ -1905,17 +1837,17 @@
00-99
510
00 bands="Satellite" brand="PSN" cc="id" country="Indonesia" operator="PT
Pasifik Satelit Nusantara (ACeS)" status="Operational"
- 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 900 / LTE 1800"
brand="INDOSAT" cc="id" country="Indonesia" operator="PT Indonesian Satellite
Corporation Tbk (INDOSAT)" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 900 / LTE 1800" brand="Indosat
Ooredoo" cc="id" country="Indonesia" operator="PT Indonesian Satellite
Corporation Tbk (INDOSAT)" status="Operational"
03 bands="CDMA 800" brand="StarOne" cc="id" country="Indonesia" operator="PT
Indosat Tbk" status="Not operational"
07 bands="CDMA 800" brand="TelkomFlexi" cc="id" country="Indonesia"
operator="PT Telkom" status="Operational"
- 08 bands="GSM 1800 / UMTS 2100" brand="AXIS" cc="id" country="Indonesia"
operator="PT Natrindo Telepon Seluler" status="Operational"
- 09 bands="CDMA 800 / CDMA 1900 / LTE 850 / LTE 1800 / TD-LTE 2300"
brand="Smartfren" cc="id" country="Indonesia" operator="PT Smart Telecom"
status="Operational"
+ 08 bands="GSM 1800 / UMTS 2100" brand="AXIS" cc="id" country="Indonesia"
operator="PT Natrindo Telepon Seluler" status="Not operational"
+ 09 bands="CDMA 800 / CDMA 1900 / LTE 850 / TD-LTE 2300" brand="Smartfren"
cc="id" country="Indonesia" operator="PT Smart Telecom" status="Operational"
10 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 900 / LTE 1800"
brand="Telkomsel" cc="id" country="Indonesia" operator="PT Telekomunikasi
Selular" status="Operational"
11 bands="GSM 900 / GSM 1800 / UMTS 2100 / LTE 900 / LTE 1800" brand="XL"
cc="id" country="Indonesia" operator="PT XL Axiata Tbk" status="Operational"
20 bands="GSM 1800" brand="TELKOMMobile" cc="id" country="Indonesia"
operator="PT Telkom Indonesia Tbk" status="Not operational"
21 bands="GSM 1800" brand="IM3" cc="id" country="Indonesia" operator="PT
Indonesian Satellite Corporation Tbk (INDOSAT)" status="Not operational"
27 bands="CDMA 450" brand="Ceria" cc="id" country="Indonesia" operator="PT
Sampoerna Telekomunikasi Indonesia" status="Operational"
- 28 bands="CDMA 800" brand="Fren/Hepi" cc="id" country="Indonesia"
operator="PT Mobile-8 Telecom" status="Operational"
+ 28 bands="CDMA 800 LTE 850 / TD-LTE 2300" brand="Fren/Hepi" cc="id"
country="Indonesia" operator="PT Mobile-8 Telecom" status="Operational"
88 bands="TD-LTE 2300" brand="BOLT! Super 4G" cc="id" country="Indonesia"
operator="PT Internux" status="Operational"
89 bands="GSM 1800 / UMTS 2100 / LTE 1800" brand="3" cc="id"
country="Indonesia" operator="PT Hutchison CP Telecommunications"
status="Operational"
99 bands="CDMA 800" brand="Esia" cc="id" country="Indonesia" operator="PT
Bakrie Telecom" status="Operational"
@@ -1937,23 +1869,24 @@
00-99
520
00 bands="UMTS 850" brand="my by CAT" cc="th" country="Thailand"
operator="CAT Telecom" status="Operational"
- 01 bands="GSM 900 / UMTS 900" brand="AIS" cc="th" country="Thailand"
operator="Advanced Info Service" status="Operational"
- 02 bands="CDMA 800" brand="CAT CDMA" cc="th" country="Thailand" operator="CAT
Telecom" status="Operational"
- 03 bands="UMTS 2100" brand="AIS 3G" cc="th" country="Thailand" operator="AWN"
status="Operational"
- 04 bands="UMTS 2100 / LTE 2100" brand="truemove H 4G LTE" cc="th"
country="Thailand" operator="Real Future" status="Operational"
- 05 bands="UMTS 2100 / LTE 2100" brand="dtac TriNet" cc="th"
country="Thailand" operator="DTN" status="Operational"
- 15 bands="UMTS 2100" brand="TOT 3G" cc="th" country="Thailand"
operator="Telephone Organization of Thailand (TOT)" status="Operational"
- 18 bands="GSM 1800 / UMTS 850 / LTE 1800" brand="dtac" cc="th"
country="Thailand" operator="Total Access Communication" status="Operational"
- 23 bands="GSM 1800" brand="AIS GSM 1800" cc="th" country="Thailand"
operator="AIS)" status="Not operational"
+ 01 bands="GSM 900" brand="AIS" cc="th" country="Thailand" operator="Advanced
Info Service" status="Operational"
+ 02 bands="CDMA 800" brand="CAT CDMA" cc="th" country="Thailand" operator="CAT
Telecom" status="Not operational"
+ 03 bands="UMTS 2100 / LTE 1800" brand="AIS" cc="th" country="Thailand"
operator="Advanced Wireless Network Company Ltd." status="Operational"
+ 04 bands="UMTS 2100 / LTE 1800 / LTE 2100" brand="TrueMove H 4G LTE" cc="th"
country="Thailand" operator="Real Future Company Ltd." status="Operational"
+ 05 bands="UMTS 850 / UMTS 2100 / LTE 1800 / LTE 2100" brand="dtac TriNet"
cc="th" country="Thailand" operator="DTAC Network Company Ltd."
status="Operational"
+ 15 bands="UMTS 2100" brand="TOT 3G" cc="th" country="Thailand" operator="TOT
Public Company Limited" status="Operational"
+ 18 bands="GSM 1800" brand="dtac" cc="th" country="Thailand" operator="Total
Access Communications Public Company Ltd." status="Operational"
+ 20 bands="Satellite" brand="ACeS" cc="th" country="Thailand" operator="ACeS"
status=""
+ 23 bands="GSM 1800" brand="AIS GSM 1800" cc="th" country="Thailand"
operator="Digital Phone Company Ltd." status="Not operational"
25 bands="PHS 1900" brand="WE PCT" cc="th" country="Thailand" operator="True
Corporation" status="Operational"
47 bands="" cc="th" country="Thailand" operator="Telephone Organization of
Thailand (TOT)" status=""
- 99 bands="GSM 1800" brand="truemove" cc="th" country="Thailand"
operator="True Corporation" status="Operational"
+ 99 bands="GSM 1800" brand="TrueMove" cc="th" country="Thailand"
operator="True Corporation" status="Not operational"
00-99
525
- 01 bands="GSM 900/1800, UMTS 900/2100, LTE 1800/2600" brand="SingTel" cc="sg"
country="Singapore" operator="Singapore Telecom" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 900 / LTE 1800 /
LTE 2600" brand="SingTel" cc="sg" country="Singapore" operator="Singapore
Telecom" status="Operational"
02 bands="GSM 1800" brand="SingTel-G18" cc="sg" country="Singapore"
operator="Singapore Telecom" status="Operational"
- 03 bands="GSM 900/1800, UMTS 900/2100, LTE 1800/2600" brand="M1" cc="sg"
country="Singapore" operator="M1 Limited" status="Operational"
- 05 bands="GSM 1800, UMTS 900/2100, LTE 1800" brand="StarHub" cc="sg"
country="Singapore" operator="StarHub Mobile" status="Operational"
+ 03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600"
brand="M1" cc="sg" country="Singapore" operator="M1 Limited"
status="Operational"
+ 05 bands="GSM 1800 / UMTS 900 / UMTS 2100 / LTE 1800 / LTE 2600"
brand="StarHub" cc="sg" country="Singapore" operator="StarHub Mobile"
status="Operational"
06 bands="" brand="StarHub" cc="sg" country="Singapore" operator="StarHub
Mobile" status=""
07 bands="" brand="SingTel" cc="sg" country="Singapore" operator="Singapore
Telecom" status=""
12 bands="iDEN 800" brand="Grid" cc="sg" country="Singapore" operator="GRID
Communications Pte Ltd." status="Operational"
@@ -2126,7 +2059,7 @@
03 bands="GSM 900" brand="Moov" cc="tg" country="Togo" operator="Moov Togo"
status="Operational"
00-99
616
- 01 bands="GSM 900 / GSM 1800" brand="Libercom" cc="bj" country="Benin"
operator="Benin Telecoms Mobile" status="Operational"
+ 01 bands="GSM 900 / GSM 1800 / LTE 1800 / CDMA / WiMAX" brand="Libercom"
cc="bj" country="Benin" operator="Benin Telecoms Mobile" status="Operational"
02 bands="GSM 900 / UMTS" brand="Moov" cc="bj" country="Benin"
operator="Telecel Benin" status="Operational"
03 bands="GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100" brand="MTN" cc="bj"
country="Benin" operator="Spacetel Benin" status="Operational"
04 bands="GSM 900 / GSM 1800" brand="BBCOM" cc="bj" country="Benin"
operator="Bell Benin Communications" status="Operational"
@@ -2341,7 +2274,7 @@
647
00 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="Orange" cc="re"
country="Réunion (France)" operator="Orange La Réunion" status="Operational"
01 bands="" cc="re" country="Réunion (France)" operator="BJT Partners"
status=""
- 02 bands="GSM 900 / GSM 1800" brand="Outremer" cc="re" country="Réunion
(France)" operator="Outremer Telecom" status="Operational"
+ 02 bands="GSM 900 / GSM 1800" brand="only" cc="re" country="Réunion (France)"
operator="Telco OI" status="Operational"
10 bands="GSM 900" brand="SFR Reunion" cc="re" country="Réunion (France)"
operator="Societe Reunionnaise de Radiotelephone" status="Operational"
00-99
648
@@ -2354,6 +2287,7 @@
02 bands="CDMA2000 800" brand="switch" cc="na" country="Namibia"
operator="Telecom Namibia" status="Operational"
03 bands="GSM 900 / GSM 1800 / LTE 1800" brand="TN Mobile" cc="na"
country="Namibia" operator="Telecom Namibia" status="Operational"
04 bands="WiMAX 2500" cc="na" country="Namibia" operator="Paratus
Telecommunications (Pty)" status="Operational"
+ 05 bands="" cc="na" country="Namibia" operator="Demshi Investments CC"
status=""
00-99
650
01 bands="GSM 900 / GSM 1800" brand="TNM" cc="mw" country="Malawi"
operator="Telecom Network Malawi" status="Operational"
@@ -2390,6 +2324,7 @@
17 bands="" cc="za" country="South Africa" operator="Sishen Iron Ore Company
(Ltd) Pty" status=""
19 bands="" brand="iBurst" cc="za" country="South Africa" operator="Wireless
Business Solutions (Pty) Ltd" status="Operational"
21 bands="TETRA 410" cc="za" country="South Africa" operator="Cape Town
Metropolitan Council" status="Operational"
+ 24 bands="" cc="za" country="South Africa" operator="SMS Portal (Pty) Ltd."
status=""
25 bands="" cc="za" country="South Africa" operator="Wirels Connect" status=""
27 bands="" cc="za" country="South Africa" operator="A to Z Vaal Industrial
Supplies Pty Ltd" status=""
30 bands="" cc="za" country="South Africa" operator="Bokamoso Consortium"
status="Operational"
@@ -2399,6 +2334,7 @@
34 bands="" cc="za" country="South Africa" operator="Bokone Telecoms Pty Ltd"
status=""
35 bands="" cc="za" country="South Africa" operator="Kingdom Communications
Pty Ltd" status=""
36 bands="" cc="za" country="South Africa" operator="Amatole
Telecommunications Pty Ltd" status=""
+ 38 bands="" brand="iBurst" cc="za" country="South Africa" operator="Wireless
Business Solutions (Pty) Ltd" status=""
41 bands="" cc="za" country="South Africa" operator="South African Police
Service" status=""
50 bands="" cc="za" country="South Africa" operator="Ericsson South Africa
(Pty) Ltd" status=""
51 bands="" cc="za" country="South Africa" operator="Integrat (Pty) Ltd"
status=""
@@ -2410,10 +2346,10 @@
01 bands="GSM" brand="Sure" cc="sh" country="Saint Helena, Ascension and
Tristan da Cunha" operator="Sure South Atlantic Ltd." status="Operational"
00-99
659
- 02 bands="GSM 900/1800, UMTS 2100" brand="MTN" cc="ss" country="South Sudan"
operator="MTN South Sudan" status="Operational"
- 03 bands="GSM 900/1800" brand="Gemtel" cc="ss" country="South Sudan"
operator="Gemtel" status="Operational"
- 04 bands="GSM 900/1800" brand="Vivacell" cc="ss" country="South Sudan"
operator="Network of the World (NOW)" status="Operational"
- 06 bands="GSM 900/1800" brand="Zain" cc="ss" country="South Sudan"
operator="Zain South Sudan" status="Operational"
+ 02 bands="GSM 900 / GSM 1800 / UMTS 2100" brand="MTN" cc="ss" country="South
Sudan" operator="MTN South Sudan" status="Operational"
+ 03 bands="GSM 900 / GSM 1800" brand="Gemtel" cc="ss" country="South Sudan"
operator="Gemtel" status="Operational"
+ 04 bands="GSM 900 / GSM 1800" brand="Vivacell" cc="ss" country="South Sudan"
operator="Network of the World (NOW)" status="Operational"
+ 06 bands="GSM 900 / GSM 1800" brand="Zain" cc="ss" country="South Sudan"
operator="Zain South Sudan" status="Operational"
07 bands="CDMA" brand="Sudani" cc="ss" country="South Sudan"
operator="Sudani" status="Operational"
00-99
702
@@ -2547,8 +2483,8 @@
734
01 bands="GSM 900" brand="Digitel" cc="ve" country="Venezuela"
operator="Corporacion Digitel C.A." status="Not operational"
02 bands="GSM 900 / GSM 1800 / UMTS 900 / LTE 1800" brand="Digitel GSM"
cc="ve" country="Venezuela" operator="Corporacion Digitel C.A."
status="Operational"
- 03 bands="GSM 900" brand="Digitel" cc="ve" country="Venezuela"
operator="Corporacion Digitel C.A." status="Not operational"
- 04 bands="GSM 850 / GSM 1900 / UMTS 1900" brand="movistar" cc="ve"
country="Venezuela" operator="Telefónica Móviles Venezuela" status="Operational"
+ 03 bands="LTE 2600" brand="DirecTV" cc="ve" country="Venezuela"
operator="Galaxy Entertainment de Venezuela C.A." status=""
+ 04 bands="GSM 850 / GSM 1900 / UMTS 1900 / LTE AWS" brand="movistar" cc="ve"
country="Venezuela" operator="Telefónica Móviles Venezuela" status="Operational"
06 bands="CDMA2000 850 / GSM 850 / UMTS 1900" brand="Movilnet" cc="ve"
country="Venezuela" operator="Telecomunicaciones Movilnet" status="Operational"
00-99
736
@@ -2559,11 +2495,13 @@
738
01 bands="GSM 900" brand="Digicel" cc="gy" country="Guyana"
operator="U-Mobile (Cellular) Inc." status="Operational"
02 bands="GSM 900" brand="GT&T Cellink Plus" cc="gy" country="Guyana"
operator="Guyana Telephone & Telegraph Co." status="Operational"
+ 03 bands="TD-LTE" cc="gy" country="Guyana" operator="Quark Communications
Inc." status=""
+ 05 bands="" cc="gy" country="Guyana" operator="eGovernment Unit, Ministry of
the Presidency" status=""
00-99
740
00 bands="GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900 / LTE 1900"
brand="Movistar" cc="ec" country="Ecuador" operator="Otecel S.A."
status="Operational"
01 bands="GSM 850 / UMTS 850 / UMTS 1900" brand="Claro" cc="ec"
country="Ecuador" operator="CONECEL S.A." status="Operational"
- 02 bands="GSM 850 / UMTS / LTE 1700" brand="CNT Mobile" cc="ec"
country="Ecuador" operator="Corporación Nacional de Telecomunicaciones (CNT
EP)" status="Operational"
+ 02 bands="GSM 850 / UMTS 1900 / LTE 1700" brand="CNT Mobile" cc="ec"
country="Ecuador" operator="Corporación Nacional de Telecomunicaciones (CNT
EP)" status="Operational"
00-99
744
01 bands="GSM 1900 / UMTS 900" brand="VOX" cc="py" country="Paraguay"
operator="Hola Paraguay S.A" status="Operational"
@@ -2590,7 +2528,7 @@
001 bands="GSM 900" brand="sure" cc="fk" country="Falkland Islands (United
Kingdom)" operator="Batelco" status="Operational"
000-999
901
- 01 bands="Satellite" brand="ICO" country="International operators"
operator="ICO Satellite Management" status="Operational"
+ 01 bands="Satellite" brand="ICO" country="International operators"
operator="ICO Satellite Management" status="Not operational"
02 bands="" country="International operators" operator="Unassigned"
status="Returned spare"
03 bands="Satellite" brand="Iridium" country="International operators"
status="Operational"
04 bands="Satellite" country="International operators" operator="Unassigned"
status="Returned spare"
@@ -2599,7 +2537,7 @@
07 bands="" country="International operators" operator="Unassigned"
status="Returned spare"
08 bands="" country="International operators" operator="Unassigned"
status="Returned spare"
09 bands="" country="International operators" operator="Unassigned"
status="Returned spare"
- 10 bands="Satellite" brand="ACeS" country="International operators"
status="Operational"
+ 10 bands="Satellite" brand="ACeS" country="International operators"
status="Not operational"
11 bands="Satellite" brand="Inmarsat" country="International operators"
status="Operational"
12 bands="GSM 1800" brand="Telenor" country="International operators"
operator="Maritime Communications Partner AS (MCP)" status="Operational"
13 bands="GSM 1800" brand="GSM.AQ" country="International operators"
operator="BebbiCell AG" status="Operational"
@@ -2607,7 +2545,7 @@
15 bands="GSM 1800" brand="OnAir" country="International operators"
operator="OnAir Switzerland Sarl" status="Operational"
16 bands="" country="International operators" operator="Jasper Systems"
status="Operational"
17 bands="GSM 1800" brand="Navitas" country="International operators"
operator="JT Group Limited" status="Not operational"
- 18 bands="GSM 900 / GSM 1900 / CDMA2000 1900" brand="Cellular @Sea"
country="International operators" operator="AT&T Mobility" status="Operational"
+ 18 bands="GSM 900 / GSM 1900 / CDMA2000 1900 / UMTS 1900" brand="Cellular
@Sea" country="International operators" operator="AT&T Mobility"
status="Operational"
19 bands="GSM 900 / GSM 1800 / UMTS 2100" country="International operators"
operator="Vodafone Malta Maritime" status="Operational"
20 bands="" country="International operators" operator="Intermatica" status=""
21 bands="GSM 1800" country="International operators" operator="Wins Limited"
status="Operational"
@@ -2637,5 +2575,9 @@
45 bands="" country="International operators" operator="Advanced Wireless
Network Company Limited" status=""
46 bands="MVNO" country="International operators" operator="Telecom26 AG"
status="Operational"
47 bands="" country="International operators" operator="Ooredoo" status=""
+ 48 bands="" country="International operators" operator="Communication for
Devices in Sweden AB" status=""
+ 49 bands="" country="International operators" operator="Zain Kuwait" status=""
+ 50 bands="Satellite" country="International operators" operator="EchoStar
Mobile" status=""
+ 51 bands="" country="International operators" operator="VisionNG" status=""
88 bands="" country="International operators" operator="UN Office for the
Coordination of Humanitarian Affairs (OCHA)" status=""
00-99
diff --git a/stdnum/isbn.dat b/stdnum/isbn.dat
index 7bd86c4..103e27a 100644
--- a/stdnum/isbn.dat
+++ b/stdnum/isbn.dat
@@ -1,7 +1,7 @@
# generated from RangeMessage.xml, downloaded from
# https://www.isbn-international.org/export_rangemessage.xml
-# file serial e055fb55-2661-4102-a6dc-6885d2dab806
-# file date Thu, 3 Sep 2015 12:56:52 CEST
+# file serial 91da4d76-b504-4412-94e1-741f2d6bbbe8
+# file date Wed, 2 Mar 2016 17:53:37 CET
978
0-5,600-649,7-7,80-94,950-989,9900-9989,99900-99999
0 agency="English language"
@@ -28,8 +28,8 @@
00-19,200-699,7000-7999,80000-84999,85-99
602 agency="Indonesia"
00-07,0800-0899,0900-1099,1100-1199,1200-1399,14000-14999,1500-1699
- 17000-17999,18000-18999,19000-19999,200-674,6750-6999,70000-74999
- 7500-7999,8000-9499,95000-99999
+ 17000-17999,18000-18999,19000-19999,200-619,6200-6749,6750-6999
+ 70000-74999,7500-7999,8000-9499,95000-99999
603 agency="Saudi Arabia"
00-04,05-49,500-799,8000-8999,90000-99999
604 agency="Vietnam"
@@ -37,7 +37,7 @@
605 agency="Turkey"
01-02,030-039,04-09,100-399,4000-5999,60000-89999,9000-9999
606 agency="Romania"
- 0-0,10-49,500-799,8000-9199,92000-99999
+ 0-0,10-49,500-799,8000-9099,910-919,92000-97499,975-999
607 agency="Mexico"
00-39,400-749,7500-9499,95000-99999
608 agency="Macedonia"
@@ -112,8 +112,8 @@
954 agency="Bulgaria"
00-28,2900-2999,300-799,8000-8999,90000-92999,9300-9999
955 agency="Sri Lanka"
- 0000-1999,20-40,41000-43999,44000-44999,4500-4999,50000-54999,550-749
- 7500-7999,8000-9499,95000-99999
+ 0000-1999,20-38,3900-4099,41000-43999,44000-44999,4500-4999,50000-54999
+ 550-749,7500-7999,8000-9499,95000-99999
956 agency="Chile"
00-19,200-699,7000-9999
957 agency="Taiwan"
@@ -140,8 +140,8 @@
00-12,130-139,14-14,1500-1699,170-199,2000-2789,279-289,2900-2999
300-699,7000-8999,90000-90999,910-949,95000-97999,980-999
967 agency="Malaysia"
- 00-00,0100-0999,10000-19999,300-499,5000-5999,60-89,900-989,9900-9989
- 99900-99999
+ 00-00,0100-0999,10000-19999,2000-2499,300-499,5000-5999,60-89,900-989
+ 9900-9989,99900-99999
968 agency="Mexico"
01-39,400-499,5000-7999,800-899,9000-9999
969 agency="Pakistan"
diff --git a/stdnum/isil.dat b/stdnum/isil.dat
index f507d5e..7985930 100644
--- a/stdnum/isil.dat
+++ b/stdnum/isil.dat
@@ -28,7 +28,7 @@ NZ$ country="New Zealand" ra_url="http://natlib.govt.nz/"
ra="National Library o
QA$ country="Qatar" ra_url="http://www.qnl.qa/" ra="Qatar National Library
(QNL)"
RU$ country="Russian Federation" ra_url="http://english.gpntb.ru/" ra="Russian
National Public Library for Science and Technology"
SI$ country="The Republic of Slovenia"
ra_url="http://www.nuk.uni-lj.si/nukeng3.asp?id=311364382" ra="National and
University Library"
-SK$ country="Slovak Republic" ra_url="http://www.snk.sk" ra="Slovak National
Library"
+SK$ country="Slovak Republic"
ra_url="http://www.snk.sk/en/information-for/libraries-and-librarians/isil.html"
ra="Slovak National Library"
O$ ra="See OCLC"
OCLC$ country="WorldCat Symbol" ra_url="http://www.oclc.org" ra="OCLC"
ZDB$ country="Staatsbibliothek zu Berlin - Zeitschriftendatenbank"
ra="Staatsbibliothek zu Berlin"
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 59 +++++++
NEWS | 9 ++
getcnloc.py | 4 +-
getiban.py | 4 +-
getnumlist.py | 4 +-
setup.py | 2 +-
stdnum/__init__.py | 4 +-
stdnum/cn/loc.dat | 2 +-
stdnum/iban.dat | 6 +-
stdnum/imsi.dat | 454 +++++++++++++++++++++++------------------------------
stdnum/isbn.dat | 18 +--
stdnum/isil.dat | 2 +-
12 files changed, 290 insertions(+), 278 deletions(-)
hooks/post-receive
--
python-stdnum
--
To unsubscribe send an email to
python-stdnum-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/python-stdnum-commits/
- python-stdnum branch master updated. 1.3,
Commits of the python-stdnum project