-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit efd8915
Showing
120 changed files
with
26,255 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: 5b65c5582b2dc108701ac645b1ed00d1 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
![](_static/pytomoatt.png) | ||
|
||
[![Python Package using Conda](https://github.com/MIGG-NTU/PyTomoATT/actions/workflows/build-test-conda.yml/badge.svg?branch=devel)](https://github.com/MIGG-NTU/PyTomoATT/actions/workflows/build-test-conda.yml) | ||
[![Build documentations](https://github.com/MIGG-NTU/PyTomoATT/actions/workflows/build-docs.yml/badge.svg?branch=docs)](https://migg-ntu.github.io/PyTomoATT/) | ||
[![codecov](https://codecov.io/gh/MIGG-NTU/PyTomoATT/branch/devel/graph/badge.svg?token=EYOV0WOA2Y)](https://codecov.io/gh/MIGG-NTU/PyTomoATT) | ||
|
||
![PyPI - License](https://img.shields.io/pypi/l/pytomoatt) | ||
![PyPI](https://img.shields.io/pypi/v/pytomoatt) | ||
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pytomoatt) | ||
|
||
PyTomoATT is a Python module that provides an interface for [TomoATT](https://migg-ntu.github.io/TomoATT-docs/), a software package for seismic tomography analysis. With PyTomoATT, users can create TomoATT projects, manage input data, and generate 3D initial models, 3D checkerboards, and slices of horizontal and vertical cross sections. | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
:caption: Getting Start | ||
:hidden: | ||
|
||
installation | ||
|
||
``` | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
:caption: API | ||
:hidden: | ||
|
||
modules/index | ||
``` | ||
|
||
|
||
```{toctree} | ||
:caption: Links | ||
:hidden: | ||
|
||
TomoATT <https://migg-ntu.github.io/TomoATT-docs/> | ||
GitHub Repository <https://github.com/MIGG-NTU/PyTomoATT> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Installation | ||
|
||
## Conda environment | ||
|
||
We recommend installing PyTomoATT in a conda environment to ensure compatibility with the required dependencies. | ||
|
||
```{note} | ||
If you don't already have Conda installed, you can download and install it from the official Conda website: [https://docs.conda.io/en/latest/miniconda.html](https://docs.conda.io/en/latest/miniconda.html) | ||
``` | ||
|
||
### Create a new Conda environment | ||
|
||
Create a new Conda environment for Pytomoatt with the following command: | ||
``` | ||
conda create -n pytomoatt python=3.11 | ||
``` | ||
|
||
This creates a new environment named "pytomoatt" with Python version 3.10 installed. | ||
|
||
|
||
### Activate the Conda environment | ||
|
||
Activate the newly created environment with the following command: | ||
|
||
``` | ||
conda activate pytomoatt | ||
``` | ||
|
||
## Installing stable version via PyPI | ||
|
||
``` | ||
pip install pytomoatt | ||
``` | ||
|
||
## Installing development version from source | ||
|
||
- Clone the repository | ||
|
||
Users can install PyTomoATT from the source code available on GitHub. First, clone the PyTomoATT repository: | ||
``` | ||
git clone --branch=devel https://github.com/MIGG-NTU/PyTomoATT.git | ||
``` | ||
|
||
- Install using `pip` | ||
|
||
``` | ||
pip install . | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
pytomoatt.attarray | ||
=================== | ||
|
||
.. automodule:: pytomoatt.attarray | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
pytomoatt.checkerboard | ||
======================= | ||
|
||
.. automodule:: pytomoatt.checkerboard | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
pytomoatt.data | ||
=============== | ||
|
||
.. automodule:: pytomoatt.data | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Module index | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
|
||
para | ||
src_rec/src_rec | ||
data | ||
attarray | ||
model | ||
checkerboard | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
pytomoatt.model | ||
=============== | ||
|
||
.. automodule:: pytomoatt.model | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
pytomoatt.para | ||
=============== | ||
|
||
.. automodule:: pytomoatt.para | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.add_noise.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.add\_noise | ||
==================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.add_noise |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.append.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.append | ||
================================ | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.append |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.calc_distance.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.calc\_distance | ||
======================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.calc_distance |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.copy.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.copy | ||
============================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.copy |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.count_events_per_station.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.count\_events\_per\_station | ||
===================================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.count_events_per_station |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.erase_duplicate_events.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.erase\_duplicate\_events | ||
================================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.erase_duplicate_events |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.from_seispy.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.from\_seispy | ||
====================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.from_seispy |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.geo_weighting.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.geo\_weighting | ||
======================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.geo_weighting |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.plot.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.plot | ||
============================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.plot |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.read.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.read | ||
============================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.read |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.rec_points.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.rec\_points | ||
===================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. autoproperty:: SrcRec.rec_points |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.remove_rec_by_new_src.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.remove\_rec\_by\_new\_src | ||
=================================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.remove_rec_by_new_src |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.remove_specified_recs.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.remove\_specified\_recs | ||
================================================= | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.remove_specified_recs |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.remove_src_by_new_rec.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.remove\_src\_by\_new\_rec | ||
=================================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.remove_src_by_new_rec |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.reset_index.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.reset\_index | ||
====================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.reset_index |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.select_box_region.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.select\_box\_region | ||
============================================= | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.select_box_region |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.select_by_datetime.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.select\_by\_datetime | ||
============================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.select_by_datetime |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.select_depth.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.select\_depth | ||
======================================= | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.select_depth |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.select_distance.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.select\_distance | ||
========================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.select_distance |
6 changes: 6 additions & 0 deletions
6
...dules/src_rec/pytomoatt.src_rec.SrcRec.select_one_event_in_each_subgrid.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.select\_one\_event\_in\_each\_subgrid | ||
=============================================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.select_one_event_in_each_subgrid |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.select_phase.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.select\_phase | ||
======================================= | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.select_phase |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.src_points.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.src\_points | ||
===================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. autoproperty:: SrcRec.src_points |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.update.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.update | ||
================================ | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.update |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.update_num_rec.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.update\_num\_rec | ||
========================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.update_num_rec |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.write.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.write | ||
=============================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.write |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.write_receivers.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.write\_receivers | ||
========================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.write_receivers |
6 changes: 6 additions & 0 deletions
6
_sources/modules/src_rec/pytomoatt.src_rec.SrcRec.write_sources.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pytomoatt.src\_rec.SrcRec.write\_sources | ||
======================================== | ||
|
||
.. currentmodule:: pytomoatt.src_rec | ||
|
||
.. automethod:: SrcRec.write_sources |
Oops, something went wrong.