Profile-class {geoelectrics} | R Documentation |
Profile Class
Description
A class to handle a single profile.
Slots
title
title of the profile (e.g. Profile 1).
number
index of the profile.
processedData
object of Processed Data Class (
ProcessedData-class
).rawData
object of Raw Data Class (
RawData-class
).measurementType
type of measurement (e.g. Dipole Dipole, Wenner, ...).
gpsCoordinates
object of GpsCoordinates Class (
GpsCoordinates-class
).
See Also
ProcessedData-class
, RawData-class
,
GpsCoordinates-class
, plot3d
, plot
Examples
p1 <- new('Profile',
title = 'Profile 1',
processedData =
new('ProcessedData', address = system.file('extdata/processed/p1_DipolDipol_SW-NE.xyz',
package='geoelectrics')),
rawData =
new('RawData', address = system.file('extdata/raw/p1_DipolDipol_SW-NE.dat',
package='geoelectrics')),
measurementType = 'DipoleDipole',
gpsCoordinates =
new('GpsCoordinates', address = system.file('extdata/gps/p1.txt',
package='geoelectrics')))
p1@title
p1@processedData
p1@rawData
p1@measurementType
p1@gpsCoordinates
plot3d(p1)
[Package geoelectrics version 0.2.2 Index]