#!/usr/bin/python import gdal import struct from gdalconst import * def interpolate(coords_list,steps): new_coords_x=[] new_coords_y=[] coords=[] for u in coords_list: coords.append(u.split(',')) new_coords_x=[coords[0][0]] new_coords_y=[coords[0][1]] count=0 for u in coords: change_x=0 change_y=0 if (count