1
1
package org.helioviewer.viewmodel.metadata;
3
/** Meta data providing informations about the occulter used to take the picture.
4
* Meta data providing informations about the occulter used to take the picture.
5
* <p>Some solar images are taken using an occulter, to shield the sun
6
* itself. That kind of images appear to have a black disc in the center
7
* of the image. This interface provides informations about the size of
8
* the occulter in physical coordinates, so they can be easily compared
9
* to the region information.
7
* Some solar images are taken using an occulter, to shield the sun itself. That
8
* kind of images appear to have a black disc in the center of the image. This
9
* interface provides informations about the size of the occulter in physical
10
* coordinates, so they can be easily compared to the region information.
11
12
* @author Markus Langenberg
14
15
public interface OcculterMetaData {
16
/** Returns the physical inner radius of the occulter.
18
* @return Physical inner radius of the occulter
20
public double getInnerPhysicalOcculterRadius();
22
/** Returns the physical outer radius of the occulter.
24
* @return Physical outer radius of the occulter
26
public double getOuterPhysicalOcculterRadius();
18
* Returns the physical inner radius of the occulter.
20
* @return Physical inner radius of the occulter
22
public double getInnerPhysicalOcculterRadius();
25
* Returns the physical outer radius of the occulter.
27
* @return Physical outer radius of the occulter
29
public double getOuterPhysicalOcculterRadius();