-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_merge.py
21 lines (15 loc) · 1011 Bytes
/
test_merge.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import pandas as pd
current_path = '/exports/csce/datastore/geos/users/s1134744/LSDTopoTools/Topographic_projects/Himalayan_front/350_3500/himalaya_27.0/27.00_86.22_himalaya_27.0_2/20000/'
writing_prefix = '220000_35000'
with open(current_path+writing_prefix+'_chi_data_map_burned.csv','r') as chi:
pandasChi = pd.read_csv(chi, delimiter = ',')
burned_data = pandasChi[["burned_data","latitude","longitude"]]
burned_data[["latitude","longitude"]] = burned_data[["latitude","longitude"]].round(4)
#print burned_data
with open(current_path+writing_prefix+'_MChiSegmented.csv','r') as mchi:
pandasMChi = pd.read_csv(mchi, delimiter = ',')
pandasMChi[["latitude","longitude"]] = pandasMChi[["latitude","longitude"]].round(4)
burned_data = burned_data.merge(pandasMChi,on=["latitude","longitude"])
#print pandasMChi
#print burned_data
burned_data.to_csv(current_path+writing_prefix+'_MChiSegmented_burn.csv', mode = "w", header = True, index = False)