Hi all,
I am newbie to geonames but an experienced developer with 17 years of experience. Having said that, the doc says:
country string : country code, ISO-3166 (optional) Default is all countries. The country parameter may occur more than once, example: country=FR&country=GP
But the code says this:
Code:
public void setCountryCode(String countryCode)
throws InvalidParameterException {
if (countryCode != null && countryCode.length() != 2) {
throw new InvalidParameterException("invalid country code "
+ countryCode);
}
this.countryCode = countryCode;
}
How can I set multiple countries please?
Thanks!
Kind regards
Lorenwo