Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

As an example, the following shows how to access the MIRIS SIA service by using Python package PyVO (https://github.com/astropy/pyvo). See how to use its SIA modules in https://pyvo.readthedocs.io/en/latest/dal/index.html#simple-image-access .

Code Block
languagepy
themeEmacs
import pyvo as vo
import astropy

pos = astropy.coordinates.SkyCoord(84.0, -70.0, unit='deg') # search position
size = astropy.coordinates.Angle(1.0, unit='deg') # search radius

sia_service = vo.dal.SIAService('https://data.kasi.re.kr/vo/api/miris/sia_v1') # SIA API
sia_results = sia_service.search(pos=pos, size=size) # search results in the format of https://pyvo.readthedocs.io/en/latest/api/pyvo.dal.SIAResults.html#pyvo.dal.SIAResults

Aladin as VO client

Topcat as VO client