It appears that ScalingFunctions is flipping the sign of the y-values.
lp = ListContourPlot[tmap,ImageSize->200,FrameTicks->Automatic,ScalingFunctions->{Identity,"Reverse"},DataRange->{{1,10},{1,100}}] ;
PlotRange /. AbsoluteOptions[lp]
So, this will show the contours:
ListContourPlot[tmap, ImageSize -> 200, FrameTicks -> Automatic,
ScalingFunctions -> {Identity, "Reverse"},
DataRange -> {{1, 10}, {1, 100}},
PlotRange -> {{1., 10.}, {-100, -1}}
]
But, the contours have been messed up. I think contacting Tech Support may be your next step.
For a work-around, mapping your data as the first step:
ListContourPlot[Reverse@tmap, DataRange -> {{1, 10}, {1, 100}}, ImageSize -> 200]
may be what you are after.