1. Are these "extended descriptions" on the cogo points from the survey? When you export from the field book to geometry you can build an 'extended description'. What you may do is look in one of the reports that includes the extended description test (i.e. CogoPointsExtendedDescription.xsl) and pull out the portion for the extended description.
<xsl:if test="@extendedDescription">
<tr>
<th align="right" lang="en" valign="top">Extended Description:  </th>
<td><xsl:value-of select="@extendedDescription"/></td>
</tr>
</xsl:if>
2. I am not aware of a way to pick out the first and last stations as reported in the XML Report to place it in the top of the report. There may be a way to do this so I will research but I don't know off the top of my head how this could be accomplished. When I run a geometry report, I can see that the raw-xml includes the POB and POE points, but I don't know if that information can be pulled out specifically. You may can look at those options and see if you can use the coding.
![]()
3. You should be able to add information under the Project Data option so it appears at the top of the reports. Different reports have different objects displaying at the top so depending on the type of information that is output to the raw-xml. What I typically do is find reports that have the information I want and use the coding in the xsl as a base when editing reports. Sort of like cutting out pieces of the reports and gluing them back into a formatted report with my desired output. But it all depends on if the type report you run populates the information in the raw-xml so that the stylesheets can format the information.
![]()