New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@equinor/videx-wellog

Package Overview
Dependencies
Maintainers
0
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@equinor/videx-wellog

Visualisation components for wellbore log data

  • 0.10.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1K
decreased by-5%
Maintainers
0
Weekly downloads
 
Created
Source

SCM Compliance

Videx well log

Well log powered by the ViDEx well log components and Volve open data sets provided by Equinor.

volve-well-log

Installation

npm install @equinor/videx-wellog

Docs

Generate type-doc to ./docs

npm run docs 

Storybook

# from root:
npm run storybook:install
npm run storybook

Tracks

Tracks are containers that can be added to a wellog component. A Track is resposible to react to lifecycle events provided by its container.

Distribution Track

The Distribution Track visualizes the distribution of categories along a depth axis, showing how different components vary continuously or discretely with depth.

Config

Provided is a sample configuration object for setting up a Distribution Track.

{
  label: 'Distribution',
  abbr: 'Dst',
  data: [
    {
        "depth": 1,
        "composition": [
            { "key": "Red Stone", "value": 80.00 },
            { "key": "Grey Stone", "value": 20.00 }
        ]
    },
    {
        "depth": 2,
        "composition": [
            { "key": "Red Stone", "value": 40.00 },
            { "key": "Grey Stone", "value": 60.00 }
        ]
    }
  ],
  legendConfig: distributionLegendConfig,
  components: {
    'Red Stone': {
      color: 'FireBrick',
      textColor: '#8E1B1B', // Optional, will use color by default
    },
    'Grey Stone': {
      color: 'SlateGrey',
    },
},
  interpolate: true,
}

Note: distributionLegendConfig will use color given in components.

Assumptions

  • Depth is sorted in ascending order.
  • Composition totals 100.

Contribution

We greatly appreciate contributions to this repository, see our contribution page on how to get started.

Keywords

FAQs

Package last updated on 02 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc