Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
9f10aff0
Commit
9f10aff0
authored
10 years ago
by
Federico Montesino Pouzols
Browse files
Options
Downloads
Patches
Plain Diff
clarify text, link WorkspaceGroup and fix ws in test, re #10965
parent
5ebb5471
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Mantid/docs/source/algorithms/LoadFITS-v1.rst
+12
-11
12 additions, 11 deletions
Code/Mantid/docs/source/algorithms/LoadFITS-v1.rst
with
12 additions
and
11 deletions
Code/Mantid/docs/source/algorithms/LoadFITS-v1.rst
+
12
−
11
View file @
9f10aff0
...
...
@@ -9,16 +9,16 @@
Description
-----------
Load FITS files, which typically contain images, into
workspaces. FITS
stands for Flexible Image
Transport System, see
http://en.wikipedia.org/wiki/FITS. A new
workspace (of type
:ref:`Workspace2D <Workspace2D>`) is created for
every FITS file
loaded with this algorithm, and these workspaces are
added into a
group w
orkspace
. The g
roup
w
orkspace
is named as indicated in the
OutputW
orkspace i
nput property. The workspaces included in the group
are named with the same name and an appendix _1, _2, etc., incremented
sequentially as new files are loaded with the same OutputWorkspace
property.
Load FITS files, which typically contain images, into
a
:ref:`WorkspaceGroup <WorkspaceGroup>`. FITS
stands for Flexible Image
Transport System, see
http://en.wikipedia.org/wiki/FITS. A new
workspace (of type
:ref:`Workspace2D <Workspace2D>`) is created for
every FITS file
loaded with this algorithm, and these workspaces are
added into a :ref:`W
orkspace
G
roup
<W
orkspace
Group>`. The group
w
orkspace i
s named as indicated in the OutputWorkspace input
property. The workspaces included in the group are named with the same
name and an appendix _1, _2, etc., incremented sequentially as new
files are loaded with the same OutputWorkspace
property.
The current implementation of this algorithm only supports 2D files
(FITS images with two axes), and it should in principle be able to
...
...
@@ -58,7 +58,8 @@ Usage
.. testcode:: LoadFITS
ws_name = 'FITSws'
ws = LoadFITS(Filename='FITS_small_01.fits', OutputWorkspace=ws_name)
wsg = LoadFITS(Filename='FITS_small_01.fits', OutputWorkspace=ws_name)
ws = wsg.getItem(0)
# A couple of standard FITS header entries
bpp_log = 'BITPIX'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment