Commit 0fa79263 authored by Laura LINDEPERG's avatar Laura LINDEPERG
Browse files

Minor changes

parent 87ff1d22
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -35,15 +35,15 @@ shp_watersheds = gpd.read_file(shp_watersheds_path)
# List of the stations'codes
watershed_code = shp_watersheds.loc[:,'Code']
# Get a sample of them for test
# code_for_test = watershed_code.loc[0:3]
code_for_test = watershed_code.loc[509:512]
# code_for_test = ['V1015810']
# *************************** Extract watersheds' properties ************************************
# problematic_watersheds = pd.DataFrame()
studied_watersheds = pd.DataFrame()
# for i in code_for_test:
for i in watershed_code:
for i in code_for_test:
# for i in watershed_code:
# Get the station's name
watershed_stations_i = shp_watersheds[shp_watersheds.loc[:, 'Code'] == i]
watershed_name_i = watershed_stations_i.loc[:, 'Nom'].values[0]
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment