Skip to content

Commit

Permalink
deploy: c15b8c3
Browse files Browse the repository at this point in the history
  • Loading branch information
DiamondJoseph committed Aug 16, 2024
1 parent 0d4cbc8 commit 4373452
Show file tree
Hide file tree
Showing 360 changed files with 27,761 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 0.7.2/.buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 8cec77dba2f55ad6c40a55d3c6a457fb
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file added 0.7.2/.doctrees/explanations.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/explanations/decisions.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added 0.7.2/.doctrees/genindex.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/how-to.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/how-to/contribute.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/how-to/iterate-a-spec.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/how-to/run-container.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/how-to/serialize-a-spec.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/index.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/reference.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/reference/api.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/reference/rest_api.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/tutorials.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/tutorials/creating-a-spec.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/tutorials/installation.doctree
Binary file not shown.
Binary file added 0.7.2/.doctrees/tutorials/rest-service.doctree
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from scanspec.specs import Line
from scanspec.plot import plot_spec

spec = Line("z", 0, 1, 3) * ~Line("y", 0, 1, 3) * Line("x", 0, 1, 3)
plot_spec(spec)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line

spec = Line("x", 1, 2, 5)
plot_spec(spec)
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from scanspec.specs import Line, Squash
from scanspec.plot import plot_spec

spec = Line("z", 0, 1, 3) * Squash(
Line("y", 0, 1, 3) * ~Line("x", 0, 1, 3), check_path_changes=False
)
plot_spec(spec)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
9 changes: 9 additions & 0 deletions 0.7.2/_downloads/2978570c668d252b9da1fe49a06ec7ac/api-4.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.regions import Ellipse
from scanspec.specs import Line

grid = Line("y", 3, 8, 10) * ~Line("x", 1 ,8, 10)
spec = grid & Ellipse("x", "y", 5, 5, 2, 3, 75)
plot_spec(spec)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/37b8bccecbfd8cb6524cb6c081269149/api-9.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line

spec = Line("x", 1, 2, 5)
plot_spec(spec)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/5842467d595365eaa9c6e8a5e843a7f8/api-6.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line

spec = Line("y", 1, 3, 3) * ~Line("x", 3, 5, 5)
plot_spec(spec)
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/58e6bbb067ceb0cec82f5b4d950773d4/api-14.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Spiral

spec = Spiral.spaced("x", "y", 0, 0, 10, 3)
plot_spec(spec)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/69b56bfc978abef83acd04290b4cbb62/api-7.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line

spec = Line("x", 1, 3, 3).concat(Line("x", 4, 5, 5))
plot_spec(spec)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/75ada40b0231b57cb1455511a2734d93/api-13.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Spiral

spec = Spiral("x", "y", 1, 5, 10, 50, 30)
plot_spec(spec)
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line

spec = Line("y", 3, 4, 5).zip(Line("x", 1, 2, 5))
plot_spec(spec)
Binary file not shown.
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/7b36ae011c8fde871f2c725f4835b273/api-16.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line, step

spec = step(Line("x", 1, 2, 3), 0.1)
plot_spec(spec)
9 changes: 9 additions & 0 deletions 0.7.2/_downloads/7be99933a51115eeac94ea28dcc94a10/api-3.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.regions import Circle
from scanspec.specs import Line

grid = Line("y", 1, 3, 10) * ~Line("x", 0, 2, 10)
spec = grid & Circle("x", "y", 1, 2, 0.9)
plot_spec(spec)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line

spec = Line("y", 3, 4, 3) * Line("x", 1, 2, 5)
plot_spec(spec)
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/86ad7000c8ad3d6b09b0ea0d99447521/api-15.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line, fly

spec = fly(Line("x", 1, 2, 3), 0.1)
plot_spec(spec)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/896b7b6ce45fead8f85a9c99fda18032/api-10.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line

spec = Line.bounded("x", 1, 2, 5)
plot_spec(spec)
Binary file not shown.
Binary file not shown.
Binary file not shown.
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/a717543d1b9fa515d50f9913c55a1965/api-12.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line, Static

spec = Line("y", 1, 2, 3).zip(Static.duration(0.1))
plot_spec(spec)
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line

spec = Line("y", 3, 4, 3) * ~Line("x", 1, 2, 5)
plot_spec(spec)
9 changes: 9 additions & 0 deletions 0.7.2/_downloads/b61fec1d185d5d29d1735e1c5f45786d/api-1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line
from scanspec.regions import Circle

cube = Line("z", 1, 3, 3) * Line("y", 1, 3, 10) * ~Line("x", 0, 2, 10)
spec = cube & Circle("x", "y", 1, 2, 0.9)
plot_spec(spec)
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from scanspec.specs import Line, Squash
from scanspec.plot import plot_spec

spec = Line("z", 0, 1, 3) * Squash(
~Line("y", 0, 1, 3) * Line("x", 0, 1, 3), check_path_changes=False
)
plot_spec(spec)
9 changes: 9 additions & 0 deletions 0.7.2/_downloads/c1cf2d085f7ede85d58df873f9e4588b/api-2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.regions import Polygon
from scanspec.specs import Line

grid = Line("y", 3, 8, 10) * ~Line("x", 1 ,8, 10)
spec = grid & Polygon("x", "y", [1.0, 6.0, 8.0, 2.0], [4.0, 10.0, 6.0, 1.0])
plot_spec(spec)
Binary file not shown.
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/ca3cebb2d7d418d7c2435416c49b69a0/api-11.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line, Static

spec = Line("y", 1, 2, 3).zip(Static("x", 3))
plot_spec(spec)
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line
from scanspec.regions import Circle

spec = Line("y", 3, 4, 3) * ~Line("x", 1, 2, 5) & Circle("x", "y", 1.5, 3.5, 0.6) - Circle("x", "y", 1.4, 3.5, 0.2)
plot_spec(spec)
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line
from scanspec.regions import Circle

spec = Line("y", 3, 4, 3) * ~Line("x", 1, 2, 5) & Circle("x", "y", 1.5, 3.5, 0.6)
plot_spec(spec)
7 changes: 7 additions & 0 deletions 0.7.2/_downloads/d9359aa24479d0d7ffa6257851863adf/api-8.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.specs import Line, Squash

spec = Squash(Line("y", 1, 2, 3) * Line("x", 0, 1, 4))
plot_spec(spec)
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from scanspec.specs import Line
from scanspec.plot import plot_spec

spec = Line("z", 0, 1, 3) * Line("y", 0, 1, 3) * ~Line("x", 0, 1, 3)
plot_spec(spec)
8 changes: 8 additions & 0 deletions 0.7.2/_downloads/e8b59d332e2b76ad4a589b1ce152994c/api-5.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Example Spec

from scanspec.plot import plot_spec
from scanspec.regions import Circle
from scanspec.specs import Line

spec = Line("y", 1, 3, 3) * Line("x", 3, 5, 5) & Circle("x", "y", 4, 2, 1.2)
plot_spec(spec)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added 0.7.2/_images/api-1.png
Binary file added 0.7.2/_images/api-10.png
Binary file added 0.7.2/_images/api-11.png
Binary file added 0.7.2/_images/api-12.png
Binary file added 0.7.2/_images/api-13.png
Binary file added 0.7.2/_images/api-14.png
Binary file added 0.7.2/_images/api-15.png
Binary file added 0.7.2/_images/api-16.png
Binary file added 0.7.2/_images/api-2.png
Binary file added 0.7.2/_images/api-3.png
Binary file added 0.7.2/_images/api-4.png
Binary file added 0.7.2/_images/api-5.png
Binary file added 0.7.2/_images/api-6.png
Binary file added 0.7.2/_images/api-7.png
Binary file added 0.7.2/_images/api-8.png
Binary file added 0.7.2/_images/api-9.png
Binary file added 0.7.2/_images/creating-a-spec-1.png
Binary file added 0.7.2/_images/creating-a-spec-2.png
Binary file added 0.7.2/_images/creating-a-spec-3.png
Binary file added 0.7.2/_images/creating-a-spec-4.png
Binary file added 0.7.2/_images/creating-a-spec-5.png
Binary file added 0.7.2/_images/creating-a-spec-6.png
Binary file added 0.7.2/_images/definitions.png
Loading

0 comments on commit 4373452

Please sign in to comment.