@testwellioviz/wellioviz
Version:
Provides functionality to visualize well logs, particularly those already converted to JSON, using d3.js visualization library.
12 lines (11 loc) • 361 B
JavaScript
const LogCurveTemplate = require("./log_curve_template")
class CAL extends LogCurveTemplate {
constructor(params={}) {
super(params);
this.curve_name = "CAL"
this.units = "cm"
this.stroke_type = "dash" // TODO Warning! This might not be a thing haha
this.handle_params(params)
}
}
module.exports = CAL