5.19. value¶
Returns a table of values for the specified coordinate.
- FitsArray.value(self, x: int, y: int) pd.DataFrame¶
Returns a table of values for the specified coordinate.
Parameters
xintThe x coordinate of the requested pixel.
yintThe y coordinate of the requested pixel.
Returns
pd.DataFrameA table of values for the specified coordinate.
5.19.1. Example:¶
from myraflib import FitsArray
fa = FitsArray.sample()
values = fa.value(10, 10)