I am using ListContourPlot to plot trajectory data against launch and arrival dates in Julian days. My axes go from 1 to 29, but I need to label the x-axis from 491 to 519, and the y-axis from 731-759. I have tried Ticks-> using a variety of syntax but cannot get it to do anything. Here's one try:
ListContourPlot[dataDV, Contours -> {12, 12.55, 12.6, 12.75, 13, 13.5, 14, 15, 17, 20, 30, 40}, ContourLabels -> True, InterpolationOrder -> 2, ContourShading -> None, FrameLabel -> {"Launch Date (Julian Date, 2465xxx)", "Arrival Date (Julian Date, 2465xxx)"}, LabelStyle -> Directive[12], FrameStyle -> Thickness[0.003], FrameTicks -> Automatic, Ticks -> {Automatic, {5 -> 495, 10 -> 500, 15 -> 505, 20 -> 510, 25 -> 515}}] I will appreciate any help I can get. Thanks.

DataRangeis helpful, see the help files. So perhapsDataRange -> {{491,519},{731,759}}? $\endgroup$dataDVis missing. $\endgroup$