views:

422

answers:

2

All,

Our application requires data on ISO countries and currencies (where the data must be up to date). We did purchase country/currency data from ISO themselves, however we still needed to perform alot of manual manipulation of the data, as well as write our own tool to read and process the data into our database.

  1. Are we going about getting this data the wrong way?

  2. What is the norm in relation to the acquisition of country/currency data?

  3. Is there any well known providers out there that are offer to provide this data as a service or through some other medium in a usable format?

Any help will be greatly appreciated.

+1  A: 

The .NET CultureInfo class provides formatting for currencies (as well as dates, times, numbers, etc). I would never have even considered buying the data from ISO when it's available for free in the .NET runtime.

Stewart Johnson
The author of the question didn't say he uses .NET. And he didn't say he's needing the information for formatting purposes.
splattne
He also didn't say the he doesn't use .NET, nor did he say that he doesn't need the information for formatting of currencies.
Stewart Johnson
A: 

You might be interested by IBM's International Component for Unicode (ICU) library.

Open source, well known, supports "numbers, dates, times and currency amounts" formatting.

Not sure if it helps your case, but this info might be useful for somebody else... :-)

PhiLho