cusicand / lidarhd_ign_downloader

Python script to download and resample LiDAR HD from IGN.
Apache License 2.0
2 stars 1 forks source link

SSLCertVerificationError #3

Open thierionvi opened 3 months ago

thierionvi commented 3 months ago

Hi,

thank you for your very useful work !

I got the following error on a cluster with proxy : ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1007)

I just add this code at the beginning of the lidar_downloader.py :

import ssl
ssl._create_default_https_context = ssl._create_unverified_context

Vincent