Last chance! 50% off unlimited learning
Sale ends in
Parses .xyz files produced by the software Res2DInv. Needs to be overwritten if another processed data format is used.
parseProcessedDataFile(address, skip = 0)
list of two data frames: The first data frame contains points without topography (distance, depth and resistivity values). The second data frame contains points with topography (distance, height and resistivity values).
address of the raw data ascii file.
the number of lines of the data file to skip before beginning to read data.
ProcessedData-class
, Profile-class
fileAddress <- system.file('extdata/processed/p1_DipolDipol_SW-NE.xyz',
package = 'geoelectrics')
processedData = new('ProcessedData')
processedData@address = fileAddress
processedData@points <- parseProcessedDataFile(address = fileAddress)[[1]]
processedData@pointsWithTopo <- parseProcessedDataFile(address = fileAddress)[[2]]
Run the code above in your browser using DataLab