Untitled

 avatar
unknown
python
a year ago
334 B
1
Indexable
for hd in heads:
	if 'Camera-type' in hd and (hd not in list(gt.keys())):
		if 'Height' in hd:
			hd_=hd+'[mm]'
		else:
			hd_=hd+'[degree]'
	elif 'Camera_SW-ver'==hd and (hd not in list(gt.keys())):
		hd_=hd+'.'
	elif 'Camera_SW-ver.'==hd and (hd not in list(gt.keys()))):
		hd_=hd[:-1]
	else:
		hd_=hd
	db_dct[hd].append(gt[hd_][0])
Editor is loading...