Learn R Programming

geoelectrics (version 0.2.2)

ProcessedData-class: Processed Data Class

Description

A class to handle processed geoelectrics data in ascii format. The processed data class parses .xyz files produced by the software Res2DInv. If you want to use another format, overwrite the parseProcessedDataFile method.

Arguments

Slots

address

address of the processed ascii file

points

data frame that contains positions and values withouth topography information

pointsWithTopo

data frame that contains positions and values with topography information

height

data frame that contains topography information (distances and heights). It is reconstructed from .xyz-file.

minData

minimum value

maxData

maximum value

See Also

parseProcessedDataFile, Profile-class, ProfileSet-class

Examples

Run this code
processedData = new('ProcessedData',
                     address = system.file('extdata/processed/p1_DipolDipol_SW-NE.xyz',
                     package='geoelectrics'))

data(sinkhole)
sinkhole@profiles[[1]]@processedData
sinkhole@profiles[[1]]@processedData@points
sinkhole@profiles[[1]]@processedData@pointsWithTopo
sinkhole@profiles[[1]]@processedData@height
sinkhole@profiles[[1]]@processedData@minData
sinkhole@profiles[[1]]@processedData@maxData

Run the code above in your browser using DataLab