ISO-3166 standard defining 2 and 3 character identifiers for each country in the world.

learn more… | top users | synonyms

2
votes
2answers
168 views

Displaying Country and its calling code, but returning its Abbreviated code using Android XML

I am trying to develop a Registration screen from Android XML. As in every Registration form, I would need to display the list of countries. I am able to do this using string-array in strings.xml ...
0
votes
3answers
120 views

country code of incoming calls in android

I've just built an application that detecting incoming calls. I see that in some phones(or in different version of android) incoming call number has country code , some incoming numbers has not . Is ...
-1
votes
2answers
45 views

Paypal buttons with different prices depending on country

I have a website and I would like to include a PayPal button so clients can purchase directly on the site, the only problem is that I need the same button to appear differently (with different prices ...
1
vote
1answer
68 views

Country code RD returned on ipinfodb v2 [duplicate]

I'm using ipinfodb via PHP v2. ipinfodb returns 3-5% of our daily calls with CountryCode as 'RD'. Can't find RD in valid country codes. I will start logging IP's for RD returns, so far I only know ...
1
vote
1answer
175 views

How to convert “Country code” to “Mobile Country Code” programmatically in iOS?

I am able to grab the country code (ISO 3166 'two letter code') from NSLocale or from GeoPlugin. But my requirement is to get the MCC (mobile country code). I need to call one REST API with this ...
0
votes
1answer
130 views

Shopify regions (countries) in JSON format

I'm trying to implement a JavaScript solution in Shopify to match my customer's current location (by country.code using http://freegeoip.net/json) against an array of countries that my shop delievers ...
0
votes
0answers
27 views

detect country and show lightbox message

I'd like to show a lightbox message (specific div) to everyone who is not in one particular country, ie everyone who is not in Australia will see the message. Can anyone tell me how to do it, or point ...
0
votes
1answer
66 views

AN country code in maxmind database, what country does it refer to?

Selecting distinct(country) from my maxmind database i found country with code "AN", that is not in list here: http://dev.maxmind.com/geoip/codes/iso3166 and on wiki: ...
0
votes
1answer
176 views

List of all top level domains

I found a lot of threads explaining how to get the country-codes in two- or three-letter format, but nothing that fits to my task. I'm heading for a way to get all the top level domains in an array or ...
-4
votes
3answers
1k views

PHP - Detect country [duplicate]

Possible Duplicate: package for detecting users contry in php? Geo Location based on IP Address - PHP i want to detect my visitors country And i has searching the solution from Google ...
2
votes
2answers
236 views

android : How to set Country code manually in emulator

When i use following code , it always shows the country code as US. context = MainActivity.this; String locale = context.getResources().getConfiguration().locale.getCountry(); TelephonyManager ...
-3
votes
1answer
263 views

How to make my “phone” field just like Google Signup Page [closed]

i have field for "Phone Number" what i need to do is that to make it like the below image.default will be the user current location country code when i click into it so it opens like this Note : ...
3
votes
5answers
503 views

ISO2 country code from country name

Is there an easy way in Java to get the ISO2 code from a given country name, for example "CH" when given "Switzerland"? The only solution I can think of at the moment is to save all the country codes ...
1
vote
1answer
197 views

Load Country Flag From Geonames API using JSONP technique

This Request.JSON http://mootools.net/demos/?demo=Request.JSON using JSON data in a way like this, var data = {"previews":[ {"Countrycode":"us", "src":"us.jpg", "description":"desc will be here"}, ...
0
votes
1answer
171 views

Country name to ISO 3166-1 alpha 2 code

I have a country name like Australia and I would like to get the ISO 3166-1 alpha 2 code like AU in this case. Is there a way to easily do this in .NET?
3
votes
1answer
124 views

Objective-c: How can i get the real phone Country (E164) code (Not the Mobile coutry code - MCC)?

hello! Im trying to get the real country code E164 (for example: US = 1 Or Israel = 972) in obj-c? for Example, The user entering his phone number: 0523333333 and if the User is from Israel i need ...
0
votes
1answer
340 views

java.util.MissingResourceException: Couldn't find 3-letter country code for CS

I get the exception: Exception in thread "AWT-EventQueue-0" java.util.MissingResourceException: Couldn't find 3-letter country code for CS at java.util.Locale.getISO3Country(Locale.java:1521) ...
0
votes
2answers
128 views

Remove zeros from country code of phone number in Objective-C

I want to remove the preceding zeros from phone number's country code. I take it as NSString because phone number contains symbols such as + , ( , ) , - . I need those symbols. e.g Input:- 1) ...
0
votes
1answer
91 views

How to route visitors from China to Youku and others to Youtube?

Is there a standard way of routing IP addresses from certain ranges to a certain link and another range to another link? I have a large percent of visitors coming from China, but I don't want to make ...
0
votes
0answers
347 views

Get all Country and Code of iTunes Stores

I would like to have a list of Countries and their corresponding Codes used in iTunes, so that I can query them in iTunes API. Thanks
1
vote
1answer
426 views

IATA to country API

I'm developing an app that needs to look up country codes (ISO-3166 alpha2) based on IATA-codes (http://en.wikipedia.org/wiki/IATA_airport_code). Is there an (preferably free) API for that?
3
votes
2answers
374 views

Country name from ISO short code in dictionary, how to deal with non-ascii chars

I'm making a webapp that takes country short code (google app engine get from request header) and I want to get the country name (full name) not just the 2 letter initials. I tried making a python ...
1
vote
1answer
1k views

Get country code from country name in IOS

Im retrieving a country name from a server in english. so, the server response "Spain" for example. So, what i want to do is, assuming than the country name is going to be written in english, get ...
1
vote
8answers
4k views

Getting visitors country from their IP

i want to get visitors country via their IP.. right now I'm using this ( http://api.hostip.info/country.php?ip=...... ) here's my code if (isset($_SERVER['HTTP_CLIENT_IP'])) ...
0
votes
2answers
584 views

Setting my country and locale in Facebook

I have an FB app that uses country and locale codes to display alternative content to users. Does anyone know how I can change my user account's locale and country in Facebook so I can test the ...
0
votes
0answers
48 views

European Country/Region/Town data list

I want to have some combo boxes for selecting European regions and towns, where can I find some source data lists for it in English (but also with the local name if available)? For example: ...
0
votes
1answer
87 views

Updating old 'English.lproj" convention to modern 'en.lproj' one?

I'm working on a new project with an old dependency. The dependency has localization which is sorted in directories with the longer format names (English.lproj, German.lproj, etc.), but the new ...
14
votes
5answers
2k views

How to get Country (or its ISO code)?

What is the best way to get country code? As of now I know two ways one is to get by TelephonyManager and another by Locale which is the other best & unique way to find country code in android. ...
1
vote
1answer
160 views

Get country codes of Twitter followers

How do I get country codes of my Twitter followers using the Twitter API? Or is there any work around to get the same?
2
votes
1answer
329 views

ISO 3166-1 alpha-2 to Country name translation .NET

I will be dealing with a feed that gives me two letter country codes conforming to the ISO 3166-1 alpha-2 standard. So for instance, the United Kingdom has the code GB. My question is, is there some ...
0
votes
1answer
57 views

Zip code/addresses repository

Where can I find a zipcode/addresses or country repository ? I need it in order to make some comparisons with my existing data. Is there any free or do you have any opinion how to achieve that ? ...
0
votes
0answers
138 views

iOS: Convert ISO Alpha 2 to Alpha 3 country code

Is it possible to convert ISO 3166 alpha-2 country code to alpha 3 country code in iOS, for instance DE to DEU?
12
votes
1answer
323 views

How can I detect if an Android app is being used in Korea?

I have a game in the Google Play Store that has an option to change the scoring system from points to $'s. Apparently this is a simulation of gambling and illegal in South Korea. I got a official ...
0
votes
3answers
329 views

Mapping between ISO and Olympic country codes?

I have to perform mapping between ISO 3166-1 alpha-3 and IOC country codes. It looks like there is no way to do this natively via .NET framework. But could be that I'm missing something. Most likely ...
0
votes
1answer
185 views

IOS : wrong Czech country code

I think I found a bug in iOS Czech contacts. I've created a Czech contact (With Czech Republic country) that i selected in my application with a ABPeoplePickerNavigationController. The log of address ...
20
votes
3answers
553 views

How to plot historic country data (USSR, East Germany, etc) in GoogleMaps?

I'm building a series of infographics using Fusion Tables to show yearly data for countries, each nation represented by a pin on Google's map, the data values visible when you click on the nation's ...
5
votes
3answers
3k views

Where can i found Countries, Regions/States and Cities data in SQL format? [closed]

I am developing a website with PHP & MySQL where users can sign up. In the sign up form they need to select their country(dropdown) after that Region/State(dropdown). Here the main problem is i ...
1
vote
1answer
313 views

freebase api getting a country code for a city

I'm trying to use freebase to return a cities related country ISO code. I have this MQL which works but it doesn't work on certain cities and there's probably a more straight forward way to do the ...
1
vote
1answer
756 views

Is it possible to get the country code of a user from Facebook's Graph API?

When i tried to get the current location of a user via FQL, Graph API returned something like this; { "data": [ { "current_location": { "city": "Izmir", "state": "Izmir", ...
1
vote
1answer
208 views

rails 3 mongoid and countries gem

I'd like to use the countries gem I found here instead creating a separate model. It works fine to inherit from but I'd also like to be able to have other classes belong_to it. Is this possible? IE ...
4
votes
1answer
2k views

Is there a good flag icon pack that corresponds to ISO-3166 Country Codes? [closed]

I'm in need of an icon pack containing flags that correspond with ISO-3166 country codes such as US, CA, SE, DE etc. Optimally the flag icons would have names such as us.png, ca.png and so on. I'm ...
4
votes
4answers
679 views

Database: Currencies By CountryCode?

Where do I get a list of currencies along with country code? Example Code, Currency Name, Country, Format, Decimal Points, Currency Regime, Major Unit, Minor Unit, ...
3
votes
4answers
631 views

get list of countries from wp7

is it possible to get list of country names and country codes somehow from phone? E.g. the list of countries is displayed in Settings. Or can I easily get country name from country code like ...
5
votes
2answers
4k views

IOS: country code

I have this code to obtain a code country, but I want to see all code country available; then I can do some "if" to implement in my app NSLocale *locale = [NSLocale currentLocale]; NSString ...
1
vote
0answers
344 views

How to preselect a country with the `country_select` helper?

How is it possible to preselect a country in the dropdown list generated by the country_select or localized_country_select helpers? The following code nicely creates a list of countries, but the ...
1
vote
3answers
2k views

Retrieving a country telephone code for a specific country in Xcode

I'm quite new to iOS development and I'm currently building my first app. I'm trying to get a text field to automatically populate the telephone country code for a specific country. So if for example ...
1
vote
1answer
1k views

How to convert country code to country name [closed]

I have results from XML for country , but the results are in ISO2 format. EX: US them to be into my database as full country name EX: United States Is there any script that can convert country ...
3
votes
1answer
638 views

Retrieve Country Telephone Area Code using ASP.NET C#

I want to retrieve the country telephone code using ASP.NET C#... I've searched at google and the MSDN website but what I've found was the way how to retrieve the ISO Country Code..
2
votes
1answer
725 views

How to get currency name by country code?

I want to get the currency name by country code. I get the country code with the following code: TelephonyManager manager = (TelephonyManager)getSystemService(TELEPHONY_SERVICE); String ...
13
votes
3answers
4k views

Country Flags API

I'm looking for an API or Web Service which I can retrieve a country flag image or even a XML response with the image adress. So I'll can do something like this: <img ...

1 2