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

xint

The x coordinate of the requested pixel.

yint

The y coordinate of the requested pixel.

Returns

pd.DataFrame

A table of values for the specified coordinate.


5.19.1. Example:

from myraflib import FitsArray

fa = FitsArray.sample()
values = fa.value(10, 10)