transformation coordinates not correct

I am trying to display an image with coordinates from a worldfile so that i
can plot GPS points on it later, but after i make the transformation the
axes coordinates are unchanged and the y axis is upside down.

My code so far is this:
fig=plt.figure()
ax=fig.add_subplot(2,1,1)
img=imread('imgpath')
file1=file(r'imgpath')
transValList=[]
for eachline in file1:
    transValList.append(eachline)
t=tsf.Affine2D.from_values(transValList[0],transValList[1],transValList[2],transValList[3],transValList[4],transValList[5])
ax.imshow(img, transform=t)
fig.show()

Any suggestions as to what is going on?

···

--
View this message in context: http://www.nabble.com/transformation-coordinates-not-correct-tp24207983p24207983.html
Sent from the matplotlib - users mailing list archive at Nabble.com.