/**
 * @module meteoJS/thermodynamicDiagram/coordinateSystem/skewTlogPDiagram
 */
import CoordinateSystem from '../CoordinateSystem.js';

/**
 * Coordinate system for a skew-T-log-P diagram. This diagram has straight lines:
 * * pressure/isobars (horizontal)
 * * temperature/isotherms (normally 45 degree inclination to the right)
 * 
 * @extends module:meteoJS/thermodynamicDiagram/coordinateSystem.CoordinateSystem
 */
export class SkewTlogPDiagram extends CoordinateSystem {
}
export default SkewTlogPDiagram;