jupyter | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
The camera position and direction is determined by three vectors: up, center, eye. Their coordinates refer to the 3-d domain, i.e., (0, 0, 0)
is always the center of the domain, no matter data values.
The eye
vector determines the position of the camera. The default is
The up
vector determines the up
direction on the page. The default is
The projection of the center
point lies at the center of the view. By default it is
import plotly.graph_objects as go
import pandas as pd
# Read data from a csv
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure(data=go.Surface(z=z_data, showscale=False))
fig.update_layout(
title=dict(text='Mt Bruno Elevation'),
width=400, height=400,
margin=dict(t=40, r=0, l=20, b=20)
)
name = 'default'
# Default parameters which are used when `layout.scene.camera` is not provided
camera = dict(
up=dict(x=0, y=0, z=1),
center=dict(x=0, y=0, z=0),
eye=dict(x=1.25, y=1.25, z=1.25)
)
fig.update_layout(scene_camera=camera, title=name)
fig.show()
by setting eye.z
to a smaller value.
import plotly.graph_objects as go
import pandas as pd
# Read data from a csv
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure(data=go.Surface(z=z_data, showscale=False))
fig.update_layout(
title=dict(text='Mt Bruno Elevation'),
width=400, height=400,
margin=dict(t=30, r=0, l=20, b=10)
)
name = 'eye = (x:2, y:2, z:0.1)'
camera = dict(
eye=dict(x=2, y=2, z=0.1)
)
fig.update_layout(scene_camera=camera, title=name)
fig.show()
set eye.x
and eye.z
to zero
import plotly.graph_objects as go
import pandas as pd
# Read data from a csv
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure(data=go.Surface(z=z_data, showscale=False))
fig.update_layout(
title=dict(text='Mt Bruno Elevation'),
width=400, height=400,
margin=dict(t=30, r=0, l=20, b=10)
)
name = 'eye = (x:0., y:2.5, z:0.)'
camera = dict(
eye=dict(x=0., y=2.5, z=0.)
)
fig.update_layout(scene_camera=camera, title=name)
fig.show()
import plotly.graph_objects as go
import pandas as pd
# Read data from a csv
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure(data=go.Surface(z=z_data, showscale=False))
fig.update_layout(
title=dict(text='Mt Bruno Elevation'),
width=400, height=400,
margin=dict(t=30, r=0, l=20, b=10)
)
name = 'eye = (x:2.5, y:0., z:0.)'
camera = dict(
eye=dict(x=2.5, y=0., z=0.)
)
fig.update_layout(scene_camera=camera, title=name)
fig.show()
import plotly.graph_objects as go
import pandas as pd
# Read data from a csv
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure(data=go.Surface(z=z_data, showscale=False))
fig.update_layout(
title=dict(text='Mt Bruno Elevation'),
width=400, height=400,
margin=dict(t=30, r=0, l=20, b=10)
)
name = 'eye = (x:0., y:0., z:2.5)'
camera = dict(
eye=dict(x=0., y=0., z=2.5)
)
fig.update_layout(scene_camera=camera, title=name)
fig.show()
... by placing the camera closer to the origin (eye
with a smaller norm)
import plotly.graph_objects as go
import pandas as pd
# Read data from a csv
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure(data=go.Surface(z=z_data, showscale=False))
fig.update_layout(
title=dict(text='Mt Bruno Elevation'),
width=400, height=400,
margin=dict(t=30, r=0, l=20, b=10)
)
name = 'eye = (x:0.1, y:0.1, z:1.5)'
camera = dict(
eye=dict(x=0.1, y=0.1, z=1.5)
)
fig.update_layout(scene_camera=camera, title=name)
fig.show()
Tilt camera by changing the up
vector: here the vertical of the view points in the x
direction.
import plotly.graph_objects as go
import pandas as pd
# Read data from a csv
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure(data=go.Surface(z=z_data, showscale=False))
fig.update_layout(
title=dict(text='Mt Bruno Elevation'),
width=400, height=400,
margin=dict(t=30, r=0, l=20, b=10)
)
name = 'eye = (x:0., y:2.5, z:0.), point along x'
camera = dict(
up=dict(x=1, y=0., z=0),
eye=dict(x=0., y=2.5, z=0.)
)
fig.update_layout(scene_camera=camera, title=name)
fig.show()
Note when up
does not correspond to the direction of an axis, you also need to set layout.scene.dragmode='orbit'
.
import math
import plotly.graph_objects as go
import pandas as pd
# Read data from a csv
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure(data=go.Surface(z=z_data, showscale=False))
fig.update_layout(
title=dict(text='Mt Bruno Elevation'),
width=400, height=400,
margin=dict(t=30, r=0, l=20, b=10)
)
angle = math.pi / 4 # 45 degrees
name = 'vertical is along y+z'
camera = dict(
up=dict(x=0, y=math.cos(angle), z=math.sin(angle)),
eye=dict(x=2, y=0, z=0)
)
fig.update_layout(scene_camera=camera, scene_dragmode='orbit', title=name)
fig.show()
You can change the focal point (a point which projection lies at the center of the view) by setting the center
parameter of camera
. Note how a part of the data is cropped below because the camera is looking up.
import plotly.graph_objects as go
import pandas as pd
# Read data from a csv
z_data = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/api_docs/mt_bruno_elevation.csv')
fig = go.Figure(data=go.Surface(z=z_data, showscale=False))
fig.update_layout(
title=dict(text='Mt Bruno Elevation'),
width=400, height=400,
margin=dict(t=25, r=0, l=20, b=30)
)
name = 'looking up'
camera = dict(
center=dict(x=0, y=0, z=0.7))
fig.update_layout(scene_camera=camera, title=name)
fig.show()
See https://plotly.com/python/reference/layout/scene/#layout-scene-camera for more information and chart attribute options!