I installed Docker Desktop on windows machine and then installed Nominatim on it using command docker run -it --rm --shm-size=350g -e threads=32 -e PBF_URL=http://download.geofabrik.de/north-america-latest.osm.pbf -e IMPORT_WIKIPEDIA=false -e NOMINATIM_PASSWORD=very_secure_password -v nominatim-data:/var/lib/postgresql/12/main -p 8080:8080 --name nominatim mediagis/nominatim:4.0 which is returning Zipcode as None to many of latitude and longitude coordinate pairs.
So i was trying to Install Nominatim again using Import Wikipedia, with US postcodes and Tiger Addresses
But it internally redirects to https URL for Wikipedia dump and fails with the error CURL: SSL certificate problem: Unable to get local issuer certificate. How do I resolve this, is there any way i can specify to make it redirected to http instead of https?
I installed Docker Desktop on windows machine and then installed Nominatim on it using command
docker run -it --rm --shm-size=350g -e threads=32 -e PBF_URL=http://download.geofabrik.de/north-america-latest.osm.pbf -e IMPORT_WIKIPEDIA=false -e NOMINATIM_PASSWORD=very_secure_password -v nominatim-data:/var/lib/postgresql/12/main -p 8080:8080 --name nominatim mediagis/nominatim:4.0
which is returning Zipcode as None to many of latitude and longitude coordinate pairs.So i was trying to Install Nominatim again using Import Wikipedia, with US postcodes and Tiger Addresses But it internally redirects to https URL for Wikipedia dump and fails with the error CURL: SSL certificate problem: Unable to get local issuer certificate. How do I resolve this, is there any way i can specify to make it redirected to http instead of https?