I have an XML document below:
<wave waveID="1">
<well wellID="1" wellName="A1">
<oneDataSet>
<rawData>0.1123975676</rawData>
</oneDataSet>
</well>
... more wellID's and rawData continues here...
In general terms, what's the best way to read the rawData, should I grab the node containing the well waveID=1 and then loop through that tree finding the rawData for each wellID? I'm new to XML and a little confused about the best way to read trees.