| parseRawDataFile {geoelectrics} | R Documentation | 
Parses a Raw Data File
Description
Parses a geoelectrics raw data file created by the GeoTest software by Dr. Rauen. Needs to be overwritten if another raw data format is used.
Usage
parseRawDataFile(address, skip = 9)
Arguments
| address | address of the raw data ascii file. | 
| skip | the number of lines of the data file to skip before beginning to read data. | 
Value
data frame containing distance, depth and resistivity values
See Also
Examples
fileAddress <- system.file('extdata/raw/p1_DipolDipol_SW-NE.dat',
                   package = 'geoelectrics')
                   
rawData = new('RawData')
rawData@address = fileAddress
rawData@points <- parseRawDataFile(address = fileAddress)
[Package geoelectrics version 0.2.2 Index]