Date(){z=50;};
at the points you want dates for. Or you can use an optional third
parameter for the P_Sequence as in:
Plot()
{
// this will give 0.1 increments every cm (ie 1 per every 10cm); k
is set here as 1 and there are only three dates
P_Sequence("",1,0.1)
{
Boundary(){z=125;}; // set bottom boundary slightly deeper than
bottom date
R_Date("A",705,15)
{
z=117;
};
R_Date("B",690,20)
{
z=95;
};
R_Date("C",10,10)
{
z=15;
};
Boundary(){z=10;}; // set top boundary slightly higher than top date
};
};
It is better to set the boundary depths here like this. In this case
there is barely enough information for the depth model to work but
you do get the interpolation you want as in the paper.
I am aware that a better method for interpolating the age model would
be good - it is near the top of the to-do list for the program.
Christopher