Skip to content

Commit

Permalink
Update ch.swisstopo.amtliches-gebaeudeadressverzeichnis
Browse files Browse the repository at this point in the history
  • Loading branch information
ganti committed Nov 30, 2024
1 parent efbaa3f commit d984ee6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fetchData/fetchData.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def download(url, file_name):

def getDataFromInternet():
downloads = {
'amtliches-gebaeudeadressverzeichnis_2056.csv': 'https://data.geo.admin.ch/ch.swisstopo.amtliches-gebaeudeadressverzeichnis/amtliches-gebaeudeadressverzeichnis/',
'amtliches-gebaeudeadressverzeichnis_ch_2056.csv': 'https://data.geo.admin.ch/ch.swisstopo.amtliches-gebaeudeadressverzeichnis/amtliches-gebaeudeadressverzeichnis_ch/',
'ortschaftenverzeichnis_plz_2056.csv': 'https://data.geo.admin.ch/ch.swisstopo-vd.ortschaftenverzeichnis_plz/ortschaftenverzeichnis_plz/'
}
for file, url_path in downloads.items():
Expand Down Expand Up @@ -57,7 +57,7 @@ def getOrtschaftenverzeichnis():
return dfTown

def getGebaeudeverzeichnis():
file_name = r'./amtliches-gebaeudeadressverzeichnis_2056.csv/pure_adr.csv'
file_name = r'./amtliches-gebaeudeadressverzeichnis_ch_2056.csv/amtliches-gebaeudeadressverzeichnis_ch_2056.csv'
if os.path.exists(file_name):
df = pd.read_csv(file_name, sep=';', engine='python', dtype='unicode')
else:
Expand Down

0 comments on commit d984ee6

Please sign in to comment.