[GRASSLIST:4408] ps.map (multiple vectors, coordinate numbers)

Two more questions arose with ps.map (GRASS 5.3):

How can I define in the mapping instructions to include several vector maps? I couldn't find any examples how to do this with the command "vector vectormap | list".

Is it possible to plot the coordinate numbers ("grid" command) outside of the map boundaries?

Thanks a bunch,
Christof

Two more questions arose with ps.map (GRASS 5.3):

How can I define in the mapping instructions to include several vector
maps? I couldn't find any examples how to do this with the command
"vector vectormap | list".

the following works for me:

[GRASS 5.3]
ps.map input=- output=test.ps <<EOF
scale 1:850000
maploc 1.0 0.75
vector coastline
  acolor 233 233 233
  width 0.25
  masked n
  end
vector property_lines
  color black
  width 1.5
  masked n
  end
end
EOF

[GRASS 5.7]
ps.map -r input=- output=test.ps <<EOF
scale 1:35000
paper a4
  top 0.9
  end
maploc 0.79 0.9
vpoints StudySites
  symbol basic/cross
  size 4
# fcolor none
  end
vareas coastline
  fcolor 233 233 233
  width 0.25
  masked n
  end
vareas StudySites_100mBuf
  fcolor 220 140 120
  width 1.5
  masked n
  end
end
EOF

Is it possible to plot the coordinate numbers ("grid" command) outside
of the map boundaries?

Not without modifying the source code yourself.
The "cross" option might be useful to you.

Hamish