0% found this document useful (0 votes)
67 views5 pages

Plot Container Solution 6945617 02

The document discusses how to insert a plot into a container plot using a Python script in Techlog. It explains that the Python script first creates a container, then creates a plot like a cross plot, and lastly inserts the plot into the container. An example Python script is also provided.

Uploaded by

krackku k
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
67 views5 pages

Plot Container Solution 6945617 02

The document discusses how to insert a plot into a container plot using a Python script in Techlog. It explains that the Python script first creates a container, then creates a plot like a cross plot, and lastly inserts the plot into the container. An example Python script is also provided.

Uploaded by

krackku k
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

How to insert a plot, into a container plot, using

Python script within Techlog


How to insert a plot, into a container plot, using Python
script within Techlog

© 2016 Schlumberger. All rights reserved.

An asterisk is used throughout this presentation to denote a mark of Schlumberger.


Other company, product, and service names are the properties of their respective
owners.
Aim of the content

The aim of this solution is to be able to create container that contains any kind of plots
using Python script in Techlog.
Python script explanation
The first line of the Python script create the container. Then the second line will create
plot (here for example a Cross-plot). Last line will insert the plot inside the container.

containerID=plot.containerCreate("Workspace
_name", "Test")

crossplot1ID=plot.crossPlotCreate("ok","Well.d
ataset.variable"," Well.dataset.variable
","","","",containerID)

plot.containerAddCell(containerID,
crossplot1ID,0,0)
Example of Python script

User can add as many as Cross-plots needed inside the container.

You might also like