Legacyplate Data Query
Project description
legacyplate query
Description
legacyplatequery is a legacyplate query tool developed by Shanghai Astronomical Observatory. It provide a python package like Astroquery.
Installation
You can use pip command to install it: `shell pip install legacyplatequery `
Usage
import the package.
`python import legacyplatequery as lpdata `
Login
`python user = 'wangweihua' password = 'xxx' lpdata.auth(user, password) `
Get the total number of legacy plate
`python lpdata.get_total_of_plates() `
Get the total number of the stars in the star catalog
`python lpdata.get_total_of_star_catalog() `
Search the legacy plates with q3c_radial_query
`python ra = 12.0 dec = 12.0 radius = 12 plates = lpdata.get_plates_by_radial_query(ra, dec, radius) print(plates) `
Search the stars with q3c_radial_query
`python stars = lpdata.get_star_catalog_by_radial_query(ra, dec) print(stars) `
History
0.1.0 (2023-04-11)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.