edu.sc.seis.seisFile.fdsnws.stationxml.Pole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seisFile Show documentation
Show all versions of seisFile Show documentation
A library for reading and writing seismic file formats in java.
The newest version!
package edu.sc.seis.seisFile.fdsnws.stationxml;
import javax.xml.stream.XMLEventReader;
import javax.xml.stream.XMLStreamException;
public class Pole extends PoleZero {
public Pole(FloatNoUnitType realWithError, FloatNoUnitType imaginaryWithError) {
super(realWithError, imaginaryWithError);
}
public Pole(XMLEventReader reader) throws XMLStreamException, StationXMLException {
super(reader, StationXMLTagNames.POLE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy