UNPKG

@testwellioviz/wellioviz

Version:

Provides functionality to visualize well logs, particularly those already converted to JSON, using d3.js visualization library.

12 lines (11 loc) 322 B
const LogCurveTemplate = require("./log_curve_template") class GR extends LogCurveTemplate { constructor(params={}) { super(params); this.curve_name = "GR" // this.fill = null // TODO: GR Fill this.units = "API" this.handle_params(params) } } module.exports = GR