We have been trying to retrieve streets from the data but keep getting the same error when making the attempt:
Error: sys:1: DtypeWarning: Columns (5,8,9,10,12,13,15,16,17) have mixed types. Specify dtype option on import or set low_memory=False.
The command we are using is:
python /app/best/filter/filter.py /app/best/data/data.csv /app/best/data/streets.csv --output_type street --postcode 1020
We have tried several zipcodes but with no success.
Sidenote, is it possible to omit the --postcode flag so that we extract all available streets? We actually need a list of streets instead of a list of addresses.
edit: We are using FROM python:3.7.4-alpine as base, the base of our Docker setup is pretty much the same as the one included in this repo.
We have been trying to retrieve streets from the data but keep getting the same error when making the attempt:
The command we are using is:
We have tried several zipcodes but with no success.
Sidenote, is it possible to omit the
--postcodeflag so that we extract all available streets? We actually need a list of streets instead of a list of addresses.edit: We are using
FROM python:3.7.4-alpine as base, the base of our Docker setup is pretty much the same as the one included in this repo.