././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7765205 asdf_coordinates_schemas-0.4.0/0000755000175100001660000000000015015441215016126 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/.flake80000644000175100001660000000016015015441204017274 0ustar00runnerdocker[flake8] max-line-length = 120 extend-ignore = E203 exclude = .git, __pycache__, build, dist, eggs, *.egg, .tox ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/.gitattributes0000644000175100001660000000011015015441204021007 0ustar00runnerdocker* text eol=lf # Don't mess with these files *.asdf binary *.png binary ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7595205 asdf_coordinates_schemas-0.4.0/.github/0000755000175100001660000000000015015441215017466 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/.github/dependabot.yml0000644000175100001660000000054015015441204022313 0ustar00runnerdockerversion: 2 updates: # Maintain dependencies for GitHub Actions (main) - package-ecosystem: "github-actions" directory: "/" target-branch: "main" schedule: interval: "weekly" # Maintain dependencies for pip (main) - package-ecosystem: "pip" directory: "/" target-branch: "main" schedule: interval: "weekly" ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7595205 asdf_coordinates_schemas-0.4.0/.github/workflows/0000755000175100001660000000000015015441215021523 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/.github/workflows/changelog.yml0000644000175100001660000000103515015441204024172 0ustar00runnerdockername: Changelog on: pull_request: types: [labeled, unlabeled, opened, synchronize, reopened] jobs: changelog: name: Confirm changelog entry runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 submodules: true - name: Grep for PR number in CHANGES.rst run: grep -P '\[[^\]]*#${{github.event.number}}[,\]]' CHANGES.rst if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-changelog-entry-needed') }} ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/.github/workflows/ci.yml0000644000175100001660000000546615015441204022652 0ustar00runnerdockername: CI on: push: branches: - main tags: - '*' pull_request: schedule: # Weekly Monday 9AM build - cron: '0 9 * * 1' jobs: tox: name: ${{ matrix.name }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: include: - name: Python 3.13 Schema validation tests python-version: '3.13' os: ubuntu-latest toxenv: py313 - name: Python 3.12 Schema validation tests python-version: '3.12' os: ubuntu-latest toxenv: py312 - name: Python 3.11 Schema validation tests python-version: '3.11' os: ubuntu-latest toxenv: py311 - name: Python 3.10 Schema validation tests python-version: '3.10' os: ubuntu-latest toxenv: py310 - name: Python 3.9 Schema validation tests python-version: 3.9 os: ubuntu-latest toxenv: py39 - name: Twine check python-version: 3.11 os: ubuntu-latest toxenv: twine - name: Code style checks python-version: 3.11 os: ubuntu-latest toxenv: codestyle - name: macOS python-version: 3.13 os: macos-latest toxenv: py313 - name: Windows python-version: 3.13 os: windows-latest toxenv: py313 steps: - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install tox run: | python -m pip install --upgrade pip pip install tox - name: Run tox run: tox -e ${{ matrix.toxenv }} asdf-astropy-dev: name: Run asdf-astropy development tests runs-on: ubuntu-latest steps: - name: Checkout asdf-coordinates-schemas uses: actions/checkout@v4 with: fetch-depth: 0 path: asdf-coordinates-schemas - name: Checkout asdf-astropy dev uses: actions/checkout@v4 with: fetch-depth: 0 repository: astropy/asdf-astropy ref: main path: asdf-astropy - name: Set up Python 3.13 uses: actions/setup-python@v5 with: python-version: 3.13 - name: Install asdf-coordinates-schemas run: cd asdf-coordinates-schemas && pip install . - name: Install asdf-astropy run: cd asdf-astropy && pip install -e .[test] - name: Pip Freeze run: pip freeze - name: Run asdf-astropy development tests run: cd asdf-astropy && pytest ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/.github/workflows/publish-to-pypi.yml0000644000175100001660000000057415015441204025317 0ustar00runnerdockername: Publish to PyPI on: release: types: [released] workflow_dispatch: jobs: publish: uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 with: upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} secrets: pypi_token: ${{ secrets.PYPI_PASSWORD_ASDF_MAINTAINER }} ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/.gitignore0000644000175100001660000000402015015441204020110 0ustar00runnerdocker# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ cover/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ docs/generated/ # PyBuilder .pybuilder/ target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv # For a library or package, you might want to ignore these files since the code is # intended to run in multiple environments; otherwise, check them in: # .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # pytype static type analyzer .pytype/ # Cython debug symbols cython_debug/ _version.py ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/.pre-commit-config.yaml0000644000175100001660000000162715015441204022413 0ustar00runnerdockerrepos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 hooks: - id: check-added-large-files - id: check-case-conflict - id: check-yaml args: ["--unsafe"] - id: debug-statements - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/asottile/pyupgrade rev: v3.15.0 hooks: - id: pyupgrade args: ["--py38-plus"] - repo: https://github.com/PyCQA/autoflake rev: v2.2.1 hooks: - id: autoflake - repo: https://github.com/pycqa/isort rev: 5.12.0 hooks: - id: isort - repo: https://github.com/psf/black rev: 23.10.1 hooks: - id: black - repo: https://github.com/asottile/blacken-docs rev: 1.16.0 hooks: - id: blacken-docs - repo: https://github.com/PyCQA/flake8 rev: 6.1.0 hooks: - id: flake8 - repo: https://github.com/PyCQA/bandit rev: 1.7.5 hooks: - id: bandit args: ["-c", "bandit.yaml"] ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/.readthedocs.yml0000644000175100001660000000036215015441204021213 0ustar00runnerdockerversion: 2 build: os: ubuntu-20.04 apt_packages: - graphviz tools: python: "3.9" sphinx: configuration: docs/conf.py python: install: - method: pip path: . extra_requirements: - docs formats: all ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/CHANGES.rst0000644000175100001660000000125315015441204017727 0ustar00runnerdocker0.4.0 (2025-05-27) ------------------ - Changes documentation configuration settings to make this consistent with other asdf-related projects [#61] - Fix typo in latex logo path [#62] - Adds global navigation in docs top bar [#63] - Update schemas to prefer tag over ref [#64] 0.3.0 (2024-03-09) ------------------ - Add ``asdf-astropy`` as a test dependency. [#34] - Drop official support for Python 3.8 [#42] - Update schemas for ASDF standard 1.6.0 [#55] 0.2.0 (2023-03-21) ------------------ - Add documentation to package. [#8] - Update asdf version and require python 3.8. [#14] - Switch to pyproject.toml. [#15] 0.1.0 (2021-12-04) ------------------ - Initial release. ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/CONTRIBUTING.rst0000644000175100001660000000160515015441204020567 0ustar00runnerdockerReporting Issues ---------------- Feature requests and bug reports for the Python implementation can be posted at `asdf-coordinates-schemas's github page `_. Contributing Code and Documentation ----------------------------------- We love contributions! If you're interested in contributing to this project, please open a Pull Request or issue and we would be glad to work with you. .. note:: ASDF-coordinates-schemas is mostly a collection of schemas for the ASDF format. This means that in addition to contributing a schema, you will likely also need some code to actually handle serializing and deserializing your data. Typically, this code will need to be contributed to :ref:`asdf-astropy `, which is a separate project. Please link your pull requests and issues between the two projects. ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/LICENSE0000644000175100001660000000300315015441204017125 0ustar00runnerdockerCopyright (c) 2021 Association of Universities for Research in Astronomy. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7765205 asdf_coordinates_schemas-0.4.0/PKG-INFO0000644000175100001660000000411315015441215017222 0ustar00runnerdockerMetadata-Version: 2.4 Name: asdf_coordinates_schemas Version: 0.4.0 Summary: ASDF schemas for coordinates Author-email: The ASDF Developers Project-URL: tracker, https://github.com/asdf-format/asdf-coordinates-schemas/issues Project-URL: documentation, https://www.asdf-format.org/projects/asdf-coordinates-schemas/en/latest/ Project-URL: repository, https://github.com/asdf-format/asdf-coordinates-schemas Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Science/Research Classifier: Topic :: Scientific/Engineering :: Astronomy Requires-Python: >=3.9 Description-Content-Type: text/markdown License-File: LICENSE Requires-Dist: asdf>=2.12.1 Requires-Dist: asdf-standard>=1.1.0 Provides-Extra: docs Requires-Dist: tomli; extra == "docs" Requires-Dist: sphinx; extra == "docs" Requires-Dist: sphinx-asdf>=0.1.3; extra == "docs" Requires-Dist: sphinx-astropy; extra == "docs" Requires-Dist: astropy>=5.0.4; extra == "docs" Requires-Dist: graphviz; extra == "docs" Requires-Dist: matplotlib; extra == "docs" Requires-Dist: docutils; extra == "docs" Requires-Dist: furo; extra == "docs" Provides-Extra: test Requires-Dist: pytest; extra == "test" Requires-Dist: asdf-astropy>=0.2.0; extra == "test" Dynamic: license-file # asdf-coordinates-schemas ![CI](https://github.com/asdf-format/asdf-coordinates-schemas/workflows/CI/badge.svg) [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) This package provides ASDF schemas for validating coordinates tags. Users should not need to install this directly; instead, install an implementation package such as asdf-astropy, which includes asdf-coordinates-schemas as a dependency. ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/README.md0000644000175100001660000000136415015441204017407 0ustar00runnerdocker# asdf-coordinates-schemas ![CI](https://github.com/asdf-format/asdf-coordinates-schemas/workflows/CI/badge.svg) [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) This package provides ASDF schemas for validating coordinates tags. Users should not need to install this directly; instead, install an implementation package such as asdf-astropy, which includes asdf-coordinates-schemas as a dependency. ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/bandit.yaml0000644000175100001660000000015115015441204020246 0ustar00runnerdockerexclude_dirs: - .eggs - .git - .pytest_cache - .tox - tests - build - dist - __pycache__ ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7615206 asdf_coordinates_schemas-0.4.0/docs/0000755000175100001660000000000015015441215017056 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/Makefile0000644000175100001660000001120715015441204020515 0ustar00runnerdocker# Makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = _build # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest #This is needed with git because git doesn't create a dir if it's empty $(shell [ -d "_static" ] || mkdir -p _static) help: @echo "Please use \`make ' where is one of" @echo " html to make standalone HTML files" @echo " dirhtml to make HTML files named index.html in directories" @echo " singlehtml to make a single large HTML file" @echo " pickle to make pickle files" @echo " json to make JSON files" @echo " htmlhelp to make HTML files and a HTML help project" @echo " qthelp to make HTML files and a qthelp project" @echo " devhelp to make HTML files and a Devhelp project" @echo " epub to make an epub" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " latexpdf to make LaTeX files and run them through pdflatex" @echo " text to make text files" @echo " man to make manual pages" @echo " changes to make an overview of all changed/added/deprecated items" @echo " linkcheck to check all external links for integrity" @echo " doctest to run all doctests embedded in the documentation (if enabled)" clean: -rm -rf $(BUILDDIR) -rm -rf api -rm -rf generated html: $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." dirhtml: $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." singlehtml: $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml @echo @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." pickle: $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle @echo @echo "Build finished; now you can process the pickle files." json: $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json @echo @echo "Build finished; now you can process the JSON files." htmlhelp: $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp @echo @echo "Build finished; now you can run HTML Help Workshop with the" \ ".hhp project file in $(BUILDDIR)/htmlhelp." qthelp: $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp @echo @echo "Build finished; now you can run "qcollectiongenerator" with the" \ ".qhcp project file in $(BUILDDIR)/qthelp, like this:" @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Astropy.qhcp" @echo "To view the help file:" @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Astropy.qhc" devhelp: $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp @echo @echo "Build finished." @echo "To view the help file:" @echo "# mkdir -p $$HOME/.local/share/devhelp/Astropy" @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Astropy" @echo "# devhelp" epub: $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub @echo @echo "Build finished. The epub file is in $(BUILDDIR)/epub." latex: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." @echo "Run \`make' in that directory to run these through (pdf)latex" \ "(use \`make latexpdf' here to do that automatically)." latexpdf: $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex @echo "Running LaTeX files through pdflatex..." make -C $(BUILDDIR)/latex all-pdf @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." text: $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text @echo @echo "Build finished. The text files are in $(BUILDDIR)/text." man: $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man @echo @echo "Build finished. The manual pages are in $(BUILDDIR)/man." changes: $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes @echo @echo "The overview file is in $(BUILDDIR)/changes." linkcheck: $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck @echo @echo "Link check complete; look for any errors in the above output " \ "or in $(BUILDDIR)/linkcheck/output.txt." doctest: $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest @echo "Testing of doctests in the sources finished, look at the " \ "results in $(BUILDDIR)/doctest/output.txt." ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7615206 asdf_coordinates_schemas-0.4.0/docs/_static/0000755000175100001660000000000015015441215020504 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/_static/custom.css0000644000175100001660000000152515015441204022531 0ustar00runnerdockerdiv.admonition { transition: width 0.5s; -webkit-transition: width 0.5s; overflow: hidden; } div.admonition:active { width: 150% } div.note:active { width: 100% } div.highlight-yaml { transition: width 0.5s; -webkit-transition: width 0.5s; overflow: hidden; } div.highlight-yaml:active { width: 150% } div.highlight-default { transition: width 0.5s; -webkit-transition: width 0.5s; overflow: hidden; } div.highlight-default:active { width: 150% } div.highlight-python { transition: width 0.5s; -webkit-transition: width 0.5s; overflow: hidden; } div.highlight-python:active { width: 150% } /* Top Banner Navigation -------------------------------------------------- */ .announcement-content a { padding-right: 1em; } .announcement-content a:hover { color: fuchsia; } ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7625206 asdf_coordinates_schemas-0.4.0/docs/_static/images/0000755000175100001660000000000015015441215021751 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/_static/images/favicon.ico0000644000175100001660000012451615015441204024101 0ustar00runnerdockerPNG  IHDR|^=% pHYs  ~ IDATx}=Uic%_"sea2V`e74ZHH\KV"g-Ea5Bk%=Q<լ|b֘z쮍H|`2=_7/3ԩ[>}}_騻|SU1DSe 7ƬNKD%Jt0pYU*h ,<˲u4~OD%J(>,(`!(b- R%J(QD[Yͳ,+TPQUOP,ˁƘFM,/D%Jm >D8&YiE5pg&%J(QDBȲlo@! GKBM wh[.Ӥ I(QD; $NaYc\i T(h܅3cjgIxD%Jtڂ,Jwni_;.RNij:nF!rD!I4 $z13/%J(ѵk >PegY6 v@ FAȁ{!驀Ө@(QDn+C| TvtM/" |~47ZcR`>H%J(Qۍ "ҁ h%]Oi%v:ݦ9C_t AN 13զD%JҵXF\, g̱&\kYNuoZ99j9[Ku]t/w%J(ѵ>Jo*ݨ`XP|ܣCx 7%T*iO(QD]!¼  Cj:fYq?^n[#Bq@b# `aYy$(QDnG:ieY;oAp>3 5ρZF~8?<xdYVdYQ%J(ѵX>˲QNMPPgYVF+-VK8kcL+߹?fhS  qqt7K(QD4P`gѴkȲ 9v:nM/}GzC9v6K#ihD4psй (QD+$КcZ3T.8 X^fY6u7ZTchJ^crSkBbJU%J(QXF 6f>"k弖;vBWw[VIu7wXQ+  PJ5 f"G,įQye˾gӑ(QۃN|cY-]L!- 3@Xx~{$\6ڊ 8Z`M9ĝ hRYd- t 9 ʲY0MCDKgYR7.ImЗ$\{&6MZDN|Fӑc2ea, 9Y/!cFW|6 yW.p%q>$xLQe"˲Vcfjђ;WAk]%rTY3^~>{)ZЭTǔm&E(Q=IQZx.pIaN/@W%~pvֵ\;ECnYJG'4!i ]0xQGA>[%Jt.#`\ #3JDpO13|aJ<i^ C9x Q7 fśb&. xh3Tf_3eL4!bD& }+lZ5h7w朱Y_]= Z`|Э ]0Xi%J1'}U 7jj98QDgI 8fvߖ/뀔Xrڜ{-k*~x?ǂ##YbSjek&tc=Z8QlZ C@q*l!5p3㨡KزZ 9g0!~hLU3:`\>rή.tk8%$h6 ^PbE4]ccs ƛ_vs9`G} Bxg'k{0|kftZLg!,f\*9v\FA$~M^@ͬ0Q̍#%Je~QA!(Rv^+ljCܳ !XE׎r|}L8MJ]B1WkN߷\DnW F^:^7s,N+<8Yc:ރ c5FCǀGߑ<5٬~ %ށB|`&NoňNBj^5=)xN軰TQ~&x!9S'(V:yÉqQDQo;T6uDi,ޒ3jĉ1N,Sw|fbwN> 83a/>APί*r>yy@Ho垑zXx+uy}`ý!񲊮%8+oY&43⺙A tDOivL܆'N|{ 87~H#4xLYGKHsع?0r) Xa/˽Ob5 uL}+VT%ͳ.Ԅ#%dJ9*N?s\ EޭCUC=62EF!ڴ`A>ZBRi@O#VGĉ{x\*ѡgwt摭P JĮRXǰxJߨ/cAGoSiXD࢖%\G\T &' 4r V;Zr6($2`;_myŃh Ζ^[U@9T]} oALRq{AJk3t&Nx8Ό1\7R/rt΢+:y> d.9| V~xE,0qx <x 2Sa7Ux&uVcZc 7^XAXJ>WI\cdߛ F xPi7+lJlF+B?pH1.:" P=]zWʽkIJBs63T<8qۋO vferDs"3LpA_h~*rCh~q P@g(~7q~J"!>FgVȖ SBVHxN]FϺu=m$ZW8q 8jfx8A#e{9:gKʡ)5b2F Vœ #Og-<[NÙ4C =^6.H)&`AwbW3j񚑾6Ᾱ\mis8q8cvϗ8w<fF_Į vnWׇxip)?Jm$ +\Vʮ_c^#x`QI%x3 Q#@KJ?iaNdMsN>! -~ ؾ+p+I9|k ?PMJ vyDN |\БT[y ?*}쬕ŮMW_1OaSSeǣ,rkoΣN,uc%[\xߎUqj%[71E<\Uܖ1YZ++p%\:WKu5XSC*^@(QېVxջ{Dpo%Yb;ϗʹގ5| r3ތv%[TxUpzgue!ʼ΂b58>s K/;٥sw ^2m1ur[y_Feު`Tx?Sej\;`7o,Q~Zj"3ϵ:ɹ$Nxw<&P: >Ff ބp~It'Nye.F(wͣ?c:!ES _h6 ]4r^5k,s}9d 59:!~+N|>r[U;s:+U.b8Ph$G 7-ʉؕ5^caoΦx_N'N|<{Ʉd]5 #\^Vb7s+? xYpeT9g?<0hߕ_Iw2nwS7}s{%²&ͷӥB'R[1t[ݱ-@O+ʽƷo]1qepA50xMB=[w5z {"s8qσ' eA˜= %TyN>gpqGpf`fErBhz{QK,y'7]kQ"帖*%ߧbd ŌP3Qf1~t]4R^\N]9păWHJN R73N+Vl% #u8q 9~&7Z+"g@u`O^`JOftVr߉W#f]VX+yMrlT!4Ux0k=tޱ;!F+ET  x5R5RGS,+tu9. K" \j%m<ڀ+ Iڒ@^&ao3c~? f)?3uLk+SdWvzA*8aĻ K& Buk(>t:72|î>`@f™Fi褕P9$VW-p<"o GCp-!IcP;~]ƀpkzgkb|ۯL(mo-.)FR=`V*|FRVxm^Ws}} Fj?fC%q t]cPHXI8j+{c|z!tG7:#kASiI N_ 9a8V|=xrSeNNqYQx-G15D#}'9{xp%sZr6V[5m׍%tfd5`ZJmĉZd 6 =X}bXh0v [Yz x1gߋݵ_ZͥuAimz]zf*Yr]cO;jv:Nh44GWфpƔ%~%yOlt3y9 `G} G/Vb)x6xsK-yJnZˤo;`>Հm:ǃsfE5]R.a$ve/I/a"xoby/=;ɁE#Kyh-lLCV3Y!|-tv9M79Ix|R,˦FPi(yVamu:I>5*3>GW!R4ϙDiyzzG5c)EFIƻ M- D\u2H_V91SW"o(!`t$J46ڗ8*IG@D \Kx鞑r=,Gw BMX?{-GP9zI}weV밻 ?iK]r<<+A@،r\~2,3,*6x0ϲO[B`@7@`b.G&CGkln#M*PA 7rq:ڗD|dYlρyBY9~kYγ,[!%5\KvƇ3 1>^/JNObM+ch'e2l~vUޯP gO:)v^*MZ#akw-?ܡHڴ5wc.{ ܷ؁LeӦ&J$5}]~HP)v+%?{bLgpOe١MNcc{|o-TrXmX3IM,q(>:> Gp/Kl=ʩғr|l/Cҏ@eYci$leM"y,˷h@b9y3sճ5uYM|s%:$Ф,`Zu$ ۶NcV4(7[ص+~`t'Pež:T$5dΌ:~5vT, g^NͿ9Ҩ*i5PO5()/Fu)b-&yeDj,*)%~Kշ' Y@\~?,יpZp&˲ErFM44Pf:c!5#ǎ]ԙb W%vCu[f<=ֹZDZOǮT5j1ީq|IG= 8ޡg`zl[wѾ_OP>'Y.d/ @jXgӕX@Vw vf߇6}9Tb-hG!$}>F%«|fV0N,xSJׄ me}›}ft~;85 IDATy.ׁ\. ֨8<S:2A5kDc+X$^0oHSSyW+ϸV(?x*Dv"3FɨTTᅗ[tl_r}bs^ :r1A.Y>QAw)[J<$\?,7Z.5g=iCbZm3D )-,#2%gy_(Ȗt]K Ƶ\ 9{.˨E}=BqP˭{kuHݓ++_O^3<&DeO[ɹ꧍[u'1x`/䌲t8!g]ގxp+kދ_x/02tSTˇ]>"V<\8{Oy9`Z)YtHI8Y2:_6o%aqvEv*3~WO2A/pPLfDwˮ ?i +^$ j(? ΒN.V;R?p~sƆN\@;56&;gj7*j,Y^;6U<ZħŃ'`oUtGGWS *9ם@>)uX<٨Y;WI9p yS7KzKVOT/b5Po <ԉ+ 듲U+Up SDcpf5q~V7U^y_ޝ -﫳bZןO2$"XuI:JO5sn v͆! ;v ߙ߅W |-¯⌑5y۫\f}! OW nLkwk.ܞP/ Q+kGہ(~ \C.~ÛSJET75oWq~RشY?8Dmp)aF@^C?q@o"JK 4 vĉ̓'(JXM$`< SJu=d8QSn640m[E9~邰îgUDOį%Q1BC։3R+"9N .rY?=5#r\/iQ~>ś\ir6F_$~ڹ@\řxwԄKF?$.;N!BPܠFs㚞o4.`Xc5~h V`:zEvQ~sFx0QM&j9ޜX၄;׀qe6xf*\=*}uz $Ӳq6'(QnuF:RI0.BQKY.NWcs-:R[< ?M&\b}u4=(jXG7%}: WI^[#V8Uy3/Q*BqcB9sVan'Bo#V1s"(br+37xj!^7%߄ӞWrv&佄ĭ:*ږR%0mNw޼%No<so_^#_G+n8SxUؑ 3@(GP'h_}jU}U|ŸFQ vyOˉ ~otXݲX {ړWLG _tv#y.0[ş>O5r,x/+0[Ge\@6~6:q"Gkc8f#I%eOYaN j M zRyx? sr~v`#r5t578/&wS? =hpLkt}TZs xl 9t7rfY z > |w/~=ESXOg,@d-|~v Ư<;7)8sf!q(˲3?{ؔ~7s1me3),+.>1UeSƘ ˲v\gYV3+#K[Ǧ,˦| y5'1u۸2/%NXKƘl1GU̍1Qrz4=N}4ƸkB3vy+䏀o~z=AciDEO:0O |g6\q!Bfe3c "X!WgYVfYVc*cL#YgYVc:2&˲܅_22cJʫmŽ_ ρee XeYH!,u䣑e|Ie}Bi\w_"i_ՂrDi@+@]O-sIKN;'2㮣  tu Й$~a-{"13z}ܳ&D ۑdDX }; Q_V: )g! H;3NU>^/#HX'_Vn*3To}g8Z"f1[^wRf3w=lcD'Cc 2,DSp/6Z)*6Dz,*чZ|  J+| ~+8!1Wcd|/T،Cn,(3Tt]*?UQD>)G0hz&v:;#&~qHDbJf_~5HXF` B~#׍\ϱ1ŨWcpb ֡!t F>\]zMׯfZ{%j&Mhh6& rUf`_$ &$`WD}:hN$h(i>$їGh]RcUkAcZ8gQKhXLS2&˲R9~`$Bu4D4'2I߉ V²^r363lBs]bvrݥĂI]8\9cH4f We߅-ۻ>! ~ sB@򛋶fc7%10 .tpWmUXAԢudJ"#%Ծ[y*{U}~ʁA)3qSs]RXȝ/Ёf29}&I fA%C;n愎p1Pk}(j$u|˞8CSUgCM}hᨑ5X$t3!P4.3{𔐟a#wuV?9vS7kj<ʥsٵH\:;XеHoD.# 5[ct kT.k ft5 ۩+1f1$Zt@X]3&Vb&qm-[sNfF;LəgYƘB|f_kLAc|/\cMVKc\@v.ηE%: %1 C.6aLf^h{!͇2z.րQ;-z֤m `7/T>d,˲871&ĮpPRJݾӤ{l$~Ox.<4ƔnQlvOGP/\ȒB6Sy<~g[6"Ch;&PKtX0x-nsJ)[7r]?w:'R[Jkda{~N۞7OO@B'n;t}8.V5`qMWkMѻKČY- iۭ{"X'/߇5 'RWiVxKnRl1Pնvaƥh&wJKZ-vu:o-ʶ۹n *3%o5~]Y>}uLLyTZN||N>|l;ܹo42Ӈ͑־pdc9'[i ܏hg2Q-|3s,8Y9#}-G35ֹ}{w}1go K <qn]įY#3:r,#hh8dl'; rax0|b֚pnI?pLJʞp v1(F*BG`@ӷ߾"<'a3scLeYe{dY6ɲlR3Uek߅(˲㷕ܤYro7 {yƕT(Qahhs1Z; ];ɘ-GY#zA -r]5r|oT;x@//kR=5Q> ƢKGnOj46EԌ UvZ־OLă ڻe_\ ];X-k\/s6SgO&ZDL > 84 F1pfgAɛSTqՊ)5ߍ#9ٓh!ĉ'vb#ͣaquZ"AOܐ}sƃ99.Wb]r,3V> 94 ?GwA5Q_E'ۅc#sAXX)s1=p'K<q@Z$oTyoĚx<ꝅ/MA -ryNY 1xDubkU)YߚH<<`h7$ݗazzH9_XˊJr9 tr Dm9"[bszvQKL!XfJĉƙ1D,*Cc:cL5t"dF@341f9dz,W#-(~n Gc|_! ;GڎZc7Uv.oi+Όtlqc22cTƘ\*N#a1(.ǁI/>:p2D?h7t+>d M=B1Ⱥ 5 kvn^swoZ EYv1ϒ4>A\Y>S9˲:l%:4%q`CcDt _i=naU8D9 5QbNk.)>6#-V!<1G$ X4fexk?RS Ih̔Iz! :ƘV&~! J.ƛiX?{><Cgz *)&xSڬh7ƼYұ:VfenK=L%<%q@5vSAcWuG'p'R ~ 4.t< %EƘ_# '΄1c:~ێS]8eYVcmމΧ_F3-l|MO:> @#|:M=%QHV` ]"^f~w18*>ixgODi0GDEGqQg VsGJ 81z6̊C~D@e <.װ|ez` %$]x0/r\vfY6 6iSߪ.}tc]㡡p-&CNYeY!\ 7F֔X #::k?St,It>=f$eY6S &M%J rhuP'SAcγy@5 a p,T -t [Ny(*]!P)˲35ƘL\!fYs`/ߏxvm:Ozp/2q&3"eY~~y/CFK{FC8\q@D!4v.1&QaU뱔:ǪH@Mi͆1Ƙ1F/>q#5䴗K,Z7i؅MI6#ߚ*"?#R5ww6e^b5!cu1\F%T1u .(˲3¶5Pc&Nbw?| <(O*?ׄzTq6K)n҆P _Vl:'ZGxE5 4>-]2`;9^pg$WGfTiF01]nҸRs>BCPNŎ/Le3,!U6/%?aw}viH#>%:MZDm"7t뚳'vbY݅1R뉄*lYEw2,2[yJ]gv<^,ZIy%mFP?g+ILxl2Y_Խk X> ;t;;]Ok6XP&B]ؙ:8Qa~U*fM%WkP,袳U!*ahaýF횄+H{~ki~/9gS&ln0^|ZDaɱzlYO+9-gإ9;yz6v·fY-!̑FJWUkc̶jP+XC(_(Qf@,L },Y6X\4:Z"52ƒ2Ci>\k ]hT׸,*G ?>W}:4nrOS\NQ#-e4d5?}?jBWqm!u/FP7-c3tI|3k9@] &[7r[[B+Fǹp/PN7:}~9.pyTh u sa #څ;A:xӆXGc_q|_c;Vb& 83ˌxr9Qr47#/Ifk˲P6}SBYi 9c'ݽ@_75o.RQ.*Z"v$J9/z fזw:@uh@ϮSc q:G␝Ԟr.eFu\u{i^~/ARv x rm#zٖ.(yD=v+\'01#!pkd*>$p=V>%6tcq*y8$A3 TFӈWATxa$K#OOkO<UVѕkśP愚0*l`M-oǮBy>@ D6r^ 'sFqU-TxR5Īm_4{8\zo4quzZ c2,y~yOxkx,fO)hKNrkr?~6F xoV?TV ]i cJ?p֎\=ѺHX)mp~) l+*@]CZ\]"Cq;tw#tGNT*V30깅:*9_MҶs_A#wZMP{m/ gs-]`a#^FnJ{nESFimg־B3d\JeUt ?o.[7PxTŖ<2鵆=Na~Ka4k^GOc5QSI:>C,){^`iq:h_W˼v~^˺/k[&4_ms$t( dA87.nMlS'QyOaU}"gNă|p &5+åO~ ?eKt;vc:\^0ûB[7k8 CkB FuE \q!,uw pm'CRp*B<ڜ)\#8w{55KfQD*z^t%4(g\a89cȸ%!( mnfCQpʾv,o PX;BOhN~I]WR<N. ns˻ :esNw|Ҹ[#Tϸw5Q)0rRԠL%r}+q덦W;T!p_A`x֭ڝ3ʣe<ø~i..j=hì)* Q:еnnI^JUs"-DvޔuO3B C+Hwp|Z5"K­ Yw[19>XAں#P邎#X㧷>x`M%[u[A?t w*x?y\ sqz:PW;ۭu=uDH- ^#G*y4O=3t]*'r* LόL+p)k' -_LhYXs1pZԊ8;uF+}k^ a=ݫaGSx L\{oHaR. K8B3[ykEgiF q4Cw~Wh5!pZmi뚰j=؜:\ʮ#a •S@?9ҳC1~`P&xK}x0KOs/jZ[|)F_`+"'R +=r}Nqdp)简KI[G^ zl5wq{^e_'GG>̗r, q[$4Q|R Bet^m\Nq^9]  =d~/߂0{Pm+rs\l@kD 5޹UF/G$\x?(AV!>.ϽJ*֧r}XKK_4|;]6agcO?b]Sd5ca5*lIh{ 'FW`cF8ףPayN::6k8*{b}O,Ox+GzZ{ rQJ9=l?/w,К -یK\(^Z,`Z2>,S`ZObş\؇h9%agV?ЄqivZq}N|IP32'FD&)ygZ։4/QGx owƂ7bAK[~ *CQaxB74xLNWǾ`3J-&rPq›E4N !2z#Vc[a5ÂC+ġӱ 6˸V>mwLdi&QG`!6꼠fG 6Vfr5t;%o PN?!vPI<~_,!u r]]Q"Tاex͝XzX>cu@YxMz=oߊW}hΥ[Ƙɱ>eY1nk,plt3:,˜ dM1\7X!ȵ1d*~|̽\Ok=ih1\~:c#iS,0IgS Gm ['&Z-ҭVH"2A0`q'pL5< <xUOHuacLqeY6zC;tIrc|D\,b`e4*,#:2yG6#;gW0Gj F"+ w}÷`3>? CDǻ1Y>ΣKgbfwH D2$m>uƘ]:,VIsJk-$MHXetQ2޺J+Nϝ2Qjr-40,XɼGL}3?oYK/jR>3 }.ª}>+z)z[Ϟڪ;`4Yǜ/no,.)sjTIFP.c'} ḅo{V {9EBqK(sz:?x5,$.n7I&oa7y@+wʽb_>1+7CQhFP&%=NjEl}VڅAY/ex5^y0^egtw$l%;zlCCs >J)/[koH+o8%'GPcU= l{H2z 3-۠uYx:nI۱R-~}* 9.y"9=V3Ӓ~0oFQ9Ҡ #p)?T6Ne3QF O͊=!J|j@$=(YY W$ $0@ z1cPSlP!d`ȚYŬqΉfOn:uwu諸yN>WWWw]uW%Uh?,IY?=aEd'Gi!7UsQV6YC/@ǖka [FqH; #LY߶FZYb;%nɨ Փ{=sz]nEE[2 MH)~SnchoR7Uⱝ}aF{K./r;5ɨ'_/!$!aV*uP)޷9Nm^%عs9WH'Mґ{7ERM\VnHw3,o_pJN= |?D( Дp*W G8mvsPcx&1?GHJ67k~/ Lu1CI߻zZ>Yp@[;2}%/sw[YdБɊ*H!qXGhNͩ3 rM.W?O97uj&1Vx]FIvV:b 6DN[ ~lcjf`[T*Sw_#zz\~YOiX#nAHh-3E\RUlgۣ 340=&G3*l~_;wQi ` | gҤn&МSȋ+uAdUD' E#T[⦛),/C^I\܌4勾ޯTHj-SX~ieeГ񷰽-w`HmDoW?n.9}v]Tw :yw~M@f[9_IL|xL~_sG?٠`8s;8A/5~5"g  k&I2ꕱ]])%LnJ,%)Q ڷ6Zu4^/0rT?zX@{538z%Z b;񨿣T/ґsX߮vF,~m9Ss v&tzQuE+@QUI=aQCn[EQ"F+iV^K\2d퍰? ӫDa#:Yrmic`]ZFu8a=UE$ir h"[`wڵs/$/ K4~3^G@ӣPdmgh t.v=o/c&?ϣC}d @3Y튇}VG+y+Ɲ73NWcyyO ;^>\Ex])|-Ϣch[:X.Y9_I8Dcf]#rl'/ߢ9Zxgh΃SCVe&2 ɰ=2v} iul=]|sjo#~k^#Iﱞ_B\aw_zh?[b; (T@24# :}2l,$34ńC͘~M?]Mp'/"/@+"CPTh*$1Ps,%7?o]o N uȥl#}j︳^ CHǖI@Һ_O ׸o?[b;Ȱ=˰OvGhF#h&hӲA3g?xpC{|(@wu". ŬVV2zR#:Qݖ ;_n0F:2P Zv _wl L,~iCزi| [D~xy 4s4@Ϭo+$u&q/N= vl ] }8XY>Z $ɢp9eY¤fw%vDlds8ѽ/Q'&7˹+kߓmeET1^l<aѥl}/7s_F?c.FKoa~-fzX׹yl)S2^+_ ͢Ν@) K43lK4xGI=Gݠ)"`Cwŷa*>p"RE˰_hNGC笔;VvvYH[+b}YQ{D6ߴMf ތrNz{o ^ F'ZgaQ B}Փu"C+@kvK߁"YVTι%Z&/V' ]+V!$/ ?9w'm:N5k\cz|Z}?nJ.4J;#k 9#\X̒ͅW@#p* !( !!(?_ ufzXCbNbɇeg"VVm$ ='l'+DoBV8< ޯ[Ͽ 5|9d~. s=ȗXjrNL,~DӧƐ*uC]ۿƺs2km qG}nڿn{"Gu눗k]^xWy0nRvVÇL`KV:#suy }ǿkJ rN`bE{LH9HN󌰓UOȺɰ[x+Ls7<}]V/E {=@4.8r+rέꡮs0vkT{ׇ$z+-.}ʐK. Y}q"Ӊx7Y+ȱӕ἞7*|xCj]I>mpzV|CJU#4^U=r6?^`_@4н֎v#9kG\-']wc嶧kaO"{Zrwj{7|dtW+PN `y.ThpD g +D''gUgjP$2NjqO~N54[>@1c0>} >ܚ {وU\(hUѲ|>z3TINa&4ojD8 {LH^'ǥPxUoi<ޟz䃆ɑ ɴvʳNUh pDRJIq*V=g$G40&4@g{VAIݘypL)T=6YL>hhua;B,^T|x%L;4<)Tבbգ`&4:Old+`k4*O(|c©Ub xjNX܉b+Qn:ո`Ǽp^Y.co)|+}8 S #|gл:5@ꝿEFu0|KܬzDYOb[`ŪQL>\7͝1qQ!SzByyx-]K*a*NڹKRcT(<'G$ `"fBHL,~hU{} ɧQĴ.-A[|${)yN~#Bo9UDr&Ac1!\]N8 W9l;XaT&PA;|Ld+ 3^+ޖ}D>z_C9s`+òA0H~HeJ:|O>xC3G8!ץy&CSe@\_DN!c@H) dWuι9WS|<(qzEW4
9G4LɜA8kR*(ە%yݏ!GjMÕ9uF3ȾK 縱52km2/_N5ȑs 83Xe̪Gqx lI *l7ܾgjß'ॊ=[ acDndlP J;!>{JSb9E9s|ױ@~ %ZoT>2De4SF?ϱ](<]P`aTt{Ht~x5c^+UXV6̩nV>m1wCD@Tm#ϗlFw0HlT>ci NNƘn)1ꂿ[@sE{0*T^XD%dd )t&s|d[n_ zKB3R ME\qSTޟ' J*HU?|?v"Yy'n>+}WQ7`ZU=! $^D 3]2 :]#Cs uOr[PA(t!{Ъ{__i\r:!Y9{ fHJYȿ+GS9 ݷ_~qvB Q;|hZZhAIZ \てvzm{hsn[Գ3Yι~Q"Th$Br挓{|X ? O{/ϕ!TO{yF7ΤZX~`m >/0&ht*g\2P94RX,Iae齈\>Q L$V!7 |FH_C}ףPW'*G#qͽC/s}~|=Dbq^Y:ʴ_K͵֭mXN.x-v.[͇=lN 8҄+7*Hd9>9DӨZ_ߔ=!T>61O J|uH%iǴo߷ DW'2~߱m)\h>4[2,:rֶMs ;U==B3sn%,[ۮ~ 2")Mh} ͙2 B/1'òՐ?"O=S~Y0?f(Y܇o|g 5x/mHDAiV\䬎/bc=}?rॗeP(d\Ջ$ u ?!x?>BH <_u7/2Y5-ĆL>">\X;SdPU(diIG4dj!`W ڧ ;, |E !f;!$0k,*o}!w*O!$.?-o)븥Z7G~~@3TT]c#^6Õzaɝv=m)GO̖^zi tNM2A( ;ιz^! 7Ջvm(NJ!QKE@?\9cN*N:{)zܵskwuxپB?1߉k!G1_@H>WI[CӣJg&*=jYo4-iУv{<e4G gC$"qOU ;s\GsιFFgX7P!#BGʐKE;ɪb7L>v Q%=J0j8~ Ҝ㝗 h80Rr4h XU0= ?k.&c|hp{(D6橈fŝޥVj/dJE|m1hZ :Cs {4;mKP?OXrq .ԣ)1Œ'X!@dt;~c#mW%;J͢[Lg.*l3>c}|uL>pix {G)}\3/}j$b[ 4Xң1n1߉pMp/7IL>a?TNaqvgIm8.0x!GD#fs}hΚ EnQC#l#c(? IDAT-WFNpDι9lUJ6dx<#L5N%9ykhDcA+߳МREۨpGxJ;K/`K?YA)v6>7d.MUx|aޏ ~cGwtzx`յmKEӵxD-{b)'ܼw ^:Zι%%ipݪPG8o.5]~c!%/B"EXDH& aw RٙfvgRS\zUJ&btms*>j_Ef^(Bg$°ffxeaj22XW Lh~~_qL>S^sD9s*ɥ-W=+iz->(0#\4!w$Bh;@HXIZ9WxWXCNuUrOrc*N*VeiqV&1~h6t&4_D88?l$%BD#GH3v{7BrR(wvGa X9ZIe}#' $@(^3eK-qjS싱WIGH6U?~% !X!| !Ϝske^vKu!\2$ OJ;10,J<_;4#6ƅ=-?| |wh B͕kgDyR(q*ߓfҺ/c4ş{"oO`7 nuricKk TX/[|.Og&' )Tr\~[G~/?L>3d aVPvlţi̕՝>w^e Ự @Q~,{Q~őmOgôDSwѧ ^,ŀ>2~.UO{f൤XJ<2o!'k!?*4I%+&* !YyIflj;r9nZ5yv᧰ F|k^܁I<+  KJzYyk}ՉFZ$)w(U@*zn&DIIyCގaRXP#% 4=yt ۉNR؟gwն@* ة!!_ ^k}.on5d'3SWveb ѩ諸wSqSaߣ:Kz,H˵zvݠ9~=,7&'k/wX{vo`\l* πCn/\M698{j?\(m3b VqFKY*~J\+":~^{$wa >Jr*Z+yo-KJ ;!SXG:AZS[iDl5ZZМFju`p>-vL^CA3vdj{;ǁ4F:VV>SipB9U} G:ؿ*!n#$V\||B5K~V 4a xM!֐/C8Q䜋9uIL>γ:~S(\.^yx@>jFN3KHk8:<#$lv Tx\f.>jKl' E=" (38C#ܝw|kpF7o4[coX<* >;IF͝v}!V z=*D{sͥ]|//7r3وu>|2`,cp˸>/0ڒH<:#QB˰ߘʇ;a:&K-KC\窎AH#|`H0gdC0et=O_x[XȣǙd#:G۲ιB;~:.悔phyL&;+kռs3D=Ry:4eChbR )W2)~/qT;VHgS&4`S L`k|=1=#$o;É)ș'Oϥ>^0uSr)w`IܗS*ev"6(ӭ &+-<p9ƻ><Վ)1Y}`rL%<Ijo רIFۦ9f&vF3uRz”C X9ŠU<-#Ľ'(i걜b]uJ = KrumۻĎSsc't|\! ?9jʑ8K=x2gh0s&Ky>ci,]=B CI.v\[=11t1vJ#zuL>4ZCa)2`j( gw6 L> P+r6>hг)6IzML>1Is^X]qTϰዘ 3[jVX|@>`S9rV"G[4,;ĩ$y"zX9( |G$ b TK*zAL>3ع MS䐉Nif3lc1׎gurJbc8yB;ĔSfK[JJ|kjJw|OiЇ&.R( |H@}nˁ.PGi1QipG}LBF$N~1_JGxι\&{H33{L;Wk.40[&#cѯw8Hv}Jz'ï)Q{tgL>z6:LOޏ6[&&#sy=`zWKL-M'||K;#{&9`Q-쮣EDWac|%x=38BW?># ΩԎzu+CC/KػvK,ai AkqOE.`@yiiӯr]a}"ɇR;ڭO~H^籂>C|sұtq뤼3+z|=>>pXCW_+H(ճz~Ȕofxv4=CsnG>\=q-|M; ]5GB<{ﴃaC_sy+ cV?U"z[Tǜ]pe;H4"m+6Q1DG֯e$rJmJOann;}T%^{0;N-]̳\h(| _\)Nl^^hkiP|Igl l{$bmz- #X0icx YZ^ʇ!8ϼv97rR: Pr^ C&p8xKvک_np9*x<21aDSv ?vWzFڕKV=hL> k>|Ǎ7JsOH{睲':]l*QLZ K}x^;T0110~^q=ra8hhg OG3\ht|h hGX }O;&kRʇq~ nv&kR# K̗0Ͱv.G4& #s~QQ&2IDHS0A; zILLUj0A 96\8&s{$g>LDdz^z `95vPi@'Bh1H|^뷐%L>$wq$GI)p #]8إ3K$/3&k|$JLXF =;=&i뗩18FF1H]F;:':3p #qv|-diȵ "3>cYc8Yhy a1vD l0d0cxG08@SJj;!ι;39^)bi@s|eL)|LqX'IcaL<(I|Lsnv}Et)ܞLIbcrc@"s9x)J ⩷Geq2<uT&$Jʵ0,NR]xP|LzvFreA~ι9ia&ƫ3(r(0M UobaypK&'_Xl>ZJd$CMG7&`ă& ia'2u7)sΕ>֎&4YL>nl>kp˜swx|1Ln\W ǀ;`{1[ sm֎V?Si;ՉZ;" |ܶ\;cXQGy|8 Y2 `& 񌖽x̧mk\EK+0h{păcir6PhBd]O;ABf,]]>s(p=q* &D8B^f>}1:BK7`3&Dݘ|PͧdT`GOvDV1l>aHcģa2|6x鷂3X:&ͧnT*@%8)]rBt&I~!vZxFA嬥D MO7阱Gɧ0؋HXk$0$圛G&D#b.v}ۜ2}/&D#c僮aH_R;.LhaGsΕ>y{ăPodjąͧι7x<,4QFia+4$%2ă V>W<7'Q|Px^5FQLh0#c^!)i0v?LƧB-Q:pJ).xͼ8m:QbXA;' W?*01 J+48N$ aeKځM|I &Dt3 c|Y aR*Jç䃬c# _gs) ds <2N FDgaR]L<\|y<֬GV 2ݚ5gAD`A(-_)Dt)P2s ϵ tA)a㩾GvD6&^lN_>"JOս D&R; 6 DV>(E{&D'V>(9ι{ӎF<#bJLnǍX2 1T܀G}MJ>Wh@D䃒9?{_jADRp hx %9wqL}M+,^Wh@DRǡ~=pB1"J~- c%9v轟iADMADm`僒眛\9)4 JL8k\" J;ĕ`AS^.khLL>hdGѨ|ДT$s{Ѩ|ДT$AvF䃦:#1ɐ#G8䃈F䃦 !vDt{|T$nJ;pȅT.49ι q$r!"|&DMQ@*v1)b8#"RÞ$7þęMH +4U0왉ibASanH*` 䃦ja1IW1nbAS"lJDژ|ДOA&"uL>hxODd2V>vq:&D "R䃦;Z""|dy9İMݣvp(1h` g7%" |Ѩ|ݎg&DDd:8䃦GDD0 ""Q1 vDD""""""""""""۱`AtK6L>hdL>hTL>hTL>hTL>hTL>hTL>nF;""oc "|Ș|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|i@DDۘ|k@DDۘ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ^;8Ҏӎ`A.|v!""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ιL;""Ms^;""䃦N;""v̴ "|ݒvDD""""""L;""vdL>hdL>hTL>h8)AL>h87L>hdL>hX "2MGX+L>n ADMs;Y""|TqxL;""&De*䃦.f1 -3|TADd*|ti@D趼yc s{6V>nsn6&49ZvDtۘ|L""Ø|Ѩ|VHL;CD|Ѩ|Ѩ|Ѩ|Ѩ|ݞ'1 =k1)h`+DMF;Þ|*&49J;V1zQvDDL>hU!"Md?ha3vDD1 9w|J9 gM ڱ(ze&Dd 4@3HFyj-Ya2 xM*+&DdYι̝f,'ܾQ2RIENDB`././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/_static/images/logo-dark-mode.png0000644000175100001660000013273715015441204025273 0ustar00runnerdockerPNG  IHDR}a pHYs  ~ IDATxeUyAc"16Ƈ1xtr3 1Dч8CQ Qq;/CMa2HFK) @ "Awg>U>k}]GIA 4h`0Ȁ Jn*mkРA  0*Mv"v3a 4hРVÑL>%Ҿy+y<Ǜ9 #2 4hРA\+[ҾlVYJ)ӈ4hРA 8Ƕ<(f6q%$`lg)jBrgJh4! 4hőD>"Fs/YbyǃX(#d; hРAG,$qdJYDr ',PI&g{ e8`$47hРA[[|Ka{ 3|(9s?$/M% `rhРA 2x?5oN4{\2+ynL=!Q$#"/ 4hРV&5D6a5l KSqD"q:E<0 }\Kd4hРA[[|B)N} p_wL-Y.Gcdr?c0M񹐦K}@4hРA-D>nNfKvQ=X9L$g%/5'Maqb +D-N)}K:a7Y 4hРV"K O@N^G1rx`0ї''91G#(sdcސ\D29{(kРA H " =||#K?EYpMR'eMt[q: U`dU~m\{M0`,7hРA|d03V=XG}mL `*7VM͉1>&b>#ĩs<02R&BZ_ 4h`Scp,sWA#D6%6ÈYمK' EE Sp%,1D?Aģw* g| 4hX:dEy66xFzC?1c0MǣڝX@K9i"9p'pp,`cS1Jùaڗ4jⱃe)#$f!90*ݷ4〓%7)[: EZ"4 |#;(6xW1:_H،k| Yl4G+*UWbdEx}̲ؔs6}<\͵0rt7<1ʒ}W-] &91p^?MIV'P$:M׏SwTy/=lo  | 'z혙p||DrrF@? z#0M,<+ȩ*S(:̗G#@?Fދy9M0u'F>O(ꂛPil>\xϱ2LqS%5IN {_3ȓ}Ôb>z5!N{ɾI4h`l6֩,bڇbP23?'c`)7cd'Xaպm9Dgև2<#$֑y?E#<iqG+1щD- gSX#VNW$> #d,:[5h3KJL>rᚾS?hB4h,6#pܱX>hLgu`/b_:7 6lF?/HN ꉘYL[)7PNrGTKX4̛9I`ob#w;0`d Ϋٛrkܟ5krxrzx )9O`f4#. +ԈHngf+Ǎ &Lɰ28+ qƖq1D0-3f1UuG +߹Q|8]|4hРIEdJ-ibs3IӒ'ad$4νPҢ{$ +a~I$*I_]Ҟ;$~ICvtUaJ{J:Pڷҙn{>v?| ٟO%}Pu%P~e=?^.>&B,i<9g2K먑FiI|L: 28IgKCFJ e]qHwu=Y'{>$ IFx:WqNΏ=HhL&ۻO[ۡ~6/{Ys &i}.sZE2[n˾\fcPf4H 8L{1ݡ∐7_0u9$iNɸGҝߓpt_uwHe]LW-kStE됉Lֱ} FwHV2T$7;U0Y;cPÒm,=-RyuVQ5hʿ~mc#42R{,lWEAJFZN54$}ViV!Ȉɏ$PzyI5ڇd"KҗRfe8;!_eRP6=H8*oI;LDȯr oҖ3U.EB&Ր>ڪYִ\"B 9F=dbɵ|߫hʘP4|Q7%-) 'ywߑiCR5(jfz'C*4#k]K2.˵ey>&V(x>rEwiUؑ꠫MIeITGGEɂP125ģF5#VGNw✕te 2s}2G%="2 ?_!M)T2< SNue_A䀢)ᥝԂU!< '&\EB3HvDH#*QIuђS|O4$'`kvwtΦjy<$s:qvʙHSze3GH슎bj3v a3*ĻDd!9 "TAϲǠ YJ{}#uޫ^* ђe5Q4:lZt%̩T2jql3b58jGΔ8YN t2,싱f^ػl,$U{@|i ,#}3h?"B< c [Xg4_:q#Xdj,o"=<X'Kүێs 1 n)m`uzұql}#:$qrpuDK.ƈk\f/꿊xV0>&6h`#PeĒk>$W٬$Xϟ ]F.-Ũw} N'UT (:jL1UK<%YouHJ2Er>/.ź;g]?>el!Me?*SK[f_ܗ{i#@jOaJ;tfꟆU郊Sk׋Ge3_:hyxΐ'9T[[=]eʮ萘+)ba;Os_^yTurGe^#yMCֻ.E\| 1X:&^mE[eB{yTt4j6+'`pfL(FCd5ƋV^{xP`tf)a;óc;rR& ;eµVU\1D\ac`r޲G-Hׅ;'S 18P-Yv>|JzfGGId^AeH#lԞUZl+=N5We!j{M+KӲR>05S(TQWu|NwU~̇Hu8XR) ]Y&8_ T *7ӆ81@l+S4-2/RMp7U湔LW+S47uH#lԞ!KK1!#z獮7 oi. ~RAv-L7_iQYylHک ȕ*,H`>;%B-4 ]Em~ |:]+WH}e]p>E7%{+?0C̛LtwF9A\+RG\n}XG]I_XA>jiRpuSYHGW3MUV:C~~[q}λ%{S6xo~ bidlA& "`ɲdg#+tnNy};٩\rwa8pkeeŰ/p2m22rs-U:_:/gӓTt4+*}ǥn6MTC~Y5'uqPC]^ELZM/]sʀm0IGWi\}xemAh4x hpQRԳ߉543~Ayͅ.V Wѯ;{e$[vqq֙*QݩکLo7ʴ_W\@1%wt.嬤rE!{S6f2OWg%U%][%]p߃BtѿFTR{)-E;ƥ X)eq<ɽsvȢV0*AWMSN{de)%0>AQNp?[dp*OgکjktjSUd/#iNfUSf,L#ﶤ9ԗXڣԠw5M{>)ꫭТ˄F YOKw#LWwx5"ւxvk #1-*v,6F;lJ\k[oZ,7O >XoZf_Az% tl? ǙX_Oc? |߷p"buSkOBvHJaw'b | M|bޯkc(.+w}/p߇\IX}=}x ˯a݌(]}۱5\o1vs׺Ye6V׎~X7h0, 9މuHL`nGŮ."b[x1qχ"FyѳVHSw 9K0"pXg9igay>끰U5b 9a[7)vj{*i+9>.PڷxHH2: [0h~+6.? [`,Z,.DZzY <,VfO9 _n,gb.⢏0~Zna+3?X{9"XNao׃-xX#npc*FĎ|K§##>*>?~rdO:n:r̞>g?9XeVok%=zSb\;5?U0p'#'/i2QR^֥L.m {J'isF}u0mJ<Q|ӄ5h0V#%T>jcxߋ}?%0r qac#'c 71z M:U9 a(A 3Gl~rqX+993Q=0oYX^!$e0i܉p 욎'u~qIVX8јĴ)|a=l`جc/ Y>ٟ)l$1}z |k<|D⿇0U(Xr)W6ZZXo LeZޥDF67qqrrػ3 <1yb%0 ۜE_ƿ.fJޓwFN|Z,ˉk^^Os-Ri0l҄&ұ2؉OA^.s6hcwo!'jpBcCLK 'w?Kj #$`u<*QҖ)=a #bd0= fX~xLze8ݘ՘㴟+͕ad02Y"1S~N+\`LY5edQ(YxGb[nb0#ahl$g f3fB3?͍DFl1X^\#HcA?sGNqA! M2nBNZ^G;lcz IDAT_6h0llVGmw'7b#t.ƜaƷK=5fŒ/ 6TE@\LOM}<=acSCOl`ufrFkF 5Xp?b[Fb0qFSr ֮t1": \0,Z%hcﹿϓfַ|za;:ژUA` iՐ`a#p簆Rs}X9Hwk7bv̱u6YynC{Zs#vg0beXfۉSmbQaIF1/eGX~ r?͐Sq^.,Slmrr&#m02p}^"XگMq:Vw9ф)yqQߠa+]2՟Wb#WE<~h~م_FnlsF8fzpKNT Yp;ʻ<[$ta>cxSuv00O*l'=cpGC0g<7~^iŦ<_ Eu<͈S`sthcf&ֆO?'˲6EwWҹG]Ŏ?kڲMH-p::ź eezd\ک*ӑbv HY:H4R fd"O~6S6 UhVEҧdM1?%+j=F|^ǙV✍ uu_$9$|+5P}QvuԴ'x+v$x2L@rEmD* WmiڔG9Ԅjyx\YJ MrHҙcPlq=#谅:Ld;eߞ(T:Z}tjJcntG,`{c~G.S?ZdVA::;H I7$(+Kv< #i]dtrY*f EvoL@R-촢VCrUun&Կ߫UMf֣ 28@3^P}l&o+oؙ\RW[ي#euee6T˪mίzd,t\ϖycw.rYvU,Lqez9*msyuN|CtyAδdõ1] Ty9BH##AҒndɾTO߃p|{I33\UdjYE1oKCVgޠzcZA[I(-snNt2xH҅*KJۊu&1TmKC6y3EŎnw6ɘTX qS}o[[qrhl):k{<@JVHi٢R{ja%r;1%[m[#Q~jLO(\a*>ƹDWn̯Wl=;5{Uݱu3 O<ïw+𺘔kRکԴ+׹Vjojj:s;?WCIut4]z\8B]YHuUV};42=5I[і,q ՋtԜ]SisY]8;N\eupm: MڝZ;QYs g_7':(P\UQi]fSf>d%򬟴K2RpLřv 2N݄;gWSzS3r|G55ݧZ^{GbFE<$#M*k@0쪘 oAt0.wTu rZdpZqĬMVGbdIy3Ϯ|gJ}JhKEgJwxy'j9C)JG`T3 IߒWN1yWq{d6E⑒ L6;f:H^7g"x.yŹ424=GGG^ UbT obhgWL;2o*y=딙~U2+fS==^dr&qL1!ŀxk>[_p82I_¾{|_weD㫲IF^9[k65WTtq"lqy 6K@Dl0>=zs[Kg L(\wpO'x5+S3Oj|~b^Ubu],c;=^M_ dط V3` o 񋁧^&/<)Aq x:\_ 88|VWapWc ykH!-N!5h&~09R/Lol ~sIYU~E kCʾQȮR еU.Q:q|}:Rd8Vozh+DQ(݊ZL5>!{w)r)!)U kp,uTݯh.Ym9(-FY%ns$9Ľa#E֛_Qvb/6߉i2fEhlDZ/4Lbׁ| +}%h>&)|3> 8} ah.4"㎓0-s'?$j0|خzr  +p5ps $)gP ӈ-E#j^Rmk]3Va`gWCCC>6[ b uykܾOND%06H8;Xljq m Ɓl>{XY?+ȁP$8HL׷;(6fj,,6I?x*fY|-F2S Vk## ?yF(Y A!`6*j8k\߇ْF;A#'0ñӺHF| y Q p2NU3XGIJ2a,.L{M3I1Փoaet|&CX=݇i#?KC.l"4lE˛j|' `6`;整K~Gᵀc-GG k;!i ~#G?HXceڎ3usB=6MqvXxF"It>\0m̄doؚA ֍|ԇd~S\dM$`::?a3&f~W)r`y'9>uӐnL3>`Z䘓Upl(نj̀7GG1CJFV4Q/YL-a vWരvvc~ l*;unZ`N$5u`RX}8psL&La0SGp)Yd#Oc Ԏ&G`#͊W-XgȱQSqk8xy=W q)iƇx| Ӹ$ٗS4{Ty,73NiHqJrY紨7ja`~Vf0}L4[^O#4}<ȃ7a̤&$Cso^j`hGDŽu8ޑ%E1't~>KԌ9G#Qw":&j*f\\l/W('0-ȳs怯`oZX`elO'i%2b/ց߅ X}[QAN 'b]+f~yJ #=Gg- !yhIZЀ9gb\:b/FR;VaXC|d{3 F )NƦ:)jzzMT_iVpX$͔LS찝a$}4rֈEi󠼺/dk`Wq }t_W5CLnOGUhwL*}_*}bu*1ַf{/cB1B8H.` e{5"-T+YxL mʫqҬХ1뙌;F(hsM1Aq 6-sUs(OhJ-lT9.S+vKoc+0Z%TܣSMIQP6݁.sQ#c0;1g1MN,z>k{<shv3iL[k452 6)1>.;+^J?u60rQl?H>ϩӌϔfZLX>:9dp/p,GXQt,.㩥gu 52ٷђYFؾ +aSQI F&07b09>  ~{O3.f=yݐ!˙48l4c0iS~޻(N\8g'TL1^3[VҜ}ͿNY=ΠKXT'cJYrmg\x:kc ;w F< eZf|ۯ`k=g !)Ez/83)iFN^s͓{d(,05aɨHd//q-!bI[%Ҿ/)*ے./Kov^&(|d2??t*HH^޻zVHʴUY ykhOUw&ҕxZrZmR+rLEFԞF*ej/reWZkGiwzo}PE2:(\E*:O*:" &;$/KFF;!MΐIY̫<idC1'f0q ͏D w%0Rd{GcFD(LN0a%w\l3FCAR\ű"~_EMbŜi<܂fqzoА  4'ӫ)&K`~NB/{KDQD5Hc|6:g:VvM6#%0޺$ج.Quܞ<",>FNaAlfIB^s'V.o?r"y+Wce7f+#u`АC_?0>]7 /=]$L5hEF{A8V@1ʩ# ~:6bwH`i#5%p YBjk+|j{.OcD CZϣ8巍02-au4'0fEvF i VB j+K{X6tҒ7V/ΟmO[dbEE,};fUtD ϦnҠrVvl؀:6˼b}@|k ʃKվF4 knټkӬHl\a+*%L|8 NǦ} )Hc|<؎iR+OmO!zZWUi44dJ=h3:lLic|@՚UA ߷KQ ے g|)*NMgӔ+8p~li.knQNYϪF?i<y{H".u32WFv縏H*w"/|u}-rNڍ ꨨ=ڡhUP:R|5 l"9JRnTLa+`nE܋MaM1n|#[)o^no} 1 W}!pTջ½_ N u,LǀaH?M+ؔ3t3r)@ṟ iهMzX^6%,k6" TQ2.k|!gnhaz #;WcO=x)'XͿ *x*mbix+FpΤxó.y.k:L<:XEUa}Wn~UmUꦑ&ma%}1+IJg@y9W(Z҈d+] 7#jQ]!m לQ#S1lW=JM-Vc#l4Sm7=ฺQ3} :κq/3[Ii SW 8.6RlD} f*lz,`W`?t>1-űyJl&;Jncڙ \qN9mh| K>̔2O`J[v/ۋ٫7&  L֮B&gYo`{`Y،i #'brr3<.zA]` lFX yY=yWމɻ'&d`34+4c0#ף uSl'vVuAZX^hd \K " ^|+)ÜQoŴ`F'`Z9`wS7xprs=-9̄6K^CC>F=Oq8tKO$baQ17\GY0_u>6CQ,o`Ilcc.HJD7 3<<@$9p̔m9l`ѐ";f7xzJ1l' χc:I}~+yXg ,F>1j܉[dO< L*H1B24dhh1Lx!ң~_w$7t0%cЯcZ5,_#jFΪ90RP lz4ct0qFpSٜABN =ӒVL h)0O_i,#"SwzI>n6rQfR/hc\jpM c.|N(kIJ`|M0"mrr `rQ6FX>܆D; -dFa(/[ 3u']}(_{7>ϤhY8~s])\$H1~e3K{&#OY`0Q(6r8K aUS5lu; ,6&,zj`cp8[YѣôP|L#V,7͐4ԇC>f(:\y}F.HoӨVNu2ȫ& 9۰5Fj=C߃L1|"~\ X&) oޕaN]}: .fyx8Qل8+=L=K.`&AH}*3L/K90J[v/tHR+9'ݞ-l+W?+C~=/i:$=P:gT2U%+qĒ;3 Wbz$C Jm}Uw9dZ&]iIs$]+I?\_qXц52^IodbZ_HJrlkؿ-=I:|i7a\sn^}ڣr߃d1DMD8*9z^ݝ3ZA_FWq ~Խk~ {w/!RLS4Vg`(\wyjڋ~y^r}lwcY`>}.78io\ y./E(f%_NQ2i=ׇ50S$m}`d)cSbg a_3Kߕv&%M&ۻ%(CZ9KڊwpniFH.~ұ{e# ;wP6J+pamyY:춬 0KMO&uAQ|tTUCk$k|܇M+!uog0SgQ3/Hwc^RS{ԋe!:NҰ-ɽ00g䌷c53,y㈩!ܣ)-^|4n4"aڐ q Qa[e*߁6Ӓކo݀iKaʡ̻i䮄`myǷsھ´>{oXOesVMO'vLb}aR}GI#oGN~LRчLueL+5ݭ 7#ImtoY-\RnT6?):>Er:o }*w=ٛܯܗWӴ&Mj4)^i,?ʹѶ/ e\%6/#ڣr^!2˱\x18KEDH墿z]c1uCHVFy*87$p+b>!KXOb&lþb\^M:5%ieQ{Oob1yhޢpmN֠-1M[.Ŵ7q< yڣ:GS9A,ڧNa~Zsa{^X\0+N@<¡R"0ks2(_NfDsA$u):|kOSUyƵzY X=́[45N~Sn4>A̮aNs#Xc.,~N1֫e3oE90՘kFd sT x;a۝p+upiEdwM<c}E}Rv*F] 44ϜdSOݕ{P:|!b?Km(;/+e wcIU!*v+IJctG`P S:a Vep aZ׵T&d#\ bPYr}ȕ 2L"zڸ*U/W;w;s)~wiїݡݿAcW_՗V)EYRfdTdjˍMDz"W8PR 'Wl*jW*(5P];-g"zjy?lpk Oʘ1NZ=w١)+i:QqԔf5# 3Wmt]E@ 1ђ?H_fpC1hDATмJę+Y)\>VU#Ռf!]UV Z;5-ErLP;)<$Wz#AaX8Ag,ixɞ Njz'R jdLm[&ˍro[:fͨ Ŷ?kB #Kj uȠh5{9ׇ~zBohF{J57KE:G~t}U4IydM~}ᆩZșr!b>CeQt0xazFSQSU!W ,[Uʌ319VIf%z[lSh[KY=XMM lZO9tHC2WڿF_D忖}KQVg])o{L%Jet4+ v:{TUFzR<#y(3WTIjn8V3\eO wQq^q눫p?/,imjN=aF5] ݟy)My=u3#vh8=q^lS`NfrL}J{' ob꿹o퀬VU$ULLٔu~@rHN\O M`}fM5.{6K*imcHE)}'8cYcQօF1QyGxG`KpcwbR.ldg17M_=ɭc;k{zIa;mMHož^NDi9bУ:?$`X+o֋>Z㱈 U2=o{?|뿼o)\G,g<ϟ<_ck-g6G?>!gNWJcL-uTF踄eapþp>_J2*1<@kdi4l}|]֒ր{ԉwyGMtۿ9955K}W9ݹ:iPĒH- es 1w*ci_o˴;]ߐ}?$FRtXt~ge:O1AT :fF4\3<͠Dx:(x5!'@h` ?nܰ$ȺUTUZzWWU]ַ]N@O\1\$-q¹re m K ;+XĮr}&]3]ΦվՕEut]\pF #=W k8a=5d88KCZ.V1ƕƨ89|g d\?\;"F"Rq.ZײUólDήl}yuvݚ~痧eaa3or唊mC_\'}]H8a%KJuι8N's˸#=psιO%\Q;6q6.67+\:^Aw\X9/\^=O6N7|~ԥLɾ>R2QivMt\r 8@<&|@R5KKzSOߝ&<+MvI)LM_M!`Xl־g`b|o=Ͼg8t'|"`U|u) 43 B.`IOq|ia(OXSnyrWck..K ;K:>Kv{l; a1s~< GY|܎a#0}a /q+a6Ϟx`f"'! 6؃s| =4c#Qoo1Q(su֬͜.,6Qmu``OWk\xN/+7?)' Zm +=y\niTh򋱧\Sq|cho7XIxëlG |&3|{x;s ib髀b㷤='bSLٖetD zM$NZAekPwUb^Ӄ~ *Zd㮛` ӆB5嵪#Xݜ^᳛1k٥X.({>>2Kgȯ׉f0`oNrv(rXuo1 Dmc?݃OB$Ӕ1.i.Yc,t=xҷm ,M X!} +$X`/ IDATp:"Y"dص&P,+w?>Y|FjƷF~#6 |b891]~ 0O}X8L||xTdpbO<{L325,uZ[~ܣ,>mkW.c}yXCēKB9qpXͯcXZhX(f5ڵL|=,e>qDX8M<nc # ^y?0wo/]Na#XfM^󙜗i24 &6:ݘ< 7G%{"y<6G; F9IkaHsL{~j=QVI0`%SY6-.cr.F݇= 6ݘиd!5,$ $Xbʗqw`.'b7# 51y8tHQ<mzS%:@_>Uy AI7FBcF|L+.sdIt/`.δ'gLHޏi0Cy˘Q'}z,9 Vޣ;TBv_6aϧ:7šmf%v*i ~ By0,ցg,K.ڄJDn`ub9Pa7!Uq?&:n? U~(m,Q5YȞdXB^bb+slW1'1;!œ0kPkBd ɵ- A Xcu&,'sbOO\>#rs|Vt>lbǿS>fXt) BF|ַ> Xݭl&ַ 9Ld9x*v= Vb(>.&{(J;x&V8{j;8SG!{{SIޅ Gan뱂&?yP*0Ӄ9>߅ e (mΚNX 0'0j o{0CS!pֿR$ފ y/# _`΂\ &F/4#0rsX5X*c K_/[dN_B*a'v|g??Fv?D)~)'c V1rU'B<foNӜA.N>L3aHVR#>wX}:[600GY/c:ৰkm}?6 DSE.F~MGW@Y|< E,Ϙu,i${^8_U~f"ascTl8n6mț(&l^ .zbzb>e"!t6w0$^B"2 >B/- 9wI*>U`}XX_X|W=3އs>tmx9aV8#c3ʮ;&6nRLd<$p!x tL遼 *6Qԉߒw܎blz➃.MOG0sW߰ܯc7G&Ӳ1mؓO dG5r6 /I/?t6-kX'nwcCfoְ>w@^ 7߁;=]'[x &bc}uaKx-yۨ -crMwtz./,Wb*҃#,C}oa'?*=i7 | K!5$}20e4#r,3!VG }1z}% |*%Ggc,;_Ƽ _XeL|KcKOw~a~ַ~+q&8.Ŝ 60O)X_|¹<ιq%ι-ܽzkg9Z|=z>qq]䜻9ι3ι[~%]3{st;WιK9wsnrqڮao{wBc7j9^tiaTQkͅ-TkvvY[چ[[s/Isyۖ9Ou}k+\v-g}~s>9K|J ?ϋbhpI᠒;; t[NҺsԖl -pν9-|kG<-J|HjN[-WAx]8~/"g_Y[uNO:H|g}lϙYxos=MιpsojGv^R|t7 m~v+?yzęXȔYمy}{rAͩ 'gނ]Δڑ![ιs9v_o哎[m5F?G!Yx|YTnt~vXxO[z9_rIn\|d;[Kߟm+;<ܷ\~]F<tG?I)nlk RcnJg"r%fbLd%)}!q21ZzDܯXb-fz&L }HNU'FBB9Ou2 /i KgY q^rqR'uYKI{].^F1_,6H '3Q)'~͔YR:g!E/ ` {+t{ta| [Bx܋ wnկlCZv:%.vw8Ge}Ẍ́ YG>1^,}v-Im9"YE"{8MnwhPy2d`S<} '";Y lNpsga(8qoed8OoA7Ÿz),dzy…#>fͯvGKҼΕow&<<ɢ|pFPr|Yԇ#;}.ZouҞp_,oK)29R0<3rNd3\&"=ldKQIg[Vo4pe8Id"/"^ծ@JoFöWA,|yrGS]P1v׸\4d%뫓t_ry_H14q{?ܗ^Ӝhp~+7w ̒ZH(4\m)JaE1s4FyI]Eܴuw7E]Ur 2_'8)9ą/ls~jԃҍܯ ?hVj)lϥ{~5IwGL vuH{9ӜQըN=n,؀d'lV1Ēv }7Sg WvE g<̨0KG M\9`TAWrA}YNIfp>ux-.x_s1hbLvb2etka=W~d@p&jme'.C(7mSl7tL8{ >+}okP驅PB.p:[X:[=}x7Z 5+\$W~\|ؿf@qeBfӰ'9NB-f=QY'.|6y}ax0 Ͷ )Q^ iѡq'$i6]O˾C/U>\ ~iW}bj \BT} z:z^9JxdirtrPLa\|kpl?Gt4(ތ͙/|v56c^66A/Q'm/u?B?^.w<; us \Mr񇷒ͫS[w]ᶲ_B|]_N: o Q.:!qC}3_Ov2yrZ`uc3峰 5$|ؿ9amJ9]6[=Hf| !=lRA&SA&7(&?Yb'센'c&6(N`˲7cNx;}1"Zk'ݛ&C&:;i-<}lLTt1t6pflfz 65 /tEfE0<u MkV)` wQ5"o0+.-ƄJLp*yAz5lsoop1TMm&ۄ5knc{oSȅ؃Imy:k"o_I{-r31yZ?Ոm>{ԁb J%?yæ. }[c;01q6}pƯ*|gFqcI\cu ;*3ŦPo o t}P-b_m xca 1OHF1P\ ג?AbZr#e?V Nc\< z>TGtDŽۇ ǐLΪyA:nӧ]v;pK Ɠ^ri{'2^%񔻊&L+Ƽ8%A t}08/=6dlO ?-)?Lo`/"'ҽ`ᙌu7bAqÜAUcx eZI0`*"COYc$V&sL%>F Ot^RPhS? nȩ?B'G"f\ߧcprwfBCH.FX#V,4mXG4)>g(K-.0EQdaY6Qapt}1x=h'k֐/zbÔd a;1\,1m*t Ӥfp3%ދcUG1e* Kн& !%p vzYv&{uE6C,g0[Q~]LAS^PoƐVqz 7ܒџa]_^ Ⱥy!e/Ts`Ղćyp s˱Ce⭅S8L"|e0pZ Ow綅zMt,6` |w? ?ú>3F ޘx7{wMdW4i9r?} ,&6Lo|y=bN2]*$>D] Q3F4.a^6@ !m,;t2C/G>$>D0fM)4m,oȗo!#cZ;}y=.&ΚKćl$̰tnx m\z', Nb_tqޏ|!r?by?q3) UtQF _mC~x4¯Q7zz@#Fz9ّE&@ߗHe kzcadaV=xo I 3KH[#P$>c{:΢:}}"U6ħSi>FBQ%BbE;4/|Qy]4I4o7y5u0_Lh8塏u1|>=G!\rWt QH|,! 1 4|y>:мTҬ7}AIjaCL 0̰#a_m 3<FIM pa uC@cyp&HL0TH|],D=?nѮyR$r1V0͸-mx=z9.{x"k B@6!zHĀrr^慎\bafdt1c"i(0 xg&c]:*KY0f{ eQ\LUXx]cF f!a Hh> dC=C ]u7c*z Xgq%p&B2 \XX’JGP2o+,~;V[o/,4@X4넗!]o887Yu L;3~EBsn^GZUy-,XR(({:N> xOai!!"`kdBs7A(IZ!zoopۯJiF?q}m!o? 'Bl \oaQeH׿\X%O$5peKH|!6ME.e'ļ=튷W%G X'S=4Ç(-[,`({$^y7E`j}k|<7^&jf+u?HN|#*]2XaBU oJմ|b?#z5o?˩na^c >ryZ%->5>e< d x 67~ k_$> <0]`>njznn/8I08O6Vɽ'fS GF_?F.t/?n{<ϣ8_Qx`cGNpp uw›.BJ K*Nq!MºTiL4M ﷰ\Q \ཅ,r IDATހtLnhB~|'hz)U2]y$".;v?|0mm |&ry_^:s=-dv ka9 MCH>G6HBJ߯a+1**alIc G09!>yb 4M_Rvmzmm5͛gTf]DZJ[䞂mF „ص ܼKmaN?*})yXU>&&~']7 { 6T;9J:- k򎒊\}Ո5l;j̘:`Gp? q4LLla`"3+1rG2gOMoa5Cހ]g~~}'A.HdSP/9!>yx]:e&kkE9Ut` a& O,vZ QC-ۘ5X  )yvM uݚ~6Hϳocy=z ܖn |x&cmۗ5$>h)r'*DCmŢEܥ|:9:검j< \Um1Zlr;7bMtlJ=?/>~v.w}>x ~|AUeK #jh(7২_JLh<ȽaI:Q .#v 6ZOƄFMh뾗ru~3᱖Cu:=FI|a5Cx o,_ҡNۘT~>h><aD<ÿ @Ylc[_kny5>my?1>%^nᑅY{e\}$qk{{(#xN1Q k1M#[T7W=^ ۼ uoy ;wcaC_k}|r 7߹ אY6Rۯtc^ ק? 6`JOxگP]!u1-+PF<a>9x &g}R ص&L^ =V=H)8 VuX(jr3,OO 9Wļ.~OSxo՚E,F?wbr>=^{Mf1_u_:۰0a⠍ c1ӱo'OI`9L`>2sX1Zj0/y-0ArD7$> |0%}{͐QEbHmX} d,dNSy9Yhc)?jy11ǻ߅yJN'1Q)s yxk_M7杘cbfL<6DF6v4z}K|emqAb/B?sHA|հ۱PuعݵiW&_L.6pǀ?ʮX:6XMc>-߇CcذƄ_6< „۰;1q~}[ͩ=O},'nQ$>lǐ$ ķϰn83jZEUXx3X%ӯbk0P#}?v| ɴ0‡1cFr9^~.Lta1,C%L:Ul?~S|cޕba,c==`ޕWb䩘z {%>v#~Aۀ52pq XTuLM3ر=|CqXWXga"WaGĆw`^0w~.b^`ᖓ0/˹MDНxy&vְѭ1\ &w S qw'1;4;(즌F]{ExyOkCy:9vI{F-|2$Lync#f~3,|a#J 1f_X%oc9xi^ dv;oCzdX$$8f6\mdK]:kń^BgaGJZX>,qLk 31a'WEY݂ 25FrKݴɫօiK&s5PGV9$ st^M {kXu-慸+k~KYg@|]ȩdW3%.& zIN"ۀ)Izhi ~9GEFѩqP:5 ֻ6,y^H|f0.I$ HoF0#҈ "b$(wmry`"Ld܁% {}K|f&bI[61Γ#ӎY{y=ދ]ӿ_'pK4| |q?yo`۱d=J6фСOC0l6`NB8wa~wwR2{o8L3Ly<}| |#Noއ` ObS/N$>FNga@+D /q*ꥣ4obj} wa?~ry!.凅vonq2HW~yv$>Ci۷%'џ{Itzi£yr܏]H;l`ٯ%j\lNwc+Ǯ}gC_l`[kGsۀ)8p\ܡ0f-}=e'1] 1܋y=6&{ `J|Nț礹ѿeջ'bFH|Lw4-mr}nfA/"bQgq[F}$VTaX[\Ħ'&>Y 6SEA.F7cBVyEc<}LI۷)1_q9aI ;$4v0?c/csLl򸋀?cxKm\G L??1cbt^B9ۀ)=H1vr>bb}"J5&>aXJ2&JN~v<%0/Go&#ߏ aÒOϪ(' 1N ­z>b->}_<L܍͊{'XxAO`r?<w_\i$ s01Tqo$>&mI|6a-}X#Q~r?,lk?aB,OUǰ\``8&`| WbL_Ÿ I|Lۀ) E| |0\#ߕף.Əy=nc`gu>DŽӀ^\ޅ .NNB(OrO>Y31X(&iqa H5!5,i0_ BqXџ#G k`Lʃ&{6?`UMoļ"K8} 6_ 6&6K{8fl{1Tw#7}LIޏofIOhbI5~{(|.lʓiXE1uXb9oB/WH<%ks^~Vʣ"sSՁς}0%h8⣽+oa lۀ)N<£ !~cɉ&t܇;+1oz61%+o<I m`#TzX>&dGCZd;{< C 0|lW)1}LIO.LI8Ҙw+NRvVP_b!?6u/t*Fc: c/@? u5q!hꃦ'Dp64wO'G .6쵏%}^~XǨa鷓 [룋I0!sY6yH'[ɶ=C<#ۀ~- jn!2TTe&$&Q^`)`^0E8. ykRS^MlK!yX>ll~z5v<6sk&c:b8@㾧_ZjO7>&ۋrŚvݟʼ]혘QaItyg 6[?oV#c!Q,,AuL$^'Jlͻɽ"`_ xG$4zaU>qfUKcxkmmv%+W|M˹ kذړvMN>phc0Ȱ=[XI_&,ރ m!,LDj۽Mrwof`DU6%{p9%<`yB.YƙX:Y4£y~b#[ :X#c~U%5vH;]~>Vw{zAcz3e>%yN&]TQ >u_+sg< YfgxPДe;bh*n`1Nx='ՍX ñ`Qۀ!B:/єsVր{>{0v({>6څ~iN;@c>6i&IqZ0 +4BQCXk`aQQDdR(;ij%h48LJ4=Lx^:d--NI!Xx7s|ecqeLL#4B**5gK(߯} K*>Q3Q5lmj2C$!ygH<qзsr*`^ 2 &@tmN>!4N (z?fe U(TQ,0">#hT& Ql|h`Qד{pb& XZmq*4uBUb-&\!v!Q+g>Ү1z.yoRc99ۆea lY8VlB0,5p;1水}rb |Th- z@tB&#DY6 E^1j6bf I61u},HxTpr=z a#Q-=IXc])+vn~͘X;noΖaz H9J8@n\6Şh =!V:ա}0'!'NCOC>m@M:cn̒{SbۀhNC|׬G,K͏qky J6sC6`bmףGI3ճ+&kcnC$V}A۷s"!Еh6ጵվ Yoq"16,&r&:#Qq8X;÷3[+†g^_Q ԇ܏bb.=;Rs8s 6@DC,Kg!Ǝ$_NA1Km̍.$C'br#=oD,6`&BZ װ z\͉iy6`N: zF mQ,T |- ͹iBkOg]6@E&ʚh*py?y>Obocqz1o>Wx@xHݾ3Vɀfe:+zPRD,|f]&v0AFy:z X:K5.*A=B<UIDATJXZ%Ӻf bD`H|c?q=e6mlDPQ4<Dj]2$>saz]#or!ᗮo@ "laO1R#A׺ DEĪۀziF^*(6@a$d>9͒G| c"$V;y>¤ۀfg-1 {zHxڑ񖝎O:!$>¥ۀ(:DzƐjğx#zFoV oVy=DhK ȗ&8uz!NmĊ.qoV$DEvaۀ<G1:Ьnmk_xCx6`I#\hyȣ*!}/="r퇍~z8@y^!E#. X2xw|h"cO, {B/UE[xF#> X"ҏoC(IG| b1kcA"vo#Xb o}$t 'u(}jRQEGGxm-D-"8$>e%r?džt.C#nz=C|\vEH|ď͎:P]9(GegEY|H0!!t|IJ: ķbfھ Q.壏E1t ۀi6@̄ ef5t\Dr2@Co'ۈQssη ZَP95ܡ~#\HxcyɨtGcHxȑcNmDFᗐmD%@ci76"PC_6jK!2biPec%n: HX*X ,QT#$ZPX:X X(s,J<  HxDbF s HxFC,-|3P'DC,1&e](kh(0YMvQ+  pķMNU.+<طd a$  a!+V]VيWU]ce$<#!XAt}tЈQHxćP(:1YbGCHx(CQiJَ9y!r(s*pn !J!.q%NCDahfZ!F χ(EɧEEɧ{nDc4$<ć(l 8zb(bޠ_3]((AQDPZ!@Cb o#4$ X: hbJvBO6 -9 !F1V[9 Pf yC蠄aD*!1,C 1# IJ"ۀ`?ecLC9C셒Ows&VTk (4EC/rzXN2Acba$>4lʧE܉$4lܝ<(491 [CexۈpBT<b4Kex($<y>ĬP'5L?z75!!fEOwsx?zHxBCQE6߷q*q&#5#χ ,4a徍 !@1/>u !χX>r9a%T:($Ģlʧ6 Ec4BxDQe7g/1 !<#! ۈ8 ?Z ,#!D("mD`h !D!$ACoGt&pF0 χz;^(#!D`!FCoGDSײ !DCAʧt·9%B2ٟ+.zX/rL>]#IBCCE f~T!*̵ !GQ}o#cz?!9;XJCCIގ= ,`-v!@Q'l(ӭ`Hx FC(CԍrFiQt!"BQ7h$(s~/du!"!Dd!@ޏe9BC46 FѝqEJ(C4+%r~tP"uF!C$]HguTa4_Q#χh>po#bY!1[ U/b C4M׷.;ع"r>#GXheuC *^*!!|FE9rǪ9B, Ѥst7@CBCB>6PX*CKXBv>ъ%Sn!HxH|$FX⩼*.R#!|CQ*"&R#!| ȑbP©pbEC@+<"Hxb!B!AޏUDCD o#DHxH|B0"$hΗU@CGCF׷V$<"8\&=9"HP[*XFDGϳBCJ׷bav6B!! mLxlyC |Qݏ8BLD2-૾3!!y>Dl bBC1|Y>1'#!y>Dlc1pB)1m7B̀."X}! y>D,| vq"y>D,$F-BC $<s"!bXGϷBxQE%(V{e۷!BxCĆ{K !ĂH|m sm"~v1 ۈC!De!bۀd !DE!beۈVC!*A+ho˅ćziBQ uWR1K(TQ |Idsuq;BQ9|`Ӻ6@H|6` 9ΫF$>D(z B,7po#!r#χX X"T?EQ;|e` o#GBC,[XXHx!@C, J<]\ !o"0ABڑ˂<mbuADLϷBAC,}DAh*hL(2:oBFQl c}!hy>IJm@d("hl} !GC,}DF߷BCC,Tj}ZcK!EC,#}DB߷BDC,#}DB߷BDCm2G|b+<b;Hx!IJm@H|!!!oGC %e|շso<bYFI8!j#!F3mbL߷"Q&ćXf oćXf?oFeGnCDߍ !Xv6@!D |!ćfBxGC,;l"0$>IJe B!B4ćB!ECb!N߷1mBH|!Q$>B(B!ćB!!BFˎʫ !D`mu<!<B}  !*"$>B(B!h!B4ćB!ECA B bumBćB!FC!"!BFB!DH|!Q$>B(B!h!B4ćB!EC!"!mBćB!FC,;k BQFC,;-!(#!BFB!DH|!Q$>B(B!h!B4ćB!EC!"!BFB!DH|eGՅ"0$>IJ"0$>B(B!h!B4ćB!EC!"!BFB!DH|!Q$>B(B!h!B4ćB!EC!"!BFB!DH|!Q$>B(B!h!B4ćB!EC!"!BFbuh6@!@CUbͷBB!h!B4ćBQmA101hJ R0p\l?~猬J|C@1<P0[P@ a (A|C`( %>1{>:lۖ=ܓ sx(@|Н C]b(H|Йj]jN|C:[%{`(AgW$>c|'@:st-@A~X\ܗ-N|Й:l BWK\'>j0OǙ +wErw0R0R:fudM|Еۖ=׉`( %>yy@aJ|C:Z6AGkŝ&>=@ak]%{`n⃮~fP[3 +qݷ]#{b~Esm۲g{y}S c<ZOɗ8tw%"^=L2l0كknc_(E|0ط!b_gC1f{``?>ڷVIENDB`././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/_static/images/logo-light-mode.png0000644000175100001660000012451715015441204025456 0ustar00runnerdockerPNG  IHDR|^=% pHYs  ~ IDATx}=Uic%_"sea2V`e74ZHH\KV"g-Ea5Bk%=Q<լ|b֘z쮍H|`2=_7/3ԩ[>}}_騻|SU1DSe 7ƬNKD%Jt0pYU*h ,<˲u4~OD%J(>,(`!(b- R%J(QD[Yͳ,+TPQUOP,ˁƘFM,/D%Jm >D8&YiE5pg&%J(QDBȲlo@! GKBM wh[.Ӥ I(QD; $NaYc\i T(h܅3cjgIxD%Jtڂ,Jwni_;.RNij:nF!rD!I4 $z13/%J(ѵk >PegY6 v@ FAȁ{!驀Ө@(QDn+C| TvtM/" |~47ZcR`>H%J(Qۍ "ҁ h%]Oi%v:ݦ9C_t AN 13զD%JҵXF\, g̱&\kYNuoZ99j9[Ku]t/w%J(ѵ>Jo*ݨ`XP|ܣCx 7%T*iO(QD]!¼  Cj:fYq?^n[#Bq@b# `aYy$(QDnG:ieY;oAp>3 5ρZF~8?<xdYVdYQ%J(ѵX>˲QNMPPgYVF+-VK8kcL+߹?fhS  qqt7K(QD4P`gѴkȲ 9v:nM/}GzC9v6K#ihD4psй (QD+$КcZ3T.8 X^fY6u7ZTchJ^crSkBbJU%J(QXF 6f>"k弖;vBWw[VIu7wXQ+  PJ5 f"G,įQye˾gӑ(QۃN|cY-]L!- 3@Xx~{$\6ڊ 8Z`M9ĝ hRYd- t 9 ʲY0MCDKgYR7.ImЗ$\{&6MZDN|Fӑc2ea, 9Y/!cFW|6 yW.p%q>$xLQe"˲Vcfjђ;WAk]%rTY3^~>{)ZЭTǔm&E(Q=IQZx.pIaN/@W%~pvֵ\;ECnYJG'4!i ]0xQGA>[%Jt.#`\ #3JDpO13|aJ<i^ C9x Q7 fśb&. xh3Tf_3eL4!bD& }+lZ5h7w朱Y_]= Z`|Э ]0Xi%J1'}U 7jj98QDgI 8fvߖ/뀔Xrڜ{-k*~x?ǂ##YbSjek&tc=Z8QlZ C@q*l!5p3㨡KزZ 9g0!~hLU3:`\>rή.tk8%$h6 ^PbE4]ccs ƛ_vs9`G} Bxg'k{0|kftZLg!,f\*9v\FA$~M^@ͬ0Q̍#%Je~QA!(Rv^+ljCܳ !XE׎r|}L8MJ]B1WkN߷\DnW F^:^7s,N+<8Yc:ރ c5FCǀGߑ<5٬~ %ށB|`&NoňNBj^5=)xN軰TQ~&x!9S'(V:yÉqQDQo;T6uDi,ޒ3jĉ1N,Sw|fbwN> 83a/>APί*r>yy@Ho垑zXx+uy}`ý!񲊮%8+oY&43⺙A tDOivL܆'N|{ 87~H#4xLYGKHsع?0r) Xa/˽Ob5 uL}+VT%ͳ.Ԅ#%dJ9*N?s\ EޭCUC=62EF!ڴ`A>ZBRi@O#VGĉ{x\*ѡgwt摭P JĮRXǰxJߨ/cAGoSiXD࢖%\G\T &' 4r V;Zr6($2`;_myŃh Ζ^[U@9T]} oALRq{AJk3t&Nx8Ό1\7R/rt΢+:y> d.9| V~xE,0qx <x 2Sa7Ux&uVcZc 7^XAXJ>WI\cdߛ F xPi7+lJlF+B?pH1.:" P=]zWʽkIJBs63T<8qۋO vferDs"3LpA_h~*rCh~q P@g(~7q~J"!>FgVȖ SBVHxN]FϺu=m$ZW8q 8jfx8A#e{9:gKʡ)5b2F Vœ #Og-<[NÙ4C =^6.H)&`AwbW3j񚑾6Ᾱ\mis8q8cvϗ8w<fF_Į vnWׇxip)?Jm$ +\Vʮ_c^#x`QI%x3 Q#@KJ?iaNdMsN>! -~ ؾ+p+I9|k ?PMJ vyDN |\БT[y ?*}쬕ŮMW_1OaSSeǣ,rkoΣN,uc%[\xߎUqj%[71E<\Uܖ1YZ++p%\:WKu5XSC*^@(QېVxջ{Dpo%Yb;ϗʹގ5| r3ތv%[TxUpzgue!ʼ΂b58>s K/;٥sw ^2m1ur[y_Feު`Tx?Sej\;`7o,Q~Zj"3ϵ:ɹ$Nxw<&P: >Ff ބp~It'Nye.F(wͣ?c:!ES _h6 ]4r^5k,s}9d 59:!~+N|>r[U;s:+U.b8Ph$G 7-ʉؕ5^caoΦx_N'N|<{Ʉd]5 #\^Vb7s+? xYpeT9g?<0hߕ_Iw2nwS7}s{%²&ͷӥB'R[1t[ݱ-@O+ʽƷo]1qepA50xMB=[w5z {"s8qσ' eA˜= %TyN>gpqGpf`fErBhz{QK,y'7]kQ"帖*%ߧbd ŌP3Qf1~t]4R^\N]9păWHJN R73N+Vl% #u8q 9~&7Z+"g@u`O^`JOftVr߉W#f]VX+yMrlT!4Ux0k=tޱ;!F+ET  x5R5RGS,+tu9. K" \j%m<ڀ+ Iڒ@^&ao3c~? f)?3uLk+SdWvzA*8aĻ K& Buk(>t:72|î>`@f™Fi褕P9$VW-p<"o GCp-!IcP;~]ƀpkzgkb|ۯL(mo-.)FR=`V*|FRVxm^Ws}} Fj?fC%q t]cPHXI8j+{c|z!tG7:#kASiI N_ 9a8V|=xrSeNNqYQx-G15D#}'9{xp%sZr6V[5m׍%tfd5`ZJmĉZd 6 =X}bXh0v [Yz x1gߋݵ_ZͥuAimz]zf*Yr]cO;jv:Nh44GWфpƔ%~%yOlt3y9 `G} G/Vb)x6xsK-yJnZˤo;`>Հm:ǃsfE5]R.a$ve/I/a"xoby/=;ɁE#Kyh-lLCV3Y!|-tv9M79Ix|R,˦FPi(yVamu:I>5*3>GW!R4ϙDiyzzG5c)EFIƻ M- D\u2H_V91SW"o(!`t$J46ڗ8*IG@D \Kx鞑r=,Gw BMX?{-GP9zI}weV밻 ?iK]r<<+A@،r\~2,3,*6x0ϲO[B`@7@`b.G&CGkln#M*PA 7rq:ڗD|dYlρyBY9~kYγ,[!%5\KvƇ3 1>^/JNObM+ch'e2l~vUޯP gO:)v^*MZ#akw-?ܡHڴ5wc.{ ܷ؁LeӦ&J$5}]~HP)v+%?{bLgpOe١MNcc{|o-TrXmX3IM,q(>:> Gp/Kl=ʩғr|l/Cҏ@eYci$leM"y,˷h@b9y3sճ5uYM|s%:$Ф,`Zu$ ۶NcV4(7[ص+~`t'Pež:T$5dΌ:~5vT, g^NͿ9Ҩ*i5PO5()/Fu)b-&yeDj,*)%~Kշ' Y@\~?,יpZp&˲ErFM44Pf:c!5#ǎ]ԙb W%vCu[f<=ֹZDZOǮT5j1ީq|IG= 8ޡg`zl[wѾ_OP>'Y.d/ @jXgӕX@Vw vf߇6}9Tb-hG!$}>F%«|fV0N,xSJׄ me}›}ft~;85 IDATy.ׁ\. ֨8<S:2A5kDc+X$^0oHSSyW+ϸV(?x*Dv"3FɨTTᅗ[tl_r}bs^ :r1A.Y>QAw)[J<$\?,7Z.5g=iCbZm3D )-,#2%gy_(Ȗt]K Ƶ\ 9{.˨E}=BqP˭{kuHݓ++_O^3<&DeO[ɹ꧍[u'1x`/䌲t8!g]ގxp+kދ_x/02tSTˇ]>"V<\8{Oy9`Z)YtHI8Y2:_6o%aqvEv*3~WO2A/pPLfDwˮ ?i +^$ j(? ΒN.V;R?p~sƆN\@;56&;gj7*j,Y^;6U<ZħŃ'`oUtGGWS *9ם@>)uX<٨Y;WI9p yS7KzKVOT/b5Po <ԉ+ 듲U+Up SDcpf5q~V7U^y_ޝ -﫳bZןO2$"XuI:JO5sn v͆! ;v ߙ߅W |-¯⌑5y۫\f}! OW nLkwk.ܞP/ Q+kGہ(~ \C.~ÛSJET75oWq~RشY?8Dmp)aF@^C?q@o"JK 4 vĉ̓'(JXM$`< SJu=d8QSn640m[E9~邰îgUDOį%Q1BC։3R+"9N .rY?=5#r\/iQ~>ś\ir6F_$~ڹ@\řxwԄKF?$.;N!BPܠFs㚞o4.`Xc5~h V`:zEvQ~sFx0QM&j9ޜX၄;׀qe6xf*\=*}uz $Ӳq6'(QnuF:RI0.BQKY.NWcs-:R[< ?M&\b}u4=(jXG7%}: WI^[#V8Uy3/Q*BqcB9sVan'Bo#V1s"(br+37xj!^7%߄ӞWrv&佄ĭ:*ږR%0mNw޼%No<so_^#_G+n8SxUؑ 3@(GP'h_}jU}U|ŸFQ vyOˉ ~otXݲX {ړWLG _tv#y.0[ş>O5r,x/+0[Ge\@6~6:q"Gkc8f#I%eOYaN j M zRyx? sr~v`#r5t578/&wS? =hpLkt}TZs xl 9t7rfY z > |w/~=ESXOg,@d-|~v Ư<;7)8sf!q(˲3?{ؔ~7s1me3),+.>1UeSƘ ˲v\gYV3+#K[Ǧ,˦| y5'1u۸2/%NXKƘl1GU̍1Qrz4=N}4ƸkB3vy+䏀o~z=AciDEO:0O |g6\q!Bfe3c "X!WgYVfYVc*cL#YgYVc:2&˲܅_22cJʫmŽ_ ρee XeYH!,u䣑e|Ie}Bi\w_"i_ՂrDi@+@]O-sIKN;'2㮣  tu Й$~a-{"13z}ܳ&D ۑdDX }; Q_V: )g! H;3NU>^/#HX'_Vn*3To}g8Z"f1[^wRf3w=lcD'Cc 2,DSp/6Z)*6Dz,*чZ|  J+| ~+8!1Wcd|/T،Cn,(3Tt]*?UQD>)G0hz&v:;#&~qHDbJf_~5HXF` B~#׍\ϱ1ŨWcpb ֡!t F>\]zMׯfZ{%j&Mhh6& rUf`_$ &$`WD}:hN$h(i>$їGh]RcUkAcZ8gQKhXLS2&˲R9~`$Bu4D4'2I߉ V²^r363lBs]bvrݥĂI]8\9cH4f We߅-ۻ>! ~ sB@򛋶fc7%10 .tpWmUXAԢudJ"#%Ծ[y*{U}~ʁA)3qSs]RXȝ/Ёf29}&I fA%C;n愎p1Pk}(j$u|˞8CSUgCM}hᨑ5X$t3!P4.3{𔐟a#wuV?9vS7kj<ʥsٵH\:;XеHoD.# 5[ct kT.k ft5 ۩+1f1$Zt@X]3&Vb&qm-[sNfF;LəgYƘB|f_kLAc|/\cMVKc\@v.ηE%: %1 C.6aLf^h{!͇2z.րQ;-z֤m `7/T>d,˲871&ĮpPRJݾӤ{l$~Ox.<4ƔnQlvOGP/\ȒB6Sy<~g[6"Ch;&PKtX0x-nsJ)[7r]?w:'R[Jkda{~N۞7OO@B'n;t}8.V5`qMWkMѻKČY- iۭ{"X'/߇5 'RWiVxKnRl1Pնvaƥh&wJKZ-vu:o-ʶ۹n *3%o5~]Y>}uLLyTZN||N>|l;ܹo42Ӈ͑־pdc9'[i ܏hg2Q-|3s,8Y9#}-G35ֹ}{w}1go K <qn]įY#3:r,#hh8dl'; rax0|b֚pnI?pLJʞp v1(F*BG`@ӷ߾"<'a3scLeYe{dY6ɲlR3Uek߅(˲㷕ܤYro7 {yƕT(Qahhs1Z; ];ɘ-GY#zA -r]5r|oT;x@//kR=5Q> ƢKGnOj46EԌ UvZ־OLă ڻe_\ ];X-k\/s6SgO&ZDL > 84 F1pfgAɛSTqՊ)5ߍ#9ٓh!ĉ'vb#ͣaquZ"AOܐ}sƃ99.Wb]r,3V> 94 ?GwA5Q_E'ۅc#sAXX)s1=p'K<q@Z$oTyoĚx<ꝅ/MA -ryNY 1xDubkU)YߚH<<`h7$ݗazzH9_XˊJr9 tr Dm9"[bszvQKL!XfJĉƙ1D,*Cc:cL5t"dF@341f9dz,W#-(~n Gc|_! ;GڎZc7Uv.oi+Όtlqc22cTƘ\*N#a1(.ǁI/>:p2D?h7t+>d M=B1Ⱥ 5 kvn^swoZ EYv1ϒ4>A\Y>S9˲:l%:4%q`CcDt _i=naU8D9 5QbNk.)>6#-V!<1G$ X4fexk?RS Ih̔Iz! :ƘV&~! J.ƛiX?{><Cgz *)&xSڬh7ƼYұ:VfenK=L%<%q@5vSAcWuG'p'R ~ 4.t< %EƘ_# '΄1c:~ێS]8eYVcmމΧ_F3-l|MO:> @#|:M=%QHV` ]"^f~w18*>ixgODi0GDEGqQg VsGJ 81z6̊C~D@e <.װ|ez` %$]x0/r\vfY6 6iSߪ.}tc]㡡p-&CNYeY!\ 7F֔X #::k?St,It>=f$eY6S &M%J rhuP'SAcγy@5 a p,T -t [Ny(*]!P)˲35ƘL\!fYs`/ߏxvm:Ozp/2q&3"eY~~y/CFK{FC8\q@D!4v.1&QaU뱔:ǪH@Mi͆1Ƙ1F/>q#5䴗K,Z7i؅MI6#ߚ*"?#R5ww6e^b5!cu1\F%T1u .(˲3¶5Pc&Nbw?| <(O*?ׄzTq6K)n҆P _Vl:'ZGxE5 4>-]2`;9^pg$WGfTiF01]nҸRs>BCPNŎ/Le3,!U6/%?aw}viH#>%:MZDm"7t뚳'vbY݅1R뉄*lYEw2,2[yJ]gv<^,ZIy%mFP?g+ILxl2Y_Խk X> ;t;;]Ok6XP&B]ؙ:8Qa~U*fM%WkP,袳U!*ahaýF횄+H{~ki~/9gS&ln0^|ZDaɱzlYO+9-gإ9;yz6v·fY-!̑FJWUkc̶jP+XC(_(Qf@,L },Y6X\4:Z"52ƒ2Ci>\k ]hT׸,*G ?>W}:4nrOS\NQ#-e4d5?}?jBWqm!u/FP7-c3tI|3k9@] &[7r[[B+Fǹp/PN7:}~9.pyTh u sa #څ;A:xӆXGc_q|_c;Vb& 83ˌxr9Qr47#/Ifk˲P6}SBYi 9c'ݽ@_75o.RQ.*Z"v$J9/z fזw:@uh@ϮSc q:G␝Ԟr.eFu\u{i^~/ARv x rm#zٖ.(yD=v+\'01#!pkd*>$p=V>%6tcq*y8$A3 TFӈWATxa$K#OOkO<UVѕkśP愚0*l`M-oǮBy>@ D6r^ 'sFqU-TxR5Īm_4{8\zo4quzZ c2,y~yOxkx,fO)hKNrkr?~6F xoV?TV ]i cJ?p֎\=ѺHX)mp~) l+*@]CZ\]"Cq;tw#tGNT*V30깅:*9_MҶs_A#wZMP{m/ gs-]`a#^FnJ{nESFimg־B3d\JeUt ?o.[7PxTŖ<2鵆=Na~Ka4k^GOc5QSI:>C,){^`iq:h_W˼v~^˺/k[&4_ms$t( dA87.nMlS'QyOaU}"gNă|p &5+åO~ ?eKt;vc:\^0ûB[7k8 CkB FuE \q!,uw pm'CRp*B<ڜ)\#8w{55KfQD*z^t%4(g\a89cȸ%!( mnfCQpʾv,o PX;BOhN~I]WR<N. ns˻ :esNw|Ҹ[#Tϸw5Q)0rRԠL%r}+q덦W;T!p_A`x֭ڝ3ʣe<ø~i..j=hì)* Q:еnnI^JUs"-DvޔuO3B C+Hwp|Z5"K­ Yw[19>XAں#P邎#X㧷>x`M%[u[A?t w*x?y\ sqz:PW;ۭu=uDH- ^#G*y4O=3t]*'r* LόL+p)k' -_LhYXs1pZԊ8;uF+}k^ a=ݫaGSx L\{oHaR. K8B3[ykEgiF q4Cw~Wh5!pZmi뚰j=؜:\ʮ#a •S@?9ҳC1~`P&xK}x0KOs/jZ[|)F_`+"'R +=r}Nqdp)简KI[G^ zl5wq{^e_'GG>̗r, q[$4Q|R Bet^m\Nq^9]  =d~/߂0{Pm+rs\l@kD 5޹UF/G$\x?(AV!>.ϽJ*֧r}XKK_4|;]6agcO?b]Sd5ca5*lIh{ 'FW`cF8ףPayN::6k8*{b}O,Ox+GzZ{ rQJ9=l?/w,К -یK\(^Z,`Z2>,S`ZObş\؇h9%agV?ЄqivZq}N|IP32'FD&)ygZ։4/QGx owƂ7bAK[~ *CQaxB74xLNWǾ`3J-&rPq›E4N !2z#Vc[a5ÂC+ġӱ 6˸V>mwLdi&QG`!6꼠fG 6Vfr5t;%o PN?!vPI<~_,!u r]]Q"Tاex͝XzX>cu@YxMz=oߊW}hΥ[Ƙɱ>eY1nk,plt3:,˜ dM1\7X!ȵ1d*~|̽\Ok=ih1\~:c#iS,0IgS Gm ['&Z-ҭVH"2A0`q'pL5< <xUOHuacLqeY6zC;tIrc|D\,b`e4*,#:2yG6#;gW0Gj F"+ w}÷`3>? CDǻ1Y>ΣKgbfwH D2$m>uƘ]:,VIsJk-$MHXetQ2޺J+Nϝ2Qjr-40,XɼGL}3?oYK/jR>3 }.ª}>+z)z[Ϟڪ;`4Yǜ/no,.)sjTIFP.c'} ḅo{V {9EBqK(sz:?x5,$.n7I&oa7y@+wʽb_>1+7CQhFP&%=NjEl}VڅAY/ex5^y0^egtw$l%;zlCCs >J)/[koH+o8%'GPcU= l{H2z 3-۠uYx:nI۱R-~}* 9.y"9=V3Ӓ~0oFQ9Ҡ #p)?T6Ne3QF O͊=!J|j@$=(YY W$ $0@ z1cPSlP!d`ȚYŬqΉfOn:uwu諸yN>WWWw]uW%Uh?,IY?=aEd'Gi!7UsQV6YC/@ǖka [FqH; #LY߶FZYb;%nɨ Փ{=sz]nEE[2 MH)~SnchoR7Uⱝ}aF{K./r;5ɨ'_/!$!aV*uP)޷9Nm^%عs9WH'Mґ{7ERM\VnHw3,o_pJN= |?D( Дp*W G8mvsPcx&1?GHJ67k~/ Lu1CI߻zZ>Yp@[;2}%/sw[YdБɊ*H!qXGhNͩ3 rM.W?O97uj&1Vx]FIvV:b 6DN[ ~lcjf`[T*Sw_#zz\~YOiX#nAHh-3E\RUlgۣ 340=&G3*l~_;wQi ` | gҤn&МSȋ+uAdUD' E#T[⦛),/C^I\܌4勾ޯTHj-SX~ieeГ񷰽-w`HmDoW?n.9}v]Tw :yw~M@f[9_IL|xL~_sG?٠`8s;8A/5~5"g  k&I2ꕱ]])%LnJ,%)Q ڷ6Zu4^/0rT?zX@{538z%Z b;񨿣T/ґsX߮vF,~m9Ss v&tzQuE+@QUI=aQCn[EQ"F+iV^K\2d퍰? ӫDa#:Yrmic`]ZFu8a=UE$ir h"[`wڵs/$/ K4~3^G@ӣPdmgh t.v=o/c&?ϣC}d @3Y튇}VG+y+Ɲ73NWcyyO ;^>\Ex])|-Ϣch[:X.Y9_I8Dcf]#rl'/ߢ9Zxgh΃SCVe&2 ɰ=2v} iul=]|sjo#~k^#Iﱞ_B\aw_zh?[b; (T@24# :}2l,$34ńC͘~M?]Mp'/"/@+"CPTh*$1Ps,%7?o]o N uȥl#}j︳^ CHǖI@Һ_O ׸o?[b;Ȱ=˰OvGhF#h&hӲA3g?xpC{|(@wu". ŬVV2zR#:Qݖ ;_n0F:2P Zv _wl L,~iCزi| [D~xy 4s4@Ϭo+$u&q/N= vl ] }8XY>Z $ɢp9eY¤fw%vDlds8ѽ/Q'&7˹+kߓmeET1^l<aѥl}/7s_F?c.FKoa~-fzX׹yl)S2^+_ ͢Ν@) K43lK4xGI=Gݠ)"`Cwŷa*>p"RE˰_hNGC笔;VvvYH[+b}YQ{D6ߴMf ތrNz{o ^ F'ZgaQ B}Փu"C+@kvK߁"YVTι%Z&/V' ]+V!$/ ?9w'm:N5k\cz|Z}?nJ.4J;#k 9#\X̒ͅW@#p* !( !!(?_ ufzXCbNbɇeg"VVm$ ='l'+DoBV8< ޯ[Ͽ 5|9d~. s=ȗXjrNL,~DӧƐ*uC]ۿƺs2km qG}nڿn{"Gu눗k]^xWy0nRvVÇL`KV:#suy }ǿkJ rN`bE{LH9HN󌰓UOȺɰ[x+Ls7<}]V/E {=@4.8r+rέꡮs0vkT{ׇ$z+-.}ʐK. Y}q"Ӊx7Y+ȱӕ἞7*|xCj]I>mpzV|CJU#4^U=r6?^`_@4н֎v#9kG\-']wc嶧kaO"{Zrwj{7|dtW+PN `y.ThpD g +D''gUgjP$2NjqO~N54[>@1c0>} >ܚ {وU\(hUѲ|>z3TINa&4ojD8 {LH^'ǥPxUoi<ޟz䃆ɑ ɴvʳNUh pDRJIq*V=g$G40&4@g{VAIݘypL)T=6YL>hhua;B,^T|x%L;4<)Tבbգ`&4:Old+`k4*O(|c©Ub xjNX܉b+Qn:ո`Ǽp^Y.co)|+}8 S #|gл:5@ꝿEFu0|KܬzDYOb[`ŪQL>\7͝1qQ!SzByyx-]K*a*NڹKRcT(<'G$ `"fBHL,~hU{} ɧQĴ.-A[|${)yN~#Bo9UDr&Ac1!\]N8 W9l;XaT&PA;|Ld+ 3^+ޖ}D>z_C9s`+òA0H~HeJ:|O>xC3G8!ץy&CSe@\_DN!c@H) dWuι9WS|<(qzEW4
9G4LɜA8kR*(ە%yݏ!GjMÕ9uF3ȾK 縱52km2/_N5ȑs 83Xe̪Gqx lI *l7ܾgjß'ॊ=[ acDndlP J;!>{JSb9E9s|ױ@~ %ZoT>2De4SF?ϱ](<]P`aTt{Ht~x5c^+UXV6̩nV>m1wCD@Tm#ϗlFw0HlT>ci NNƘn)1ꂿ[@sE{0*T^XD%dd )t&s|d[n_ zKB3R ME\qSTޟ' J*HU?|?v"Yy'n>+}WQ7`ZU=! $^D 3]2 :]#Cs uOr[PA(t!{Ъ{__i\r:!Y9{ fHJYȿ+GS9 ݷ_~qvB Q;|hZZhAIZ \てvzm{hsn[Գ3Yι~Q"Th$Br挓{|X ? O{/ϕ!TO{yF7ΤZX~`m >/0&ht*g\2P94RX,Iae齈\>Q L$V!7 |FH_C}ףPW'*G#qͽC/s}~|=Dbq^Y:ʴ_K͵֭mXN.x-v.[͇=lN 8҄+7*Hd9>9DӨZ_ߔ=!T>61O J|uH%iǴo߷ DW'2~߱m)\h>4[2,:rֶMs ;U==B3sn%,[ۮ~ 2")Mh} ͙2 B/1'òՐ?"O=S~Y0?f(Y܇o|g 5x/mHDAiV\䬎/bc=}?rॗeP(d\Ջ$ u ?!x?>BH <_u7/2Y5-ĆL>">\X;SdPU(diIG4dj!`W ڧ ;, |E !f;!$0k,*o}!w*O!$.?-o)븥Z7G~~@3TT]c#^6Õzaɝv=m)GO̖^zi tNM2A( ;ιz^! 7Ջvm(NJ!QKE@?\9cN*N:{)zܵskwuxپB?1߉k!G1_@H>WI[CӣJg&*=jYo4-iУv{<e4G gC$"qOU ;s\GsιFFgX7P!#BGʐKE;ɪb7L>v Q%=J0j8~ Ҝ㝗 h80Rr4h XU0= ?k.&c|hp{(D6橈fŝޥVj/dJE|m1hZ :Cs {4;mKP?OXrq .ԣ)1Œ'X!@dt;~c#mW%;J͢[Lg.*l3>c}|uL>pix {G)}\3/}j$b[ 4Xң1n1߉pMp/7IL>a?TNaqvgIm8.0x!GD#fs}hΚ EnQC#l#c(? IDAT-WFNpDι9lUJ6dx<#L5N%9ykhDcA+߳МREۨpGxJ;K/`K?YA)v6>7d.MUx|aޏ ~cGwtzx`յmKEӵxD-{b)'ܼw ^:Zι%%ipݪPG8o.5]~c!%/B"EXDH& aw RٙfvgRS\zUJ&btms*>j_Ef^(Bg$°ffxeaj22XW Lh~~_qL>S^sD9s*ɥ-W=+iz->(0#\4!w$Bh;@HXIZ9WxWXCNuUrOrc*N*VeiqV&1~h6t&4_D88?l$%BD#GH3v{7BrR(wvGa X9ZIe}#' $@(^3eK-qjS싱WIGH6U?~% !X!| !Ϝske^vKu!\2$ OJ;10,J<_;4#6ƅ=-?| |wh B͕kgDyR(q*ߓfҺ/c4ş{"oO`7 nuricKk TX/[|.Og&' )Tr\~[G~/?L>3d aVPvlţi̕՝>w^e Ự @Q~,{Q~őmOgôDSwѧ ^,ŀ>2~.UO{f൤XJ<2o!'k!?*4I%+&* !YyIflj;r9nZ5yv᧰ F|k^܁I<+  KJzYyk}ՉFZ$)w(U@*zn&DIIyCގaRXP#% 4=yt ۉNR؟gwն@* ة!!_ ^k}.on5d'3SWveb ѩ諸wSqSaߣ:Kz,H˵zvݠ9~=,7&'k/wX{vo`\l* πCn/\M698{j?\(m3b VqFKY*~J\+":~^{$wa >Jr*Z+yo-KJ ;!SXG:AZS[iDl5ZZМFju`p>-vL^CA3vdj{;ǁ4F:VV>SipB9U} G:ؿ*!n#$V\||B5K~V 4a xM!֐/C8Q䜋9uIL>γ:~S(\.^yx@>jFN3KHk8:<#$lv Tx\f.>jKl' E=" (38C#ܝw|kpF7o4[coX<* >;IF͝v}!V z=*D{sͥ]|//7r3وu>|2`,cp˸>/0ڒH<:#QB˰ߘʇ;a:&K-KC\窎AH#|`H0gdC0et=O_x[XȣǙd#:G۲ιB;~:.悔phyL&;+kռs3D=Ry:4eChbR )W2)~/qT;VHgS&4`S L`k|=1=#$o;É)ș'Oϥ>^0uSr)w`IܗS*ev"6(ӭ &+-<p9ƻ><Վ)1Y}`rL%<Ijo רIFۦ9f&vF3uRz”C X9ŠU<-#Ľ'(i걜b]uJ = KrumۻĎSsc't|\! ?9jʑ8K=x2gh0s&Ky>ci,]=B CI.v\[=11t1vJ#zuL>4ZCa)2`j( gw6 L> P+r6>hг)6IzML>1Is^X]qTϰዘ 3[jVX|@>`S9rV"G[4,;ĩ$y"zX9( |G$ b TK*zAL>3ع MS䐉Nif3lc1׎gurJbc8yB;ĔSfK[JJ|kjJw|OiЇ&.R( |H@}nˁ.PGi1QipG}LBF$N~1_JGxι\&{H33{L;Wk.40[&#cѯw8Hv}Jz'ï)Q{tgL>z6:LOޏ6[&&#sy=`zWKL-M'||K;#{&9`Q-쮣EDWac|%x=38BW?># ΩԎzu+CC/KػvK,ai AkqOE.`@yiiӯr]a}"ɇR;ڭO~H^籂>C|sұtq뤼3+z|=>>pXCW_+H(ճz~Ȕofxv4=CsnG>\=q-|M; ]5GB<{ﴃaC_sy+ cV?U"z[Tǜ]pe;H4"m+6Q1DG֯e$rJmJOann;}T%^{0;N-]̳\h(| _\)Nl^^hkiP|Igl l{$bmz- #X0icx YZ^ʇ!8ϼv97rR: Pr^ C&p8xKvک_np9*x<21aDSv ?vWzFڕKV=hL> k>|Ǎ7JsOH{睲':]l*QLZ K}x^;T0110~^q=ra8hhg OG3\ht|h hGX }O;&kRʇq~ nv&kR# K̗0Ͱv.G4& #s~QQ&2IDHS0A; zILLUj0A 96\8&s{$g>LDdz^z `95vPi@'Bh1H|^뷐%L>$wq$GI)p #]8إ3K$/3&k|$JLXF =;=&i뗩18FF1H]F;:':3p #qv|-diȵ "3>cYc8Yhy a1vD l0d0cxG08@SJj;!ι;39^)bi@s|eL)|LqX'IcaL<(I|Lsnv}Et)ܞLIbcrc@"s9x)J ⩷Geq2<uT&$Jʵ0,NR]xP|LzvFreA~ι9ia&ƫ3(r(0M UobaypK&'_Xl>ZJd$CMG7&`ă& ia'2u7)sΕ>֎&4YL>nl>kp˜swx|1Ln\W ǀ;`{1[ sm֎V?Si;ՉZ;" |ܶ\;cXQGy|8 Y2 `& 񌖽x̧mk\EK+0h{păcir6PhBd]O;ABf,]]>s(p=q* &D8B^f>}1:BK7`3&Dݘ|PͧdT`GOvDV1l>aHcģa2|6x鷂3X:&ͧnT*@%8)]rBt&I~!vZxFA嬥D MO7阱Gɧ0؋HXk$0$圛G&D#b.v}ۜ2}/&D#c僮aH_R;.LhaGsΕ>y{ăPodjąͧι7x<,4QFia+4$%2ă V>W<7'Q|Px^5FQLh0#c^!)i0v?LƧB-Q:pJ).xͼ8m:QbXA;' W?*01 J+48N$ aeKځM|I &Dt3 c|Y aR*Jç䃬c# _gs) ds <2N FDgaR]L<\|y<֬GV 2ݚ5gAD`A(-_)Dt)P2s ϵ tA)a㩾GvD6&^lN_>"JOս D&R; 6 DV>(E{&D'V>(9ι{ӎF<#bJLnǍX2 1T܀G}MJ>Wh@D䃒9?{_jADRp hx %9wqL}M+,^Wh@DRǡ~=pB1"J~- c%9v轟iADMADm`僒眛\9)4 JL8k\" J;ĕ`AS^.khLL>hdGѨ|ДT$s{Ѩ|ДT$AvF䃦:#1ɐ#G8䃈F䃦 !vDt{|T$nJ;pȅT.49ι q$r!"|&DMQ@*v1)b8#"RÞ$7þęMH +4U0왉ibASanH*` 䃦ja1IW1nbAS"lJDژ|ДOA&"uL>hxODd2V>vq:&D "R䃦;Z""|dy9İMݣvp(1h` g7%" |Ѩ|ݎg&DDd:8䃦GDD0 ""Q1 vDD""""""""""""۱`AtK6L>hdL>hTL>hTL>hTL>hTL>hTL>nF;""oc "|Ș|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|i@DDۘ|k@DDۘ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ|Ѩ^;8Ҏӎ`A.|v!""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ""Q1 ιL;""Ms^;""䃦N;""v̴ "|ݒvDD""""""L;""vdL>hdL>hTL>h8)AL>h87L>hdL>hX "2MGX+L>n ADMs;Y""|TqxL;""&De*䃦.f1 -3|TADd*|ti@D趼yc s{6V>nsn6&49ZvDtۘ|L""Ø|Ѩ|VHL;CD|Ѩ|Ѩ|Ѩ|Ѩ|ݞ'1 =k1)h`+DMF;Þ|*&49J;V1zQvDDL>hU!"Md?ha3vDD1 9w|J9 gM ڱ(ze&Dd 4@3HFyj-Ya2 xM*+&DdYι̝f,'ܾQ2RIENDB`././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7555206 asdf_coordinates_schemas-0.4.0/docs/_templates/0000755000175100001660000000000015015441215021213 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7625206 asdf_coordinates_schemas-0.4.0/docs/_templates/autosummary/0000755000175100001660000000000015015441215023601 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/_templates/autosummary/base.rst0000644000175100001660000000037315015441204025246 0ustar00runnerdocker{% extends "autosummary_core/base.rst" %} {# The template this is inherited from is in astropy/sphinx/ext/templates/autosummary_core. If you want to modify this template, it is strongly recommended that you still inherit from the astropy template. #} ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/_templates/autosummary/class.rst0000644000175100001660000000037415015441204025442 0ustar00runnerdocker{% extends "autosummary_core/class.rst" %} {# The template this is inherited from is in astropy/sphinx/ext/templates/autosummary_core. If you want to modify this template, it is strongly recommended that you still inherit from the astropy template. #} ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/_templates/autosummary/module.rst0000644000175100001660000000037515015441204025623 0ustar00runnerdocker{% extends "autosummary_core/module.rst" %} {# The template this is inherited from is in astropy/sphinx/ext/templates/autosummary_core. If you want to modify this template, it is strongly recommended that you still inherit from the astropy template. #} ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/changes.rst0000644000175100001660000000010415015441204021211 0ustar00runnerdocker.. _change_log: Change Log ========== .. include:: ../CHANGES.rst ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/conf.py0000644000175100001660000001437315015441204020363 0ustar00runnerdockerimport datetime import os import sys from pathlib import Path # Ensure documentation examples are determinstically random. import numpy import tomli from pkg_resources import get_distribution try: numpy.random.seed(int(os.environ["SOURCE_DATE_EPOCH"])) except KeyError: pass try: from sphinx_astropy.conf.v1 import * # noqa except ImportError: print("ERROR: the documentation requires the sphinx-astropy package to be installed") sys.exit(1) # Get configuration information from `pyproject.toml` with open(Path(__file__).parent.parent / "pyproject.toml", "rb") as configuration_file: conf = tomli.load(configuration_file) configuration = conf["project"] # -- General configuration ---------------------------------------------------- project = configuration["name"] author = f"{configuration['authors'][0]['name']} <{configuration['authors'][0]['email']}>" copyright = f"{datetime.datetime.now().year}, {author}" release = get_distribution(configuration["name"]).version # The short X.Y version version = ".".join(release.split(".")[:2]) # If your documentation needs a minimal Sphinx version, state it here. # needs_sphinx = '1.2' intersphinx_mapping["pypa-packaging"] = ("https://packaging.python.org/en/latest/", None) # noqa intersphinx_mapping["asdf-astropy"] = ("https://asdf-astropy.readthedocs.io/en/latest/", None) # noqa intersphinx_mapping["pytest"] = ("https://docs.pytest.org/en/latest/", None) # noqa subprojects = { # main project "asdf-website": ("https://www.asdf-format.org/en/latest", None), # other subprojects "asdf": ("https://www.asdf-format.org/projects/asdf/en/stable/", None), "asdf-standard": ("https://asdf-standard.readthedocs.io/en/latest/", None), "asdf-transform-schemas": ("https://www.asdf-format.org/projects/asdf-transform-schemas/en/latest/", None), "asdf-wcs-schemas": ("https://www.asdf-format.org/projects/asdf-wcs-schemas/en/latest/", None), } intersphinx_mapping.update(subprojects) # noqa # Adds a global navigation in the topbar - consistent across subprojects globalnavlinks = { "ASDF Projects": "https://www.asdf-format.org", "Tutorials": "https://www.asdf-format.org/en/latest/tutorials/index.html", "Community": "https://www.asdf-format.org/en/latest/community/index.html", } topbanner = "" for text, link in globalnavlinks.items(): topbanner += f"
{text}" # To perform a Sphinx version check that needs to be more specific than # major.minor, call `check_sphinx_version("x.y.z")` here. # check_sphinx_version("1.2.1") # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns.append("_templates") # noqa # This is added to the end of RST files - a good place to put substitutions to # be used globally. rst_epilog += """""" # noqa # -- Options for HTML output --------------------------------------------------- # A NOTE ON HTML THEMES # The global astropy configuration uses a custom theme, 'bootstrap-astropy', # which is installed along with astropy. A different theme can be used or # the options for this theme can be modified by overriding some of the # variables set in the global configuration. The variables set in the # global configuration are listed below, commented out. # Add any paths that contain custom themes here, relative to this directory. # To use a different custom theme, add the directory containing the theme. # html_theme_path = [] # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. To override the custom theme, set this to the # name of a builtin theme or the name of a custom theme in html_theme_path. html_theme = "furo" html_static_path = ["_static"] # Custom sidebar templates, maps document names to template names. # Override default settings from sphinx_asdf / sphinx_astropy (incompatible with furo) html_sidebars = {} # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. html_favicon = "_static/images/favicon.ico" html_logo = "" html_theme_options = { "light_logo": "images/logo-light-mode.png", "dark_logo": "images/logo-dark-mode.png", "announcement": topbanner, } pygments_style = "monokai" # NB Dark style pygments is furo-specific at this time pygments_dark_style = "monokai" # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. # html_last_updated_fmt = '' # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". html_title = f"{project.replace('_', ' ')} v{release}" # Output file base name for HTML help builder. htmlhelp_basename = project + "doc" # Render inheritance diagrams in SVG graphviz_output_format = "svg" graphviz_dot_args = [ "-Nfontsize=10", "-Nfontname=Helvetica Neue, Helvetica, Arial, sans-serif", "-Efontsize=10", "-Efontname=Helvetica Neue, Helvetica, Arial, sans-serif", "-Gbgcolor=white", "-Gfontsize=10", "-Gfontname=Helvetica Neue, Helvetica, Arial, sans-serif", ] # -- Options for LaTeX output -------------------------------------------------- # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [("index", project + ".tex", project + " Documentation", author, "manual")] latex_logo = "_static/images/logo-light-mode.png" # -- Options for manual page output -------------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [("index", project.lower(), project + " Documentation", [author], 1)] sys.path.insert(0, os.path.join(os.path.abspath(os.path.dirname("__file__")), "sphinxext")) extensions += ["sphinx_asdf", "sphinx.ext.intersphinx", "sphinx.ext.extlinks"] # noqa # -- sphinx_asdf configuration --------------------------------------------- # Top-level directory containing ASDF schemas (relative to current directory) asdf_schema_path = "../resources" # This is the prefix common to all schema IDs in this repository asdf_schema_standard_prefix = "schemas" def setup(app): app.add_css_file("custom.css") ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/contributing.rst0000644000175100001660000000032315015441204022313 0ustar00runnerdocker.. _contributing: Contributing ============ We welcome feedback and contributions of all kinds. Contributions of code, documentation, or general feedback are all appreciated. .. include:: ../CONTRIBUTING.rst ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/coordinates.rst0000644000175100001660000000041415015441204022117 0ustar00runnerdocker.. _coordinates-schemas: Coordinates Schemas =================== The current ``coordinates`` schemas: .. asdf-autoschemas:: angle-1.0.0 earthlocation-1.0.0 latitude-1.0.0 longitude-1.0.0 representation-1.0.0 skycoord-1.0.0 spectralcoord-1.0.0 ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/frames.rst0000644000175100001660000000056615015441204021072 0ustar00runnerdocker.. _frame-schemas: Frame Schemas ============= The current ``frame`` schemas: .. asdf-autoschemas:: frames/baseframe-1.0.0 frames/cirs-1.0.0 frames/fk4-1.0.0 frames/fk4noeterms-1.0.0 frames/fk5-1.0.0 frames/galactic-1.0.0 frames/galactocentric-1.0.0 frames/gcrs-1.0.0 frames/icrs-1.1.0 frames/itrs-1.0.0 frames/precessedgeocentric-1.0.0 ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/index.rst0000644000175100001660000000235715015441204020724 0ustar00runnerdocker.. _asdf-coordinates-schemas: ************************ ASDF Coordinates Schemas ************************ The ASDF Coordinates Schemas define a set of schemas for serializing the astronomical coordinate systems defined by :ref:`astropy.coordinates ` for the ASDF file format. These schemas are based upon the schemas in the :ref:`ASDF Standard ` and are packaged for use by the :ref:`ASDF ` library. .. note:: This is only a schema package, to use these schemas to serialize astropy coordinates, one must install the :ref:`asdf-astropy ` package. Included Resources ================== The following are listings of all the schemas provided by this package for ASDF. .. note:: Typically, schemas are used in ASDF via their tag, which can be found in the manifest. When using a schema in ASDF it is recommended that you use the tag instead of a direct reference to the schema. Moreover, when doing so make sure you are using the correct manifest version. .. toctree:: :maxdepth: 1 coordinates.rst frames.rst legacy.rst manifests.rst Developer Resources =================== .. toctree:: :maxdepth: 1 contributing.rst changes.rst ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/legacy.rst0000644000175100001660000000017515015441204021055 0ustar00runnerdocker.. _legacy-schemas: Legacy Schemas ============== Legacy versions of schemas: .. asdf-autoschemas:: frames/icrs-1.0.0 ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/make.bat0000644000175100001660000001064115015441204020463 0ustar00runnerdocker@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^` where ^ is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Astropy.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Astropy.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/docs/manifests.rst0000644000175100001660000000041715015441204021601 0ustar00runnerdocker.. _manifests: Manifests ========= The ASDF tags (described by schemas) available under each ASDF coordinates schemas versions are all described by a single manifest document for that version. .. asdf-autoschemas:: :standard_prefix: manifests coordinates-1.0.0 ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/pyproject.toml0000644000175100001660000000417015015441204021042 0ustar00runnerdocker[project] name = 'asdf_coordinates_schemas' description = 'ASDF schemas for coordinates' readme = 'README.md' requires-python = '>=3.9' license-files = ['LICENSE'] authors = [{ name = 'The ASDF Developers', email = 'help@stsci.edu' }] classifiers = [ 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Astronomy', ] dependencies = [ 'asdf >= 2.12.1', 'asdf-standard >= 1.1.0', ] dynamic = ['version'] [project.optional-dependencies] docs = [ 'tomli', 'sphinx', 'sphinx-asdf >= 0.1.3', 'sphinx-astropy', 'astropy >= 5.0.4', 'graphviz', 'matplotlib', 'docutils', 'furo', ] test = [ 'pytest', 'asdf-astropy >= 0.2.0' ] [project.urls] 'tracker' = 'https://github.com/asdf-format/asdf-coordinates-schemas/issues' 'documentation' = 'https://www.asdf-format.org/projects/asdf-coordinates-schemas/en/latest/' 'repository' = 'https://github.com/asdf-format/asdf-coordinates-schemas' [project.entry-points] 'asdf.resource_mappings' = { asdf_coordinates_schemas = 'asdf_coordinates_schemas.integration:get_resource_mappings' } [build-system] requires = [ "setuptools>77", "setuptools_scm[toml]>=3.4", "wheel" ] build-backend = "setuptools.build_meta" [tool.setuptools_scm] write_to = "src/asdf_coordinates_schemas/_version.py" [tool.setuptools] packages = ["asdf_coordinates_schemas", "asdf_coordinates_schemas.resources"] [tool.setuptools.package-data] "asdf_coordinates_schemas.resources" = ["resources/**/*.yaml"] [tool.setuptools.package-dir] '' = "src" "asdf_coordinates_schemas.resources" = "resources" [tool.pytest.ini_options] asdf_schema_root = 'resources/schemas' asdf_schema_tests_enabled = 'true' asdf_schema_ignore_unrecognized_tag = 'true' testpaths = """ tests resources """ addopts = '--color=yes' [tool.black] line-length = 120 force-exclude = ''' ^/( ( \.eggs | \.git | \.pytest_cache | \.tox | build | dist )/ ) ''' [tool.isort] profile = "black" filter_files = true line_length = 120 ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7555206 asdf_coordinates_schemas-0.4.0/resources/0000755000175100001660000000000015015441215020140 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7635205 asdf_coordinates_schemas-0.4.0/resources/manifests/0000755000175100001660000000000015015441215022131 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/manifests/coordinates-1.0.0.yaml0000644000175100001660000001155315015441204025764 0ustar00runnerdockerid: asdf://asdf-format.org/astronomy/coordinates/manifests/coordinates-1.0.0 extension_uri: asdf://asdf-format.org/astronomy/coordinates/extensions/coordinates-1.0.0 title: Coordinates extension 1.0.0 description: |- A set of tags for serializing coordinates. tags: - tag_uri: tag:astropy.org:astropy/coordinates/angle-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/angle-1.0.0 title: Represents an Angle. description: |- This object represents a subtype of Quantity which has units equivalent to radians or degrees. - tag_uri: tag:astropy.org:astropy/coordinates/earthlocation-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/earthlocation-1.0.0 title: Represents EarthLocation objects from astropy. description: |- Location on the Earth. - tag_uri: tag:astropy.org:astropy/coordinates/frames/baseframe-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.0.0 title: Represents a coordinate frame object from astropy description: |- This schema is designed to be extended by other schemas to restrict the allowable frame_attributes. - tag_uri: tag:astropy.org:astropy/coordinates/frames/cirs-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/cirs-1.0.0 title: Represents a CIRS coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/fk4-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/fk4-1.0.0 title: Represents a FK4 coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/fk4noeterms-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/fk4noeterms-1.0.0 title: Represents a FK4NoETerms coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/fk5-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/fk5-1.0.0 title: Represents a FK5 coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/galactic-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/galactic-1.0.0 title: Represents an Galactic coordinate object from astropy. - tag_uri: tag:astropy.org:astropy/coordinates/frames/galactocentric-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/galactocentric-1.0.0 title: Represents an galactocentric coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/gcrs-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/gcrs-1.0.0 title: Represents a GCRS coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/icrs-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/icrs-1.0.0 title: Represents an ICRS coordinate object from astropy description: |- This object represents the right ascension (RA) and declination of an ICRS coordinate or frame. The ICRS class contains additional fields that may be useful to add here in the future. - tag_uri: tag:astropy.org:astropy/coordinates/frames/icrs-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/icrs-1.1.0 title: Represents an ICRS coordinate object from astropy. - tag_uri: tag:astropy.org:astropy/coordinates/frames/itrs-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/itrs-1.0.0 title: Represents a ITRS coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/precessedgeocentric-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/precessedgeocentric-1.0.0 title: Represents a PrecessedGeocentric coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/latitude-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/latitude-1.0.0 title: Represents latitude-like angles. description: |- Represents latitude-like angle(s) which must be in the range -90 to +90 deg. - tag_uri: tag:astropy.org:astropy/coordinates/longitude-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/longitude-1.0.0 title: Represents longitude-like angles. description: |- Longitude-like angle(s) which are wrapped within a contiguous 360 degree range. - tag_uri: tag:astropy.org:astropy/coordinates/representation-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/representation-1.0.0 title: Representation of points or differentials in two or three dimensional space. description: |- Representation of points or differentials in two or three dimensional space. - tag_uri: tag:astropy.org:astropy/coordinates/skycoord-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/skycoord-1.0.0 title: Represents a SkyCoord object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/spectralcoord-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/spectralcoord-1.0.0 title: Represents a SpectralCoord object from astropy ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/manifests/coordinates-1.1.0.yaml0000644000175100001660000001071215015441204025761 0ustar00runnerdockerid: asdf://asdf-format.org/astronomy/coordinates/manifests/coordinates-1.1.0 extension_uri: asdf://asdf-format.org/astronomy/coordinates/extensions/coordinates-1.1.0 title: Coordinates extension 1.1.0 description: |- A set of tags for serializing coordinates. tags: - tag_uri: tag:astropy.org:astropy/coordinates/angle-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/angle-1.1.0 title: Represents an Angle. description: |- This object represents a subtype of Quantity which has units equivalent to radians or degrees. - tag_uri: tag:astropy.org:astropy/coordinates/earthlocation-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/earthlocation-1.1.0 title: Represents EarthLocation objects from astropy. description: |- Location on the Earth. - tag_uri: tag:astropy.org:astropy/coordinates/frames/baseframe-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.1.0 title: Represents a coordinate frame object from astropy description: |- This schema is designed to be extended by other schemas to restrict the allowable frame_attributes. - tag_uri: tag:astropy.org:astropy/coordinates/frames/cirs-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/cirs-1.1.0 title: Represents a CIRS coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/fk4-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/fk4-1.1.0 title: Represents a FK4 coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/fk4noeterms-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/fk4noeterms-1.1.0 title: Represents a FK4NoETerms coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/fk5-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/fk5-1.1.0 title: Represents a FK5 coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/galactic-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/galactic-1.1.0 title: Represents an Galactic coordinate object from astropy. - tag_uri: tag:astropy.org:astropy/coordinates/frames/galactocentric-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/galactocentric-1.1.0 title: Represents an galactocentric coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/gcrs-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/gcrs-1.1.0 title: Represents a GCRS coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/icrs-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/icrs-1.1.0 title: Represents an ICRS coordinate object from astropy. - tag_uri: tag:astropy.org:astropy/coordinates/frames/itrs-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/itrs-1.1.0 title: Represents a ITRS coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/precessedgeocentric-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/precessedgeocentric-1.1.0 title: Represents a PrecessedGeocentric coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/latitude-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/latitude-1.1.0 title: Represents latitude-like angles. description: |- Represents latitude-like angle(s) which must be in the range -90 to +90 deg. - tag_uri: tag:astropy.org:astropy/coordinates/longitude-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/longitude-1.1.0 title: Represents longitude-like angles. description: |- Longitude-like angle(s) which are wrapped within a contiguous 360 degree range. - tag_uri: tag:astropy.org:astropy/coordinates/representation-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/representation-1.1.0 title: Representation of points or differentials in two or three dimensional space. description: |- Representation of points or differentials in two or three dimensional space. - tag_uri: tag:astropy.org:astropy/coordinates/skycoord-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/skycoord-1.0.0 title: Represents a SkyCoord object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/spectralcoord-1.1.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/spectralcoord-1.1.0 title: Represents a SpectralCoord object from astropy ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/manifests/coordinates-1.2.0.yaml0000644000175100001660000001070415015441204025763 0ustar00runnerdockerid: asdf://asdf-format.org/astronomy/coordinates/manifests/coordinates-1.2.0 extension_uri: asdf://asdf-format.org/astronomy/coordinates/extensions/coordinates-1.2.0 title: Coordinates extension description: |- A set of tags for serializing coordinates. tags: - tag_uri: tag:astropy.org:astropy/coordinates/angle-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/angle-1.2.0 title: Represents an Angle. description: |- This object represents a subtype of Quantity which has units equivalent to radians or degrees. - tag_uri: tag:astropy.org:astropy/coordinates/earthlocation-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/earthlocation-1.2.0 title: Represents EarthLocation objects from astropy. description: |- Location on the Earth. - tag_uri: tag:astropy.org:astropy/coordinates/frames/baseframe-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.2.0 title: Represents a coordinate frame object from astropy description: |- This schema is designed to be extended by other schemas to restrict the allowable frame_attributes. - tag_uri: tag:astropy.org:astropy/coordinates/frames/cirs-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/cirs-1.2.0 title: Represents a CIRS coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/fk4-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/fk4-1.2.0 title: Represents a FK4 coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/fk4noeterms-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/fk4noeterms-1.2.0 title: Represents a FK4NoETerms coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/fk5-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/fk5-1.2.0 title: Represents a FK5 coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/galactic-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/galactic-1.2.0 title: Represents an Galactic coordinate object from astropy. - tag_uri: tag:astropy.org:astropy/coordinates/frames/galactocentric-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/galactocentric-1.2.0 title: Represents an galactocentric coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/gcrs-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/gcrs-1.2.0 title: Represents a GCRS coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/icrs-1.3.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/icrs-1.3.0 title: Represents an ICRS coordinate object from astropy. - tag_uri: tag:astropy.org:astropy/coordinates/frames/itrs-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/itrs-1.2.0 title: Represents a ITRS coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/frames/precessedgeocentric-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/frames/precessedgeocentric-1.2.0 title: Represents a PrecessedGeocentric coordinate object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/latitude-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/latitude-1.2.0 title: Represents latitude-like angles. description: |- Represents latitude-like angle(s) which must be in the range -90 to +90 deg. - tag_uri: tag:astropy.org:astropy/coordinates/longitude-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/longitude-1.2.0 title: Represents longitude-like angles. description: |- Longitude-like angle(s) which are wrapped within a contiguous 360 degree range. - tag_uri: tag:astropy.org:astropy/coordinates/representation-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/representation-1.2.0 title: Representation of points or differentials in two or three dimensional space. description: |- Representation of points or differentials in two or three dimensional space. - tag_uri: tag:astropy.org:astropy/coordinates/skycoord-1.0.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/skycoord-1.0.0 title: Represents a SkyCoord object from astropy - tag_uri: tag:astropy.org:astropy/coordinates/spectralcoord-1.2.0 schema_uri: http://astropy.org/schemas/astropy/coordinates/spectralcoord-1.2.0 title: Represents a SpectralCoord object from astropy ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7665205 asdf_coordinates_schemas-0.4.0/resources/schemas/0000755000175100001660000000000015015441215021563 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/angle-1.0.0.yaml0000644000175100001660000000162615015441204024172 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/angle-1.0.0" title: | Represents an Angle. # TODO: Is there any restriction on the range of values? The next # version of the schema should make this explicit. description: This object represents a subtype of Quantity which has units equivalent to radians or degrees. examples: - - An Angle object in Degrees - | ! unit: !unit/unit-1.0.0 deg value: 10.0 type: object properties: value: description: | A vector of one or more values anyOf: - type: number - $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.0.0" unit: description: | The unit corresponding to the values $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" required: [value, unit] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/angle-1.1.0.yaml0000644000175100001660000000166015015441204024171 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/angle-1.1.0" title: | Represents an Angle. # TODO: Is there any restriction on the range of values? The next # version of the schema should make this explicit. description: This object represents a subtype of Quantity which has units equivalent to radians or degrees. examples: - - An Angle object in Degrees - asdf-standard-1.6.0 - | ! unit: !unit/unit-1.0.0 deg value: 10.0 type: object properties: value: description: | A vector of one or more values anyOf: - type: number - $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.1.0" unit: description: | The unit corresponding to the values $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" required: [value, unit] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/angle-1.2.0.yaml0000644000175100001660000000173115015441204024171 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/angle-1.2.0" title: | Represents an Angle. # TODO: Is there any restriction on the range of values? The next # version of the schema should make this explicit. description: This object represents a subtype of Quantity which has units equivalent to radians or degrees. examples: - - An Angle object in Degrees - asdf-standard-1.6.0 - | ! unit: !unit/unit-1.0.0 deg value: 10.0 type: object properties: value: description: | A vector of one or more values anyOf: - type: number - tag: "tag:stsci.edu:asdf/core/ndarray-1.*" unit: description: | The unit corresponding to the values anyOf: - tag: "tag:stsci.edu:asdf/unit/unit-1.*" - tag: "tag:astropy.org:astropy/units/unit-1.*" required: [value, unit] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/earthlocation-1.0.0.yaml0000644000175100001660000000162615015441204025740 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/earthlocation-1.0.0" title: | Represents EarthLocation objects from astropy. description: | Location on the Earth. type: object properties: x: description: | X component of location in geocentric representation $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" y: description: | Y component of location in geocentric representation $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" z: description: | Z component of location in geocentric representation $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" ellipsoid: description: | Reference ellipsoid that is used when representing geodetic coordinates. type: string enum: [WGS84, GRS80, WGS72] required: [x, y, z] additionalProperties: False ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/earthlocation-1.1.0.yaml0000644000175100001660000000162615015441204025741 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/earthlocation-1.1.0" title: | Represents EarthLocation objects from astropy. description: | Location on the Earth. type: object properties: x: description: | X component of location in geocentric representation $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" y: description: | Y component of location in geocentric representation $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" z: description: | Z component of location in geocentric representation $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" ellipsoid: description: | Reference ellipsoid that is used when representing geodetic coordinates. type: string enum: [WGS84, GRS80, WGS72] required: [x, y, z] additionalProperties: False ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/earthlocation-1.2.0.yaml0000644000175100001660000000155415015441204025742 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/earthlocation-1.2.0" title: | Represents EarthLocation objects from astropy. description: | Location on the Earth. type: object properties: x: description: | X component of location in geocentric representation tag: "tag:stsci.edu:asdf/unit/quantity-1.*" y: description: | Y component of location in geocentric representation tag: "tag:stsci.edu:asdf/unit/quantity-1.*" z: description: | Z component of location in geocentric representation tag: "tag:stsci.edu:asdf/unit/quantity-1.*" ellipsoid: description: | Reference ellipsoid that is used when representing geodetic coordinates. type: string enum: [WGS84, GRS80, WGS72] required: [x, y, z] additionalProperties: False ... ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7725205 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/0000755000175100001660000000000015015441215023040 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/baseframe-1.0.0.yaml0000644000175100001660000000121715015441204026302 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.0.0" title: | Represents a coordinate frame object from astropy description: | This schema is designed to be extended by other schemas to restrict the allowable frame_attributes. type: object properties: data: description: | The representation object holding any data associated with the frame. $ref: "../representation-1.0.0" frame_attributes: description: | Attributes on the coordinate frame. type: object additionalProperties: false required: [frame_attributes] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/baseframe-1.1.0.yaml0000644000175100001660000000121715015441204026303 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.1.0" title: | Represents a coordinate frame object from astropy description: | This schema is designed to be extended by other schemas to restrict the allowable frame_attributes. type: object properties: data: description: | The representation object holding any data associated with the frame. $ref: "../representation-1.1.0" frame_attributes: description: | Attributes on the coordinate frame. type: object additionalProperties: false required: [frame_attributes] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/baseframe-1.2.0.yaml0000644000175100001660000000125515015441204026306 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.2.0" title: | Represents a coordinate frame object from astropy description: | This schema is designed to be extended by other schemas to restrict the allowable frame_attributes. type: object properties: data: description: | The representation object holding any data associated with the frame. tag: "tag:astropy.org:astropy/coordinates/representation-1.*" frame_attributes: description: | Attributes on the coordinate frame. type: object additionalProperties: false required: [frame_attributes] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/cirs-1.0.0.yaml0000644000175100001660000000267615015441204025327 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/cirs-1.0.0" title: | Represents a CIRS coordinate object from astropy examples: - - A CIRS frame without data - asdf-standard-1.5.0 - | ! frame_attributes: obstime: !time/time-1.1.0 {scale: tai, value: B1950.000} - - A CIRS frame with data - asdf-standard-1.5.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: obstime: !time/time-1.1.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.0.0 - properties: frame_attributes: type: object properties: obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" required: [obstime] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/cirs-1.1.0.yaml0000644000175100001660000000267615015441204025330 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/cirs-1.1.0" title: | Represents a CIRS coordinate object from astropy examples: - - A CIRS frame without data - asdf-standard-1.6.0 - | ! frame_attributes: obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} - - A CIRS frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.1.0 - properties: frame_attributes: type: object properties: obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" required: [obstime] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/cirs-1.2.0.yaml0000644000175100001660000000266015015441204025322 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/cirs-1.2.0" title: | Represents a CIRS coordinate object from astropy examples: - - A CIRS frame without data - asdf-standard-1.6.0 - | ! frame_attributes: obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} - - A CIRS frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.2.0 - properties: frame_attributes: type: object properties: obstime: tag: "tag:stsci.edu:asdf/time/time-1.*" required: [obstime] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/fk4-1.0.0.yaml0000644000175100001660000000322715015441204025044 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/fk4-1.0.0" title: | Represents a FK4 coordinate object from astropy examples: - - A FK4 frame without data - asdf-standard-1.5.0 - | ! frame_attributes: equinox: !time/time-1.1.0 {scale: tai, value: B1950.000} obstime: !time/time-1.1.0 {scale: tai, value: B1950.000} - - A FK4 frame with data - asdf-standard-1.5.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: equinox: !time/time-1.1.0 {scale: tai, value: B1950.000} obstime: !time/time-1.1.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.0.0 - properties: frame_attributes: type: object properties: equinox: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" required: [equinox] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/fk4-1.1.0.yaml0000644000175100001660000000322715015441204025045 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/fk4-1.1.0" title: | Represents a FK4 coordinate object from astropy examples: - - A FK4 frame without data - asdf-standard-1.6.0 - | ! frame_attributes: equinox: !time/time-1.2.0 {scale: tai, value: B1950.000} obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} - - A FK4 frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: equinox: !time/time-1.2.0 {scale: tai, value: B1950.000} obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.1.0 - properties: frame_attributes: type: object properties: equinox: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" required: [equinox] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/fk4-1.2.0.yaml0000644000175100001660000000317315015441204025046 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/fk4-1.2.0" title: | Represents a FK4 coordinate object from astropy examples: - - A FK4 frame without data - asdf-standard-1.6.0 - | ! frame_attributes: equinox: !time/time-1.2.0 {scale: tai, value: B1950.000} obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} - - A FK4 frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: equinox: !time/time-1.2.0 {scale: tai, value: B1950.000} obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.2.0 - properties: frame_attributes: type: object properties: equinox: tag: "tag:stsci.edu:asdf/time/time-1.*" obstime: tag: "tag:stsci.edu:asdf/time/time-1.*" required: [equinox] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/fk4noeterms-1.0.0.yaml0000644000175100001660000000330715015441204026620 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/fk4noeterms-1.0.0" title: | Represents a FK4NoETerms coordinate object from astropy examples: - - A FK4NoETerms frame without data - asdf-standard-1.5.0 - | ! frame_attributes: equinox: !time/time-1.1.0 {scale: tai, value: B1950.000} obstime: !time/time-1.1.0 {scale: tai, value: B1950.000} - - A FK4NoETerms frame with data - asdf-standard-1.5.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: equinox: !time/time-1.1.0 {scale: tai, value: B1950.000} obstime: !time/time-1.1.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.0.0 - properties: frame_attributes: type: object properties: equinox: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" required: [equinox] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/fk4noeterms-1.1.0.yaml0000644000175100001660000000330715015441204026621 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/fk4noeterms-1.1.0" title: | Represents a FK4NoETerms coordinate object from astropy examples: - - A FK4NoETerms frame without data - asdf-standard-1.6.0 - | ! frame_attributes: equinox: !time/time-1.2.0 {scale: tai, value: B1950.000} obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} - - A FK4NoETerms frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: equinox: !time/time-1.2.0 {scale: tai, value: B1950.000} obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.1.0 - properties: frame_attributes: type: object properties: equinox: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" required: [equinox] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/fk4noeterms-1.2.0.yaml0000644000175100001660000000325315015441204026622 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/fk4noeterms-1.2.0" title: | Represents a FK4NoETerms coordinate object from astropy examples: - - A FK4NoETerms frame without data - asdf-standard-1.6.0 - | ! frame_attributes: equinox: !time/time-1.2.0 {scale: tai, value: B1950.000} obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} - - A FK4NoETerms frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: equinox: !time/time-1.2.0 {scale: tai, value: B1950.000} obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.2.0 - properties: frame_attributes: type: object properties: equinox: tag: "tag:stsci.edu:asdf/time/time-1.*" obstime: tag: "tag:stsci.edu:asdf/time/time-1.*" required: [equinox] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/fk5-1.0.0.yaml0000644000175100001660000000255415015441204025047 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/fk5-1.0.0" title: | Represents a FK5 coordinate object from astropy examples: - - A FK5 frame without data with a custom equinox - | ! frame_attributes: {equinox: !time/time-1.1.0 '2011-01-02 00:00:00.000'} - - A FK5 frame with data - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {equinox: !time/time-1.1.0 J2000.000} allOf: - $ref: baseframe-1.0.0 - properties: frame_attributes: type: object properties: equinox: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" required: [equinox] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/fk5-1.1.0.yaml0000644000175100001660000000264015015441204025044 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/fk5-1.1.0" title: | Represents a FK5 coordinate object from astropy examples: - - A FK5 frame without data with a custom equinox - asdf-standard-1.6.0 - | ! frame_attributes: {equinox: !time/time-1.2.0 '2011-01-02 00:00:00.000'} - - A FK5 frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {equinox: !time/time-1.2.0 J2000.000} allOf: - $ref: baseframe-1.1.0 - properties: frame_attributes: type: object properties: equinox: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" required: [equinox] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/fk5-1.2.0.yaml0000644000175100001660000000262215015441204025045 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/fk5-1.2.0" title: | Represents a FK5 coordinate object from astropy examples: - - A FK5 frame without data with a custom equinox - asdf-standard-1.6.0 - | ! frame_attributes: {equinox: !time/time-1.2.0 '2011-01-02 00:00:00.000'} - - A FK5 frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {equinox: !time/time-1.2.0 J2000.000} allOf: - $ref: baseframe-1.2.0 - properties: frame_attributes: type: object properties: equinox: tag: "tag:stsci.edu:asdf/time/time-1.*" required: [equinox] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/galactic-1.0.0.yaml0000644000175100001660000000215615015441204026127 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/galactic-1.0.0" title: | Represents an Galactic coordinate object from astropy. examples: - - An Galactic frame without data - | ! frame_attributes: {} - - An Galactic frame with data - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 2.0} lon: ! unit: !unit/unit-1.0.0 deg value: 1.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {} allOf: - $ref: baseframe-1.0.0 ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/galactic-1.1.0.yaml0000644000175100001660000000224215015441204026124 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/galactic-1.1.0" title: | Represents an Galactic coordinate object from astropy. examples: - - An Galactic frame without data - asdf-standard-1.6.0 - | ! frame_attributes: {} - - An Galactic frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 2.0} lon: ! unit: !unit/unit-1.0.0 deg value: 1.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {} allOf: - $ref: baseframe-1.1.0 ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/galactic-1.2.0.yaml0000644000175100001660000000224215015441204026125 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/galactic-1.2.0" title: | Represents an Galactic coordinate object from astropy. examples: - - An Galactic frame without data - asdf-standard-1.6.0 - | ! frame_attributes: {} - - An Galactic frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 2.0} lon: ! unit: !unit/unit-1.0.0 deg value: 1.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {} allOf: - $ref: baseframe-1.2.0 ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/galactocentric-1.0.0.yaml0000644000175100001660000000455015015441204027342 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/galactocentric-1.0.0" title: | Represents an galactocentric coordinate object from astropy examples: - - A Galactocentric frame without data - asdf-standard-1.5.0 - | ! frame_attributes: galcen_coord: ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: -28.936175} lon: ! unit: !unit/unit-1.0.0 deg value: 266.4051 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {} galcen_distance: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 kpc, value: 8.3} galcen_v_sun: ! components: d_x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 km s-1, value: 11.1} d_y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 km s-1, value: 232.24} d_z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 km s-1, value: 7.25} type: CartesianDifferential roll: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 deg, value: 0.0} z_sun: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 pc, value: 27.0} allOf: - $ref: baseframe-1.0.0 - properties: frame_attributes: type: object properties: galacen_coord: $ref: "icrs-1.1.0" galcen_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" galcen_v_sun: $ref: "../representation-1.0.0" z_sun: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" roll: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" required: [galcen_coord, galcen_distance, galcen_v_sun, z_sun, roll] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/galactocentric-1.1.0.yaml0000644000175100001660000000455015015441204027343 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/galactocentric-1.1.0" title: | Represents an galactocentric coordinate object from astropy examples: - - A Galactocentric frame without data - asdf-standard-1.6.0 - | ! frame_attributes: galcen_coord: ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: -28.936175} lon: ! unit: !unit/unit-1.0.0 deg value: 266.4051 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {} galcen_distance: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 kpc, value: 8.3} galcen_v_sun: ! components: d_x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 11.1} d_y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 232.24} d_z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 7.25} type: CartesianDifferential roll: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 deg, value: 0.0} z_sun: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 pc, value: 27.0} allOf: - $ref: baseframe-1.1.0 - properties: frame_attributes: type: object properties: galacen_coord: $ref: "icrs-1.2.0" galcen_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" galcen_v_sun: $ref: "../representation-1.1.0" z_sun: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" roll: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" required: [galcen_coord, galcen_distance, galcen_v_sun, z_sun, roll] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/galactocentric-1.2.0.yaml0000644000175100001660000000460415015441204027344 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/galactocentric-1.2.0" title: | Represents an galactocentric coordinate object from astropy examples: - - A Galactocentric frame without data - asdf-standard-1.6.0 - | ! frame_attributes: galcen_coord: ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: -28.936175} lon: ! unit: !unit/unit-1.0.0 deg value: 266.4051 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {} galcen_distance: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 kpc, value: 8.3} galcen_v_sun: ! components: d_x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 11.1} d_y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 232.24} d_z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 7.25} type: CartesianDifferential roll: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 deg, value: 0.0} z_sun: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 pc, value: 27.0} allOf: - $ref: baseframe-1.2.0 - properties: frame_attributes: type: object properties: galacen_coord: tag: "tag:astropy.org:astropy/coordinates/frames/icrs-1.*" galcen_distance: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" galcen_v_sun: tag: "tag:astropy.org:astropy/coordinates/representation-1.*" z_sun: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" roll: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" required: [galcen_coord, galcen_distance, galcen_v_sun, z_sun, roll] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/gcrs-1.0.0.yaml0000644000175100001660000000610315015441204025312 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/gcrs-1.0.0" title: | Represents a GCRS coordinate object from astropy examples: - - A GCRS frame without data - asdf-standard-1.5.0 - | ! frame_attributes: obsgeoloc: ! components: x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.1.0 J2000.000 - - A GCRS frame with data - asdf-standard-1.5.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 2.0} lon: ! unit: !unit/unit-1.0.0 deg value: 1.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: obsgeoloc: ! components: x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.1.0 J2000.000 allOf: - $ref: baseframe-1.0.0 - properties: frame_attributes: type: object properties: obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" obsgeoloc: $ref: "../representation-1.0.0" obsgeovel: $ref: "../representation-1.0.0" ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/gcrs-1.1.0.yaml0000644000175100001660000000610315015441204025313 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/gcrs-1.1.0" title: | Represents a GCRS coordinate object from astropy examples: - - A GCRS frame without data - asdf-standard-1.6.0 - | ! frame_attributes: obsgeoloc: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.2.0 J2000.000 - - A GCRS frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 2.0} lon: ! unit: !unit/unit-1.0.0 deg value: 1.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: obsgeoloc: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.2.0 J2000.000 allOf: - $ref: baseframe-1.1.0 - properties: frame_attributes: type: object properties: obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" obsgeoloc: $ref: "../representation-1.1.0" obsgeovel: $ref: "../representation-1.1.0" ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/gcrs-1.2.0.yaml0000644000175100001660000000616115015441204025320 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/gcrs-1.2.0" title: | Represents a GCRS coordinate object from astropy examples: - - A GCRS frame without data - asdf-standard-1.6.0 - | ! frame_attributes: obsgeoloc: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.2.0 J2000.000 - - A GCRS frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 2.0} lon: ! unit: !unit/unit-1.0.0 deg value: 1.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: obsgeoloc: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.2.0 J2000.000 allOf: - $ref: baseframe-1.2.0 - properties: frame_attributes: type: object properties: obstime: tag: "tag:stsci.edu:asdf/time/time-1.*" obsgeoloc: tag: "tag:astropy.org:astropy/coordinates/representation-1.*" obsgeovel: tag: "tag:astropy.org:astropy/coordinates/representation-1.*" ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/icrs-1.0.0.yaml0000644000175100001660000000210215015441204025307 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/icrs-1.0.0" title: | Represents an ICRS coordinate object from astropy description: | This object represents the right ascension (RA) and declination of an ICRS coordinate or frame. The ICRS class contains additional fields that may be useful to add here in the future. type: object properties: ra: type: object description: | A longitude representing the right ascension of the ICRS coordinate properties: value: type: number unit: $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" default: deg wrap_angle: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" default: "360 deg" dec: type: object description: | A latitude representing the declination of the ICRS coordinate properties: value: type: number unit: $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" default: deg required: [ra, dec] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/icrs-1.1.0.yaml0000644000175100001660000000211215015441204025311 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/icrs-1.1.0" title: | Represents an ICRS coordinate object from astropy. examples: - - An ICRS frame without data - | ! frame_attributes: {} - - An ICRS frame with data - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {} allOf: - $ref: baseframe-1.0.0 ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/icrs-1.2.0.yaml0000644000175100001660000000217615015441204025324 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/icrs-1.2.0" title: | Represents an ICRS coordinate object from astropy. examples: - - An ICRS frame without data - asdf-standard-1.6.0 - | ! frame_attributes: {} - - An ICRS frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {} allOf: - $ref: baseframe-1.1.0 ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/icrs-1.3.0.yaml0000644000175100001660000000217615015441204025325 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/icrs-1.3.0" title: | Represents an ICRS coordinate object from astropy. examples: - - An ICRS frame without data - asdf-standard-1.6.0 - | ! frame_attributes: {} - - An ICRS frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: {} allOf: - $ref: baseframe-1.2.0 ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/itrs-1.0.0.yaml0000644000175100001660000000267615015441204025350 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/itrs-1.0.0" title: | Represents a ITRS coordinate object from astropy examples: - - A ITRS frame without data - asdf-standard-1.5.0 - | ! frame_attributes: obstime: !time/time-1.1.0 {scale: tai, value: B1950.000} - - A ITRS frame with data - asdf-standard-1.5.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: obstime: !time/time-1.1.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.0.0 - properties: frame_attributes: type: object properties: obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" required: [obstime] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/itrs-1.1.0.yaml0000644000175100001660000000267615015441204025351 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/itrs-1.1.0" title: | Represents a ITRS coordinate object from astropy examples: - - A ITRS frame without data - asdf-standard-1.6.0 - | ! frame_attributes: obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} - - A ITRS frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.1.0 - properties: frame_attributes: type: object properties: obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" required: [obstime] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/itrs-1.2.0.yaml0000644000175100001660000000266015015441204025343 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/itrs-1.2.0" title: | Represents a ITRS coordinate object from astropy examples: - - A ITRS frame without data - asdf-standard-1.6.0 - | ! frame_attributes: obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} - - A ITRS frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 120.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: obstime: !time/time-1.2.0 {scale: tai, value: B1950.000} allOf: - $ref: baseframe-1.2.0 - properties: frame_attributes: type: object properties: obstime: tag: "tag:stsci.edu:asdf/time/time-1.*" required: [obstime] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/precessedgeocentric-1.0.0.yaml0000644000175100001660000000655015015441204030402 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/precessedgeocentric-1.0.0" title: | Represents a PrecessedGeocentric coordinate object from astropy examples: - - A PrecessedGeocentric frame without data - asdf-standard-1.5.0 - | ! frame_attributes: equinox: !time/time-1.1.0 J2000.000 obsgeoloc: ! components: x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.1.0 J2000.000 - - A PrecessedGeocentric frame with data - asdf-standard-1.5.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 1.0} lon: ! unit: !unit/unit-1.0.0 deg value: 1.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: equinox: !time/time-1.1.0 J2000.000 obsgeoloc: ! components: x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.1.0 J2000.000 allOf: - $ref: baseframe-1.0.0 - properties: frame_attributes: type: object properties: equinox: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.1.0" obsgeoloc: $ref: "../representation-1.0.0" obsgeovel: $ref: "../representation-1.0.0" ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/precessedgeocentric-1.1.0.yaml0000644000175100001660000000655015015441204030403 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/precessedgeocentric-1.1.0" title: | Represents a PrecessedGeocentric coordinate object from astropy examples: - - A PrecessedGeocentric frame without data - asdf-standard-1.6.0 - | ! frame_attributes: equinox: !time/time-1.2.0 J2000.000 obsgeoloc: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.2.0 J2000.000 - - A PrecessedGeocentric frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 1.0} lon: ! unit: !unit/unit-1.0.0 deg value: 1.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: equinox: !time/time-1.2.0 J2000.000 obsgeoloc: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.2.0 J2000.000 allOf: - $ref: baseframe-1.1.0 - properties: frame_attributes: type: object properties: equinox: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" obstime: $ref: "http://stsci.edu/schemas/asdf/time/time-1.2.0" obsgeoloc: $ref: "../representation-1.1.0" obsgeovel: $ref: "../representation-1.1.0" ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/frames/precessedgeocentric-1.2.0.yaml0000644000175100001660000000661015015441204030401 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/frames/precessedgeocentric-1.2.0" title: | Represents a PrecessedGeocentric coordinate object from astropy examples: - - A PrecessedGeocentric frame without data - asdf-standard-1.6.0 - | ! frame_attributes: equinox: !time/time-1.2.0 J2000.000 obsgeoloc: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.2.0 J2000.000 - - A PrecessedGeocentric frame with data - asdf-standard-1.6.0 - | ! data: ! components: lat: ! {unit: !unit/unit-1.0.0 deg, value: 1.0} lon: ! unit: !unit/unit-1.0.0 deg value: 1.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: UnitSphericalRepresentation frame_attributes: equinox: !time/time-1.2.0 J2000.000 obsgeoloc: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m, value: 0.0} type: CartesianRepresentation obsgeovel: ! components: x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 m s-1, value: 0.0} type: CartesianRepresentation obstime: !time/time-1.2.0 J2000.000 allOf: - $ref: baseframe-1.2.0 - properties: frame_attributes: type: object properties: equinox: tag: "tag:stsci.edu:asdf/time/time-1.*" obstime: tag: "tag:stsci.edu:asdf/time/time-1.*" obsgeoloc: tag: "tag:astropy.org:astropy/coordinates/representation-1.*" obsgeovel: tag: "tag:astropy.org:astropy/coordinates/representation-1.*" ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/latitude-1.0.0.yaml0000644000175100001660000000144215015441204024713 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/latitude-1.0.0" title: | Represents latitude-like angles. description: | Represents latitude-like angle(s) which must be in the range -90 to +90 deg. examples: - - A Latitude object in Degrees - | ! unit: !unit/unit-1.0.0 deg value: 10.0 type: object properties: value: description: | A vector of one or more values anyOf: - type: number - $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.0.0" unit: description: | The unit corresponding to the values $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" required: [value, unit] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/latitude-1.1.0.yaml0000644000175100001660000000147415015441204024721 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/latitude-1.1.0" title: | Represents latitude-like angles. description: | Represents latitude-like angle(s) which must be in the range -90 to +90 deg. examples: - - A Latitude object in Degrees - asdf-standard-1.6.0 - | ! unit: !unit/unit-1.0.0 deg value: 10.0 type: object properties: value: description: | A vector of one or more values anyOf: - type: number - $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.1.0" unit: description: | The unit corresponding to the values $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" required: [value, unit] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/latitude-1.2.0.yaml0000644000175100001660000000154515015441204024721 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/latitude-1.2.0" title: | Represents latitude-like angles. description: | Represents latitude-like angle(s) which must be in the range -90 to +90 deg. examples: - - A Latitude object in Degrees - asdf-standard-1.6.0 - | ! unit: !unit/unit-1.0.0 deg value: 10.0 type: object properties: value: description: | A vector of one or more values anyOf: - type: number - tag: "tag:stsci.edu:asdf/core/ndarray-1.*" unit: description: | The unit corresponding to the values anyOf: - tag: "tag:stsci.edu:asdf/unit/unit-1.*" - tag: "tag:astropy.org:astropy/units/unit-1.*" required: [value, unit] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/longitude-1.0.0.yaml0000644000175100001660000000207115015441204025071 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/longitude-1.0.0" title: | Represents longitude-like angles. description: | Longitude-like angle(s) which are wrapped within a contiguous 360 degree range. examples: - - A Longitude object in Degrees - | ! unit: !unit/unit-1.0.0 deg value: 10.0 wrap_angle: ! unit: !unit/unit-1.0.0 deg value: 180.0 type: object properties: value: description: | A vector of one or more values anyOf: - type: number - $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.0.0" unit: description: | The unit corresponding to the values $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" wrap_angle: description: | Angle at which to wrap back to ``wrap_angle - 360 deg``. $ref: "angle-1.0.0" required: [value, unit, wrap_angle] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/longitude-1.1.0.yaml0000644000175100001660000000212315015441204025070 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/longitude-1.1.0" title: | Represents longitude-like angles. description: | Longitude-like angle(s) which are wrapped within a contiguous 360 degree range. examples: - - A Longitude object in Degrees - asdf-standard-1.6.0 - | ! unit: !unit/unit-1.0.0 deg value: 10.0 wrap_angle: ! unit: !unit/unit-1.0.0 deg value: 180.0 type: object properties: value: description: | A vector of one or more values anyOf: - type: number - $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.1.0" unit: description: | The unit corresponding to the values $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" wrap_angle: description: | Angle at which to wrap back to ``wrap_angle - 360 deg``. $ref: "angle-1.1.0" required: [value, unit, wrap_angle] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/longitude-1.2.0.yaml0000644000175100001660000000223515015441204025075 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/longitude-1.2.0" title: | Represents longitude-like angles. description: | Longitude-like angle(s) which are wrapped within a contiguous 360 degree range. examples: - - A Longitude object in Degrees - asdf-standard-1.6.0 - | ! unit: !unit/unit-1.0.0 deg value: 10.0 wrap_angle: ! unit: !unit/unit-1.0.0 deg value: 180.0 type: object properties: value: description: | A vector of one or more values anyOf: - type: number - tag: "tag:stsci.edu:asdf/core/ndarray-1.*" unit: description: | The unit corresponding to the values anyOf: - tag: "tag:stsci.edu:asdf/unit/unit-1.*" - tag: "tag:astropy.org:astropy/units/unit-1.*" wrap_angle: description: | Angle at which to wrap back to ``wrap_angle - 360 deg``. tag: "tag:astropy.org:astropy/coordinates/angle-1.*" required: [value, unit, wrap_angle] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/representation-1.0.0.yaml0000644000175100001660000001465415015441204026153 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/representation-1.0.0" title: | Representation of points or differentials in two or three dimensional space. description: | Representation of points or differentials in two or three dimensional space. examples: - - A SphericalRepresentation - asdf-standard-1.5.0 - | ! components: distance: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 AU, value: 1.0} lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 10.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: SphericalRepresentation - - A CartesianDifferential - asdf-standard-1.5.0 - | ! components: d_x: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 km s-1, value: 100.0} d_y: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 km s-1, value: 200.0} d_z: !unit/quantity-1.1.0 {unit: !unit/unit-1.0.0 km s-1, value: 3141.0} type: CartesianDifferential type: object properties: type: type: string enum: - CartesianRepresentation - SphericalRepresentation - UnitSphericalRepresentation - RadialRepresentation - PhysicsSphericalRepresentation - CylindricalRepresentation - CartesianDifferential - SphericalDifferential - UnitSphericalCosLatDifferential - UnitSphericalDifferential - SphericalCosLatDifferential - RadialDifferential - PhysicsSphericalDifferential - CylindricalDifferential components: anyOf: # CartesianRepresentation - type: object properties: x: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" y: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" z: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # SphericalRepresentation - type: object properties: lat: $ref: "latitude-1.0.0" lon: $ref: "longitude-1.0.0" distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # UnitSphericalRepresentation - type: object properties: lat: $ref: "latitude-1.0.0" lon: $ref: "longitude-1.0.0" # RadialRepresentation - type: object properties: distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # PhysicsSphericalRepresentation - type: object properties: phi: $ref: "angle-1.0.0" theta: $ref: "angle-1.0.0" r: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # CylindricalRepresentation - type: object properties: rho: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" phi: $ref: "angle-1.0.0" z: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # CartesianDifferential - type: object properties: d_x: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_y: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_z: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # SphericalDifferential - type: object properties: d_lon: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # UnitSphericalCosLatDifferential - type: object properties: d_lon_coslat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # UnitSphericalDifferential - type: object properties: d_lon: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # SphericalCosLatDifferential - type: object properties: d_lon_coslat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # SphericalDifferential - type: object properties: d_lon: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # RadialDifferential - type: object properties: d_phi: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_theta: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_r: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # PhysicsSphericalDifferential - type: object properties: d_phi: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_theta: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_r: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # RadialDifferential - type: object properties: d_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" # CylindricalDifferential - type: object properties: d_rho: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_phi: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" d_z: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.1.0" required: [type, components] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/representation-1.1.0.yaml0000644000175100001660000001465415015441204026154 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/representation-1.1.0" title: | Representation of points or differentials in two or three dimensional space. description: | Representation of points or differentials in two or three dimensional space. examples: - - A SphericalRepresentation - asdf-standard-1.6.0 - | ! components: distance: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 AU, value: 1.0} lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 10.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: SphericalRepresentation - - A CartesianDifferential - asdf-standard-1.6.0 - | ! components: d_x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 100.0} d_y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 200.0} d_z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 3141.0} type: CartesianDifferential type: object properties: type: type: string enum: - CartesianRepresentation - SphericalRepresentation - UnitSphericalRepresentation - RadialRepresentation - PhysicsSphericalRepresentation - CylindricalRepresentation - CartesianDifferential - SphericalDifferential - UnitSphericalCosLatDifferential - UnitSphericalDifferential - SphericalCosLatDifferential - RadialDifferential - PhysicsSphericalDifferential - CylindricalDifferential components: anyOf: # CartesianRepresentation - type: object properties: x: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" y: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" z: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # SphericalRepresentation - type: object properties: lat: $ref: "latitude-1.1.0" lon: $ref: "longitude-1.1.0" distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # UnitSphericalRepresentation - type: object properties: lat: $ref: "latitude-1.1.0" lon: $ref: "longitude-1.1.0" # RadialRepresentation - type: object properties: distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # PhysicsSphericalRepresentation - type: object properties: phi: $ref: "angle-1.1.0" theta: $ref: "angle-1.1.0" r: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # CylindricalRepresentation - type: object properties: rho: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" phi: $ref: "angle-1.1.0" z: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # CartesianDifferential - type: object properties: d_x: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_y: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_z: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # SphericalDifferential - type: object properties: d_lon: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # UnitSphericalCosLatDifferential - type: object properties: d_lon_coslat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # UnitSphericalDifferential - type: object properties: d_lon: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # SphericalCosLatDifferential - type: object properties: d_lon_coslat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # SphericalDifferential - type: object properties: d_lon: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_lat: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # RadialDifferential - type: object properties: d_phi: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_theta: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_r: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # PhysicsSphericalDifferential - type: object properties: d_phi: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_theta: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_r: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # RadialDifferential - type: object properties: d_distance: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" # CylindricalDifferential - type: object properties: d_rho: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_phi: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" d_z: $ref: "http://stsci.edu/schemas/asdf/unit/quantity-1.2.0" required: [type, components] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/representation-1.2.0.yaml0000644000175100001660000001426715015441204026155 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/representation-1.2.0" title: | Representation of points or differentials in two or three dimensional space. description: | Representation of points or differentials in two or three dimensional space. examples: - - A SphericalRepresentation - asdf-standard-1.6.0 - | ! components: distance: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 AU, value: 1.0} lat: ! {unit: !unit/unit-1.0.0 deg, value: 10.0} lon: ! unit: !unit/unit-1.0.0 deg value: 10.0 wrap_angle: ! {unit: !unit/unit-1.0.0 deg, value: 360.0} type: SphericalRepresentation - - A CartesianDifferential - asdf-standard-1.6.0 - | ! components: d_x: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 100.0} d_y: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 200.0} d_z: !unit/quantity-1.2.0 {unit: !unit/unit-1.0.0 km s-1, value: 3141.0} type: CartesianDifferential type: object properties: type: type: string enum: - CartesianRepresentation - SphericalRepresentation - UnitSphericalRepresentation - RadialRepresentation - PhysicsSphericalRepresentation - CylindricalRepresentation - CartesianDifferential - SphericalDifferential - UnitSphericalCosLatDifferential - UnitSphericalDifferential - SphericalCosLatDifferential - RadialDifferential - PhysicsSphericalDifferential - CylindricalDifferential components: anyOf: # CartesianRepresentation - type: object properties: x: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" y: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" z: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # SphericalRepresentation - type: object properties: lat: tag: "tag:astropy.org:astropy/coordinates/latitude-1.*" lon: tag: "tag:astropy.org:astropy/coordinates/longitude-1.*" distance: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # UnitSphericalRepresentation - type: object properties: lat: tag: "tag:astropy.org:astropy/coordinates/latitude-1.*" lon: tag: "tag:astropy.org:astropy/coordinates/longitude-1.*" # RadialRepresentation - type: object properties: distance: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # PhysicsSphericalRepresentation - type: object properties: phi: tag: "tag:astropy.org:astropy/coordinates/angle-1.*" theta: tag: "tag:astropy.org:astropy/coordinates/angle-1.*" r: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # CylindricalRepresentation - type: object properties: rho: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" phi: tag: "tag:astropy.org:astropy/coordinates/angle-1.*" z: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # CartesianDifferential - type: object properties: d_x: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_y: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_z: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # SphericalDifferential - type: object properties: d_lon: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_lat: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_distance: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # UnitSphericalCosLatDifferential - type: object properties: d_lon_coslat: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_lat: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # UnitSphericalDifferential - type: object properties: d_lon: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_lat: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # SphericalCosLatDifferential - type: object properties: d_lon_coslat: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_lat: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_distance: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # SphericalDifferential - type: object properties: d_lon: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_lat: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_distance: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # RadialDifferential - type: object properties: d_phi: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_theta: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_r: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # PhysicsSphericalDifferential - type: object properties: d_phi: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_theta: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_r: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # RadialDifferential - type: object properties: d_distance: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" # CylindricalDifferential - type: object properties: d_rho: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_phi: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" d_z: tag: "tag:stsci.edu:asdf/unit/quantity-1.*" required: [type, components] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/skycoord-1.0.0.yaml0000644000175100001660000000075415015441204024742 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/skycoord-1.0.0" title: | Represents a SkyCoord object from astropy allOf: - type: object properties: frame: description: | A string describing the kind of frame that is represented by this SkyCoord object. This value is used when reconstructing SkyCoord. type: string required: [frame] additionalProperties: true ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/spectralcoord-1.0.0.yaml0000644000175100001660000000153315015441204025745 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/spectralcoord-1.0.0" title: > Represents a SpectralCoord object from astropy type: object properties: value: description: | A vector of one or more values anyOf: - type: number - $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.0.0" unit: description: | The unit corresponding to the values $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" observer: description: | The observer frame for this coordinate $ref: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.0.0" target: description: | The target frame for this coordinate $ref: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.0.0" required: [value, unit] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/spectralcoord-1.1.0.yaml0000644000175100001660000000153315015441204025746 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/spectralcoord-1.1.0" title: > Represents a SpectralCoord object from astropy type: object properties: value: description: | A vector of one or more values anyOf: - type: number - $ref: "http://stsci.edu/schemas/asdf/core/ndarray-1.1.0" unit: description: | The unit corresponding to the values $ref: "http://stsci.edu/schemas/asdf/unit/unit-1.0.0" observer: description: | The observer frame for this coordinate $ref: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.1.0" target: description: | The target frame for this coordinate $ref: "http://astropy.org/schemas/astropy/coordinates/frames/baseframe-1.1.0" required: [value, unit] ... ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/resources/schemas/spectralcoord-1.2.0.yaml0000644000175100001660000000144615015441204025752 0ustar00runnerdocker%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://astropy.org/schemas/astropy/coordinates/spectralcoord-1.2.0" title: > Represents a SpectralCoord object from astropy type: object properties: value: description: | A vector of one or more values anyOf: - type: number - tag: "tag:stsci.edu:asdf/core/ndarray-1.*" unit: description: | The unit corresponding to the values anyOf: - tag: "tag:stsci.edu:asdf/unit/unit-1.*" - tag: "tag:astropy.org:astropy/units/unit-1.*" observer: description: | The observer frame for this coordinate $ref: "frames/baseframe-1.2.0" target: description: | The target frame for this coordinate $ref: "frames/baseframe-1.2.0" required: [value, unit] ... ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7765205 asdf_coordinates_schemas-0.4.0/setup.cfg0000644000175100001660000000004615015441215017747 0ustar00runnerdocker[egg_info] tag_build = tag_date = 0 ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7565205 asdf_coordinates_schemas-0.4.0/src/0000755000175100001660000000000015015441215016715 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7735207 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas/0000755000175100001660000000000015015441215023727 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas/__init__.py0000644000175100001660000000011015015441204026026 0ustar00runnerdockerfrom ._version import version as __version__ __all__ = ["__version__"] ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386444.0 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas/_version.py0000644000175100001660000000077715015441214026137 0ustar00runnerdocker# file generated by setuptools-scm # don't change, don't track in version control __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"] TYPE_CHECKING = False if TYPE_CHECKING: from typing import Tuple from typing import Union VERSION_TUPLE = Tuple[Union[int, str], ...] else: VERSION_TUPLE = object version: str __version__: str __version_tuple__: VERSION_TUPLE version_tuple: VERSION_TUPLE __version__ = version = '0.4.0' __version_tuple__ = version_tuple = (0, 4, 0) ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas/integration.py0000644000175100001660000000202315015441204026617 0ustar00runnerdockerimport sys from pathlib import Path if sys.version_info < (3, 9): import importlib_resources else: import importlib.resources as importlib_resources from asdf.resource import DirectoryResourceMapping import asdf_coordinates_schemas def get_resource_mappings(): resources_root = importlib_resources.files(asdf_coordinates_schemas) / "resources" if not resources_root.is_dir(): # In an editable install, the resources directory will exist off the # repository root: resources_root = Path(__file__).absolute().parent.parent.parent / "resources" if not resources_root.is_dir(): raise RuntimeError("Missing resources directory") return [ DirectoryResourceMapping( resources_root / "schemas", "http://astropy.org/schemas/astropy/coordinates/", recursive=True, ), DirectoryResourceMapping( resources_root / "manifests", "asdf://asdf-format.org/astronomy/coordinates/manifests/", ), ] ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7755206 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas.egg-info/0000755000175100001660000000000015015441215025421 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386444.0 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas.egg-info/PKG-INFO0000644000175100001660000000411315015441214026514 0ustar00runnerdockerMetadata-Version: 2.4 Name: asdf_coordinates_schemas Version: 0.4.0 Summary: ASDF schemas for coordinates Author-email: The ASDF Developers Project-URL: tracker, https://github.com/asdf-format/asdf-coordinates-schemas/issues Project-URL: documentation, https://www.asdf-format.org/projects/asdf-coordinates-schemas/en/latest/ Project-URL: repository, https://github.com/asdf-format/asdf-coordinates-schemas Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Science/Research Classifier: Topic :: Scientific/Engineering :: Astronomy Requires-Python: >=3.9 Description-Content-Type: text/markdown License-File: LICENSE Requires-Dist: asdf>=2.12.1 Requires-Dist: asdf-standard>=1.1.0 Provides-Extra: docs Requires-Dist: tomli; extra == "docs" Requires-Dist: sphinx; extra == "docs" Requires-Dist: sphinx-asdf>=0.1.3; extra == "docs" Requires-Dist: sphinx-astropy; extra == "docs" Requires-Dist: astropy>=5.0.4; extra == "docs" Requires-Dist: graphviz; extra == "docs" Requires-Dist: matplotlib; extra == "docs" Requires-Dist: docutils; extra == "docs" Requires-Dist: furo; extra == "docs" Provides-Extra: test Requires-Dist: pytest; extra == "test" Requires-Dist: asdf-astropy>=0.2.0; extra == "test" Dynamic: license-file # asdf-coordinates-schemas ![CI](https://github.com/asdf-format/asdf-coordinates-schemas/workflows/CI/badge.svg) [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) This package provides ASDF schemas for validating coordinates tags. Users should not need to install this directly; instead, install an implementation package such as asdf-astropy, which includes asdf-coordinates-schemas as a dependency. ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386444.0 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas.egg-info/SOURCES.txt0000644000175100001660000000705015015441214027306 0ustar00runnerdocker.flake8 .gitattributes .gitignore .pre-commit-config.yaml .readthedocs.yml CHANGES.rst CONTRIBUTING.rst LICENSE README.md bandit.yaml pyproject.toml tox.ini .github/dependabot.yml .github/workflows/changelog.yml .github/workflows/ci.yml .github/workflows/publish-to-pypi.yml docs/Makefile docs/changes.rst docs/conf.py docs/contributing.rst docs/coordinates.rst docs/frames.rst docs/index.rst docs/legacy.rst docs/make.bat docs/manifests.rst docs/_static/custom.css docs/_static/images/favicon.ico docs/_static/images/logo-dark-mode.png docs/_static/images/logo-light-mode.png docs/_templates/autosummary/base.rst docs/_templates/autosummary/class.rst docs/_templates/autosummary/module.rst resources/manifests/coordinates-1.0.0.yaml resources/manifests/coordinates-1.1.0.yaml resources/manifests/coordinates-1.2.0.yaml resources/schemas/angle-1.0.0.yaml resources/schemas/angle-1.1.0.yaml resources/schemas/angle-1.2.0.yaml resources/schemas/earthlocation-1.0.0.yaml resources/schemas/earthlocation-1.1.0.yaml resources/schemas/earthlocation-1.2.0.yaml resources/schemas/latitude-1.0.0.yaml resources/schemas/latitude-1.1.0.yaml resources/schemas/latitude-1.2.0.yaml resources/schemas/longitude-1.0.0.yaml resources/schemas/longitude-1.1.0.yaml resources/schemas/longitude-1.2.0.yaml resources/schemas/representation-1.0.0.yaml resources/schemas/representation-1.1.0.yaml resources/schemas/representation-1.2.0.yaml resources/schemas/skycoord-1.0.0.yaml resources/schemas/spectralcoord-1.0.0.yaml resources/schemas/spectralcoord-1.1.0.yaml resources/schemas/spectralcoord-1.2.0.yaml resources/schemas/frames/baseframe-1.0.0.yaml resources/schemas/frames/baseframe-1.1.0.yaml resources/schemas/frames/baseframe-1.2.0.yaml resources/schemas/frames/cirs-1.0.0.yaml resources/schemas/frames/cirs-1.1.0.yaml resources/schemas/frames/cirs-1.2.0.yaml resources/schemas/frames/fk4-1.0.0.yaml resources/schemas/frames/fk4-1.1.0.yaml resources/schemas/frames/fk4-1.2.0.yaml resources/schemas/frames/fk4noeterms-1.0.0.yaml resources/schemas/frames/fk4noeterms-1.1.0.yaml resources/schemas/frames/fk4noeterms-1.2.0.yaml resources/schemas/frames/fk5-1.0.0.yaml resources/schemas/frames/fk5-1.1.0.yaml resources/schemas/frames/fk5-1.2.0.yaml resources/schemas/frames/galactic-1.0.0.yaml resources/schemas/frames/galactic-1.1.0.yaml resources/schemas/frames/galactic-1.2.0.yaml resources/schemas/frames/galactocentric-1.0.0.yaml resources/schemas/frames/galactocentric-1.1.0.yaml resources/schemas/frames/galactocentric-1.2.0.yaml resources/schemas/frames/gcrs-1.0.0.yaml resources/schemas/frames/gcrs-1.1.0.yaml resources/schemas/frames/gcrs-1.2.0.yaml resources/schemas/frames/icrs-1.0.0.yaml resources/schemas/frames/icrs-1.1.0.yaml resources/schemas/frames/icrs-1.2.0.yaml resources/schemas/frames/icrs-1.3.0.yaml resources/schemas/frames/itrs-1.0.0.yaml resources/schemas/frames/itrs-1.1.0.yaml resources/schemas/frames/itrs-1.2.0.yaml resources/schemas/frames/precessedgeocentric-1.0.0.yaml resources/schemas/frames/precessedgeocentric-1.1.0.yaml resources/schemas/frames/precessedgeocentric-1.2.0.yaml src/asdf_coordinates_schemas/__init__.py src/asdf_coordinates_schemas/_version.py src/asdf_coordinates_schemas/integration.py src/asdf_coordinates_schemas.egg-info/PKG-INFO src/asdf_coordinates_schemas.egg-info/SOURCES.txt src/asdf_coordinates_schemas.egg-info/dependency_links.txt src/asdf_coordinates_schemas.egg-info/entry_points.txt src/asdf_coordinates_schemas.egg-info/requires.txt src/asdf_coordinates_schemas.egg-info/top_level.txt tests/conftest.py tests/test_integration.py tests/test_manifests.py tests/test_schemas.py././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386444.0 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas.egg-info/dependency_links.txt0000644000175100001660000000000115015441214031466 0ustar00runnerdocker ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386444.0 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas.egg-info/entry_points.txt0000644000175100001660000000015715015441214030721 0ustar00runnerdocker[asdf.resource_mappings] asdf_coordinates_schemas = asdf_coordinates_schemas.integration:get_resource_mappings ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386444.0 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas.egg-info/requires.txt0000644000175100001660000000025515015441214030022 0ustar00runnerdockerasdf>=2.12.1 asdf-standard>=1.1.0 [docs] tomli sphinx sphinx-asdf>=0.1.3 sphinx-astropy astropy>=5.0.4 graphviz matplotlib docutils furo [test] pytest asdf-astropy>=0.2.0 ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386444.0 asdf_coordinates_schemas-0.4.0/src/asdf_coordinates_schemas.egg-info/top_level.txt0000644000175100001660000000003115015441214030144 0ustar00runnerdockerasdf_coordinates_schemas ././@PaxHeader0000000000000000000000000000003400000000000010212 xustar0028 mtime=1748386444.7745206 asdf_coordinates_schemas-0.4.0/tests/0000755000175100001660000000000015015441215017270 5ustar00runnerdocker././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/tests/conftest.py0000644000175100001660000000335415015441204021472 0ustar00runnerdockerfrom pathlib import Path import asdf import pytest import yaml def get_latest_schema_uris(resource_paths): by_base_uri = {} for resource_path in resource_paths: # skip manifests if "manifests" in resource_path.parts: continue # get uri from schema id with resource_path.open("rb") as f: schema_uri = yaml.safe_load(f.read())["id"] # get base uri and version base, version = schema_uri.rsplit("-", maxsplit=1) if base not in by_base_uri: by_base_uri[base] = {} by_base_uri[base][version] = schema_uri return [by_version[max(by_version.keys())] for _, by_version in by_base_uri.items()] RESOURCE_PATHS = list((Path(__file__).parent.parent / "resources").glob("**/*.yaml")) MANIFEST_PATHS = [p for p in RESOURCE_PATHS if "manifests" in p.parts] SCHEMA_PATHS = [p for p in RESOURCE_PATHS if "schemas" in p.parts] LATEST_SCHEMA_URIS = get_latest_schema_uris(RESOURCE_PATHS) @pytest.fixture(params=RESOURCE_PATHS) def resource_path(request): yield request.param @pytest.fixture(params=SCHEMA_PATHS) def schema_path(request): yield request.param @pytest.fixture(params=MANIFEST_PATHS) def manifest_path(request): yield request.param @pytest.fixture def latest_manifest_path(): yield max(MANIFEST_PATHS) @pytest.fixture def latest_manifest(latest_manifest_path): with latest_manifest_path.open("rb") as f: yield yaml.safe_load(f.read()) @pytest.fixture def latest_schema_uris(): yield LATEST_SCHEMA_URIS @pytest.fixture(params=LATEST_SCHEMA_URIS) def latest_schema_uri(request): yield request.param @pytest.fixture() def latest_schema(latest_schema_uri): yield asdf.schema.load_schema(latest_schema_uri) ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/tests/test_integration.py0000644000175100001660000000104515015441204023222 0ustar00runnerdocker""" Test that the asdf library integration is working properly. """ import asdf import yaml def test_manifest_integration(manifest_path): content = manifest_path.read_bytes() manifest = yaml.safe_load(content) asdf_content = asdf.get_config().resource_manager[manifest["id"]] assert asdf_content == content def test_schema_integration(schema_path): content = schema_path.read_bytes() schema = yaml.safe_load(content) asdf_content = asdf.get_config().resource_manager[schema["id"]] assert asdf_content == content ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/tests/test_manifests.py0000644000175100001660000000246415015441204022676 0ustar00runnerdocker""" Test that the manifest file is correctly structured and refers to schemas that exist. """ import asdf import yaml def test_manifest(manifest_path): content = manifest_path.read_bytes() manifest = yaml.safe_load(content) schema = asdf.schema.load_schema("asdf://asdf-format.org/core/schemas/extension_manifest-1.0.0") asdf.schema.validate(manifest, schema=schema) for tag in manifest.get("tags", []): # Check that the schema exists: if "schema_uri" in tag: assert tag["schema_uri"] in asdf.get_config().resource_manager def test_manifest_tag_order(latest_manifest): """Tags should be sorted alphabetically""" tag_uris = [tag_def["tag_uri"] for tag_def in latest_manifest["tags"]] assert tag_uris == sorted(tag_uris) def test_tags_match_schemas(latest_manifest): """Check that tag and schema versions match""" for tag_def in latest_manifest["tags"]: tag_uri = tag_def["tag_uri"] schema_uri = tag_def["schema_uri"] assert tag_uri.split(":")[-1] in schema_uri def test_uses_latest_schemas(latest_manifest, latest_schema_uris): """The latest manifest should always use the latest schemas""" for tag_def in latest_manifest["tags"]: schema_uri = tag_def["schema_uri"] assert schema_uri in latest_schema_uris ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/tests/test_schemas.py0000644000175100001660000000442415015441204022326 0ustar00runnerdockerimport re import asdf import pytest ALLOWED_REFS = ( r"^baseframe-[0-9.]+$", r"^frames/baseframe-[0-9.]+$", r"^#.*$", ) UNIT_TAGS = {"tag:stsci.edu:asdf/unit/unit-1.*", "tag:astropy.org:astropy/units/unit-1.*"} def test_only_known_refs(latest_schema): """Latest schemas should only contain specific refs""" for node in asdf.treeutil.iter_tree(latest_schema): if not isinstance(node, dict): continue if "$ref" in node: uri = node["$ref"] if not any(re.match(pattern, uri) for pattern in ALLOWED_REFS): assert False, f"Unexpected $ref: {uri}" def test_wildcard_tags(latest_schema): """Latest schemas should only contain wildcarded tags""" for node in asdf.treeutil.iter_tree(latest_schema): if not isinstance(node, dict): continue if "tag" in node: pattern = node["tag"] if "*" not in pattern: assert False, f"tag pattern missing wildcard: {pattern}" @pytest.mark.parametrize("tag_set", (UNIT_TAGS,)) def test_tags_in_allof(latest_schema, tag_set): """ Test that some tags (unit) where the tag used depends on the value are always referenced in an allof containing all tags. """ # we walk_and_modify here to use postorder def callback(node): if not isinstance(node, dict): return node if "anyOf" in node: # check if this anyof includes a tag in the set seen = set() for sub in node["anyOf"]: if not isinstance(sub, dict): continue if "tag" not in sub: continue if sub["tag"] in tag_set: seen.add(sub["tag"]) if seen: # if a tag was found, check both were found assert seen == tag_set, f"anyOf {node} missing: {tag_set - seen}" # remove the anyof so the code below can check for tags not in the anyof return {k: v for k, v in node.items() if k != "anyOf"} if tag := node.get("tag"): assert tag not in tag_set, f"tag {tag} must be in an anyOf with: {tag_set}" return node asdf.treeutil.walk_and_modify(latest_schema, callback, postorder=False) ././@PaxHeader0000000000000000000000000000002600000000000010213 xustar0022 mtime=1748386436.0 asdf_coordinates_schemas-0.4.0/tox.ini0000644000175100001660000000125315015441204017440 0ustar00runnerdocker[tox] envlist= py39,py310,py311,py312,py313,twine,black,flake8,bandit isolated_build = True [testenv] extras= test commands= pytest [testenv:twine] deps= twine commands= twine check {work_dir}/{package_env}/dist/* [testenv:black] deps = black commands= black --check src tests [testenv:flake8] deps= flake8 commands= flake8 --count src tests [testenv:bandit] deps= bandit commands= bandit -r -ll src [testenv:codestyle] skip_install = true description = Run all style and file checks with pre-commit deps = pre-commit commands = pre-commit install-hooks pre-commit run {posargs:--color always --all-files --show-diff-on-failure}