Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add catalog queries to lksearch #23

Merged
merged 32 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
4c185c2
add catalog queries
christinahedges Jul 29, 2024
e5f63ff
update ruff [skip ci]
christinahedges Jul 29, 2024
979fe41
fix ci
christinahedges Jul 29, 2024
73b2a1e
added documentation
christinahedges Jul 30, 2024
7988abb
ruff
christinahedges Jul 30, 2024
c1190c6
hotfix name resolve [skip ci]
christinahedges Jul 30, 2024
e765afd
update docs
christinahedges Aug 5, 2024
28725e3
pre-meeting commit
tylerapritchard Oct 7, 2024
8224ac3
xmatch update
tylerapritchard Oct 15, 2024
9d58fd8
resolve merge
tylerapritchard Oct 15, 2024
cc09089
updates, moved catalog dict to json file in data
tylerapritchard Nov 19, 2024
fbe9dba
tutorials and documentation updates
tylerapritchard Nov 20, 2024
06db262
updated idlooklup filtering and docs
tylerapritchard Nov 20, 2024
0a99bb1
removed FFI search test due to MAST deprecation. Remove FFI function…
tylerapritchard Nov 20, 2024
8e2252f
ruff
tylerapritchard Nov 20, 2024
87862e3
fstring update
tylerapritchard Nov 20, 2024
187fc66
refactored naming scheme, separated out IDLookup functionality, remov…
tylerapritchard Dec 5, 2024
f05ec19
added alternative name query/match tests
tylerapritchard Dec 5, 2024
3ddaf48
updated version, added tests for alternative name queries/matches
tylerapritchard Dec 5, 2024
b748e15
updated __init__.py to try and fix pytest import error
tylerapritchard Dec 5, 2024
b2178c7
added test init to try and debug action error:
tylerapritchard Dec 5, 2024
e7ec4ae
action debug
tylerapritchard Dec 5, 2024
f517a8d
ruff
tylerapritchard Dec 5, 2024
6ace154
pytest debug
tylerapritchard Dec 5, 2024
4f4e99d
update apidoc with new module name
tylerapritchard Dec 5, 2024
5fa75bc
Rename CatalogSearch.py to catalogsearch.py
tylerapritchard Dec 5, 2024
c2472f2
added bytes-like to string decoding for older astroquery versions in …
tylerapritchard Dec 5, 2024
460734e
docs updates
tylerapritchard Dec 6, 2024
bd24298
docs updates
tylerapritchard Dec 6, 2024
756182f
docs updates
tylerapritchard Dec 6, 2024
f290e24
restructure file for apidoc
tylerapritchard Dec 6, 2024
ec6cfb1
ruff
tylerapritchard Dec 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install dependencies
run: |
pip install poetry
poetry install --with dev
poetry install --with dev,cloud
- name: Sphinx build
run: |
poetry run sphinx-build docs _build
Expand Down
10 changes: 10 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,16 @@ Please include a self-contained example that fully demonstrates your problem or

Changelog:
==========
v1.1.0
- Added ability to query catalogs using the catalogsearch module. This includes:
- querying vizier for a region for sources using query_region
- querying vizier for a catlog for rows corresponding to ids using query_id
- querying simbad for alternative names for a given name using query_names
- matching alternative names for sources to catalog stings using match_names_catalogs
- Added documentation for catalogsearch in docs/tutorials/catalog-searches.ipynb
- Broke previous tutorial doucmentation into multiple files:
- mission-search focussed data-searches.ipynb
- cloud-searches and configuration options in cloud-data-searches.ipynb
v1.0.1
- Now resolving target search strings with MastClass [#27]
v1.0
Expand Down
3 changes: 3 additions & 0 deletions docs/apidoc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,8 @@ API
.. autoclass:: lksearch.TESSSearch
:members:

.. automodule:: lksearch.catalogsearch
:members:

.. automodule:: lksearch.config
:members:
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lksearch
:hidden:

Quickstart
tutorials/Example_searches
tutorials/index
apidoc
GetInvolved
HowtoCite
Expand Down
Loading
Loading