Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
thornoe committed Sep 27, 2023
1 parent 7970022 commit be0f346
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Binary file added gis/.backups/gis.aprx
Binary file not shown.
15 changes: 14 additions & 1 deletion gis/valuation.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,20 @@
# 2. First look at the data #
###############################################################################
df.describe()
df.drop(columns=["alder", "ind", "gen_alder", "gen_ind"], inplace=True) # personal info
df.tail()
df["Kystom_2ID"].nunique() # 90 coastal catchment areas
df["Kystom_2ID"].unique()

# Households in coastal catchment areas
df.loc[df["sum_pers"] < 5]
df.loc[df["sum_hust"] < 20]
df.loc[(df["sum_hust"] > 20) & (df["sum_hust"] < 100)]
df.loc[df["Kystom_2ID"] == 18000061] # 55 km vestkyst fra Nymindegab til Sønder Nissum
df.loc[df["Kystom_2ID"] == 18000062] # Kystvandopland Ringkøbing Fjord
df.loc[df["Kystom_2ID"] == 14000062] # 50 km vestkyst fra Sønder Nissum til Thyborøn
df.loc[df["Kystom_2ID"] == 11000084] # 200 km vestkyst fra Agger Tange til Grenen
df.loc[df["Kystom_2ID"] == 114000047] # Fyns og Langelands østkyst
df.loc[df["Kystom_2ID"] == 113000046] # Odense Fjord
df.loc[df["Kystom_2ID"] == 23000074] # Sjællands nordkyst fra Hundested til Helsingør
df.loc[df["Kystom_2ID"] == 2300003] # Øresund fra Helsingør til Dragør
g

0 comments on commit be0f346

Please sign in to comment.