We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running 'python zip2ws.py -i' gives me these two warnings, I believe it is because of a unicode error in the address. Did anyone else get this?
Downloading 'http://federalgovernmentzipcodes.us/free-zipcode-database-Primary.csv'... Downloading 'http://www1.ncdc.noaa.gov/pub/data/ghcn/daily/ghcnd-stations.txt'... Downloading 'ftp://ftp.ncdc.noaa.gov/pub/data/noaa/isd-history.csv'... WARNING: Table stations already created WARNING: Cannot insert row ==> ('UTQIA\xc4\xa0VIK FORMERLY BARROW 4 ENE', -0.156611, 0.0046, 2002080.8)
The text was updated successfully, but these errors were encountered:
In Python 3, I was able to get things running by modifying zip2ws.py:
zip2ws.py
class Logger()
def flush(self): pass
decode("utf-8")
reader.next()
next(reader)
r
rb
I get one warning while computing closest stations with -c but it does not seem to matter: Table closest already created.
-c
Table closest already created
Sorry, something went wrong.
No branches or pull requests
Running 'python zip2ws.py -i' gives me these two warnings, I believe it is because of a unicode error in the address. Did anyone else get this?
Downloading 'http://federalgovernmentzipcodes.us/free-zipcode-database-Primary.csv'...
Downloading 'http://www1.ncdc.noaa.gov/pub/data/ghcn/daily/ghcnd-stations.txt'...
Downloading 'ftp://ftp.ncdc.noaa.gov/pub/data/noaa/isd-history.csv'...
WARNING: Table stations already created
WARNING: Cannot insert row ==> ('UTQIA\xc4\xa0VIK FORMERLY BARROW 4 ENE', -0.156611, 0.0046, 2002080.8)
The text was updated successfully, but these errors were encountered: