Skip to content

Commit

Permalink
removed the execution
Browse files Browse the repository at this point in the history
  • Loading branch information
Deus1704 committed Jun 25, 2024
1 parent f29ab9f commit 0dc5363
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/how_to_guide/using_new_coalignment_interface.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ Below is an example of how to use the :func:`sunkit_image.coalignment_module.int

.. code-block:: python
>>> from sunpy.map import Map
>>> from sunkit_image.coalignment_module.interface import coalignment
>>> import sunpy.data.sample
from sunpy.map import Map
from sunkit_image.coalignment_module.interface import coalignment
import sunpy.data.sample
>>> reference_map = Map(sunpy.data.sample.AIA_193_CUTOUT01_IMAGE)
>>> target_map = Map(sunpy.data.sample.AIA_193_CUTOUT02_IMAGE)
reference_map = Map(sunpy.data.sample.AIA_193_CUTOUT01_IMAGE)
target_map = Map(sunpy.data.sample.AIA_193_CUTOUT02_IMAGE)
>>> coaligned_map = coalignment(reference_map, target_map, method="match_template")
coaligned_map = coalignment(reference_map, target_map, method="match_template")
The :func:`sunkit_image.coalignment_module.interface.coalignment` function aligns the ``target_map`` to the ``reference_map`` using the specified method (e.g., ``"match_template"``).

Expand Down

0 comments on commit 0dc5363

Please sign in to comment.