|
Hi , When you comment out the SHADE command, Ferret does not do the setup activities that the shade command does, including setting the longitude and latitude units and the length of the the axes that are plotted on the page. The main trouble is that you are starting with a POLY/OVERLAY command which does no setup. I think the best solution is to start with a call to the basemap.jnl script, instead of the call to fland that you have in your script. This way the axes are set up, and are properly labeled with degrees longitude and latitude. Or you could use /HLIMITS and /VLIMITS on the first POLYGON command to set the correct lengths of the plot axes, and remove the /OVERLAY qualifier on the first call so that Ferret knows this is the first plot and it needs to do the setup steps, setting axis length and so on Solution 1: go basemap x=160e:180e y=60s:40s 5
let AA={168,168.5,168.5,168}
let BB={-50,-50,-50.5,-50.5}
polygon/nolabel/over/line/thick=0.2 AA,BB
polygon/nolabel/over/line/thick=0.2 0.5+AA,BB
polygon/nolabel/over/line/thick=0.2 1.0+AA,BB
polygon/nolabel/over/line/thick=0.2 AA,-0.5+BB
polygon/nolabel/over/line/thick=0.2 0.5+AA,-0.5+BB
polygon/nolabel/over/line/thick=0.2 1.0+AA,-0.5+BB
or, Solution 2: let AA={168,168.5,168.5,168}
let BB={-50,-50,-50.5,-50.5}
polygon/nolabel/HLIMITS=160e:180e/VLIMITS=60s:40s/line/thick=0.2 AA,BB
polygon/nolabel/over/line/thick=0.2 0.5+AA,BB
polygon/nolabel/over/line/thick=0.2 1.0+AA,BB
polygon/nolabel/over/line/thick=0.2 AA,-0.5+BB
polygon/nolabel/over/line/thick=0.2 0.5+AA,-0.5+BB
polygon/nolabel/over/line/thick=0.2 1.0+AA,-0.5+BB
go fland 5
-AnsleyNamba Takaya wrote:
|