UNPKG

@testwellioviz/wellioviz

Version:

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

15 lines (13 loc) 426 B
const TrackTemplate = require("./track_template") class DefaultSubTrack extends TrackTemplate { constructor(params = {}) { super(params); this.track_template_name = 'default' this.show_well_name = false this.show_depth_type = false this.independent_scale = false this.div_id = 'sub_track' this.handle_params() } } module.exports = DefaultSubTrack