Diego H
2 years ago
commit
828fab90d0
84 changed files with 286152 additions and 0 deletions
@ -0,0 +1,13 @@
|
||||
version: 2 |
||||
updates: |
||||
- package-ecosystem: bundler |
||||
directory: "/" |
||||
schedule: |
||||
interval: weekly |
||||
time: "04:00" |
||||
open-pull-requests-limit: 10 |
||||
versioning-strategy: increase-if-necessary |
||||
- package-ecosystem: "github-actions" |
||||
directory: "/" |
||||
schedule: |
||||
interval: "weekly" |
@ -0,0 +1,32 @@
|
||||
name: build-chulapa-gh-pages |
||||
|
||||
on: |
||||
push: |
||||
branches: |
||||
- master |
||||
- main |
||||
workflow_dispatch: |
||||
|
||||
jobs: |
||||
build-chulapa-gh-pages: |
||||
runs-on: ubuntu-latest |
||||
env: |
||||
JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
||||
steps: |
||||
- uses: actions/checkout@v3 |
||||
with: |
||||
token: ${{ secrets.GITHUB_TOKEN }} |
||||
|
||||
# Use GitHub Actions' cache to shorten build times and decrease load on servers |
||||
- uses: actions/cache@v3 |
||||
with: |
||||
path: vendor/bundle |
||||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} |
||||
restore-keys: | |
||||
${{ runner.os }}-gems- |
||||
|
||||
# Standard usage |
||||
- uses: helaili/jekyll-action@v2 |
||||
with: |
||||
token: ${{ secrets.GITHUB_TOKEN }} |
||||
target_branch: 'gh-pages' |
@ -0,0 +1,7 @@
|
||||
.Rproj.user |
||||
.Rhistory |
||||
.RData |
||||
.Ruserdata |
||||
project.Rproj |
||||
celestial_data.Rproj |
||||
src |
@ -0,0 +1,39 @@
|
||||
cff-version: 1.2.0 |
||||
message: If you use this dataset, please cite it using the preferred-citation information. |
||||
type: dataset |
||||
license: BSD-3-Clause |
||||
title: Celestial Data |
||||
abstract: The Celestial Data datasets are a collection of files on GeoJSON and GeoPackage |
||||
format representing the position of celestial objects as of J2000 epoch and CRS |
||||
WGS84. All the files are valid as per GEOS 3.9.3 and fulfils also the GeoJSON specification. |
||||
authors: |
||||
- family-names: Frohn |
||||
given-names: Olaf |
||||
- family-names: Hernangómez |
||||
given-names: Diego |
||||
orcid: https://orcid.org/0000-0001-8457-4658 |
||||
preferred-citation: |
||||
type: data |
||||
title: Celestial Data |
||||
abstract: The Celestial Data datasets are a collection of files on GeoJSON and GeoPackage |
||||
format representing the position of celestial objects as of J2000 epoch and CRS |
||||
WGS84. All the files are valid as per GEOS 3.9.3 and fulfils also the GeoJSON |
||||
specification. |
||||
authors: |
||||
- family-names: Frohn |
||||
given-names: Olaf |
||||
- family-names: Hernangómez |
||||
given-names: Diego |
||||
orcid: https://orcid.org/0000-0001-8457-4658 |
||||
url: https://dieghernan.github.io/celestial_data/ |
||||
year: '2023' |
||||
repository-code: https://github.com/dieghernan/celestial_data/tree/main/data |
||||
url: https://dieghernan.github.io/celestial_data/ |
||||
references: |
||||
- type: software |
||||
title: d3-celestial |
||||
authors: |
||||
- family-names: Frohn |
||||
given-names: Olaf |
||||
year: '2015' |
||||
url: https://github.com/ofrohn/d3-celestial/ |
@ -0,0 +1,9 @@
|
||||
source 'https://rubygems.org' |
||||
gem 'github-pages', group: :jekyll_plugins |
||||
|
||||
group :jekyll_plugins do |
||||
gem 'jekyll-algolia', '~> 1.0' |
||||
gem 'jekyll-github-metadata' |
||||
gem 'jekyll-sitemap' |
||||
gem 'jekyll-include-cache' |
||||
end |
@ -0,0 +1,28 @@
|
||||
BSD 3-Clause License |
||||
|
||||
Copyright (c) 2023, Olaf Frohn & Diego Hernangómez |
||||
|
||||
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. |
@ -0,0 +1,197 @@
|
||||
--- |
||||
output: github_document |
||||
bibliography: references.bib |
||||
link-citations: yes |
||||
nocite: '@*' |
||||
editor_options: |
||||
markdown: |
||||
wrap: 80 |
||||
--- |
||||
|
||||
# Celestial Data |
||||
|
||||
This repository contains several datasets in GeoJSON and GeoPackage format of |
||||
celestial objects as of J2000 epoch. |
||||
|
||||
The original files were provided on the [d3-celestial |
||||
plugin](https://github.com/ofrohn/d3-celestial/) [@frohn2015] under [BSD |
||||
3-Clause](https://opensource.org/licenses/BSD-3-Clause). The datasets on this |
||||
repository consists on the same data provided on [d3-celestial |
||||
plugin](https://github.com/ofrohn/d3-celestial/) processed with the **R** |
||||
package **sf** [@pebesma2018] to ensure its validity: |
||||
|
||||
- The spatial data objects are bounded to $[-180, -90, 180, 90]$. |
||||
|
||||
- Date is provided on WGS84 - World Geodetic System 1984 |
||||
([EPSG:4326](https://epsg.io/4326)). |
||||
|
||||
- All geometries valid as per |
||||
[ST_IsValid](https://postgis.net/docs/ST_IsValid.html) (GEOS **3.9.3**). |
||||
|
||||
## Distribution |
||||
|
||||
The data can be accessed from several API endpoints: |
||||
|
||||
``` html |
||||
|
||||
<!-- From GitHub --> |
||||
https://raw.githubusercontent.com/dieghernan/celestial_data/main/data/mw.min.geojson |
||||
|
||||
<!-- From the Website --> |
||||
https://dieghernan.github.io/celestial_data/data/mw.min.geojson |
||||
|
||||
<!-- From jsDelivr --> |
||||
https://cdn.jsdelivr.net/gh/dieghernan/celestial_data@main/data/mw.min.geojson |
||||
``` |
||||
|
||||
## Data |
||||
|
||||
Data is provided in GeoJSON (*.geojson) and GeoPackage (*.gpkg) format. |
||||
Additionally, for GeoJSON formats a minified version (\*.min.geojson) is also |
||||
provided. |
||||
|
||||
The data source can be found on |
||||
<https://github.com/dieghernan/celestial_data/tree/main/data>. |
||||
|
||||
<details> |
||||
|
||||
<summary>List of files provided</summary> |
||||
|
||||
- `asterisms.geojson` |
||||
- `asterisms.gpkg` |
||||
- `asterisms.min.geojson` |
||||
- `constellations.borders.cn.geojson` |
||||
- `constellations.borders.cn.gpkg` |
||||
- `constellations.borders.cn.min.geojson` |
||||
- `constellations.borders.geojson` |
||||
- `constellations.borders.gpkg` |
||||
- `constellations.borders.min.geojson` |
||||
- `constellations.borders.min.min.geojson` |
||||
- `constellations.bounds.cn.geojson` |
||||
- `constellations.bounds.cn.gpkg` |
||||
- `constellations.bounds.cn.min.geojson` |
||||
- `constellations.bounds.geojson` |
||||
- `constellations.bounds.gpkg` |
||||
- `constellations.bounds.min.geojson` |
||||
- `constellations.cn.csv` |
||||
- `constellations.cn.geojson` |
||||
- `constellations.cn.gpkg` |
||||
- `constellations.cn.min.geojson` |
||||
- `constellations.csv` |
||||
- `constellations.geojson` |
||||
- `constellations.gpkg` |
||||
- `constellations.lines.cn.geojson` |
||||
- `constellations.lines.cn.gpkg` |
||||
- `constellations.lines.cn.min.geojson` |
||||
- `constellations.lines.geojson` |
||||
- `constellations.lines.gpkg` |
||||
- `constellations.lines.min.geojson` |
||||
- `constellations.min.geojson` |
||||
- `dsonames.cn.csv` |
||||
- `dsonames.csv` |
||||
- `dsos.14.geojson` |
||||
- `dsos.14.gpkg` |
||||
- `dsos.14.min.geojson` |
||||
- `dsos.20.geojson` |
||||
- `dsos.20.gpkg` |
||||
- `dsos.20.min.geojson` |
||||
- `dsos.6.geojson` |
||||
- `dsos.6.gpkg` |
||||
- `dsos.6.min.geojson` |
||||
- `dsos.bright.geojson` |
||||
- `dsos.bright.gpkg` |
||||
- `dsos.bright.min.geojson` |
||||
- `lg.geojson` |
||||
- `lg.gpkg` |
||||
- `lg.min.geojson` |
||||
- `messier.geojson` |
||||
- `messier.gpkg` |
||||
- `messier.min.geojson` |
||||
- `mw.geojson` |
||||
- `mw.gpkg` |
||||
- `mw.min.geojson` |
||||
- `starnames.cn.csv` |
||||
- `starnames.csv` |
||||
- `stars.14.geojson` |
||||
- `stars.14.gpkg` |
||||
- `stars.14.min.geojson` |
||||
- `stars.6.geojson` |
||||
- `stars.6.gpkg` |
||||
- `stars.6.min.geojson` |
||||
- `stars.8.geojson` |
||||
- `stars.8.gpkg` |
||||
- `stars.8.min.geojson` |
||||
|
||||
</details> |
||||
|
||||
See additional details on <https://dieghernan.github.io/celestial_data/data> |
||||
|
||||
## Original data sources |
||||
|
||||
For completion, we add the original data sources cited by [@frohn2015]: |
||||
|
||||
- `asterisms.*`: |
||||
|
||||
- [Saguaro Astronomy Club |
||||
Asterisms](http://saguaroastro.org/sac-downloads/) |
||||
|
||||
- `constellations.*` and `constellations.lines.*`: |
||||
|
||||
- [IAU Constellation |
||||
page](http://www.iau.org/public/themes/constellations/), name positions |
||||
and some line modifications by Olaf Frohn, , names in other languages |
||||
from |
||||
[Wikipedia](https://wiki2.org/en/88_modern_constellations_in_different_languages) |
||||
|
||||
- `constellations.bounds.*`: |
||||
|
||||
- Davenhall, A. C., and S. K. Leggett. 1989. "Catalogue of Constellation |
||||
Boundary Data." <http://vizier.cfa.harvard.edu/viz-bin/Cat?VI/49>. |
||||
|
||||
- Traditional Chinese Constellations & Stars: `constellations.cn.*`, |
||||
`constellations.bounds.cn.*`, `constellations.lines.cn.*`, `starnames.cn.*`: |
||||
|
||||
- [Stellarium skycultures |
||||
data](https://github.com/Stellarium/stellarium/tree/master/skycultures/chinese) |
||||
|
||||
- `dsos.6.*`, `dsos.8.^*`, `dsos.14.*`: |
||||
|
||||
- [Saguaro Astronomy Club Database version |
||||
8.1](http://www.saguaroastro.org/sac-downloads/) |
||||
|
||||
- `dsos.bright.*` |
||||
|
||||
- Frohn, Olaf. 2015. "d3-celestial." |
||||
<https://github.com/ofrohn/d3-celestial/>. |
||||
|
||||
- `messier.*` Messier objects: |
||||
|
||||
- [Messier Objects with Data](http://messier.seds.org/data.html), |
||||
H.Frommert/seds.org |
||||
|
||||
- `lg.*` Local group and Milky Way halo: |
||||
|
||||
- Frohn, Olaf. 2015. "d3-celestial." |
||||
<https://github.com/ofrohn/d3-celestial/>, from different sources: see |
||||
[blog](http://armchairastronautics.blogspot.com/p/milky-way-halo.html), |
||||
[pages](http://armchairastronautics.blogspot.com/p/local-group.html) for |
||||
complete list. |
||||
|
||||
- `stars.6.*`, `stars.8.^*`, `stars.14.*`: |
||||
|
||||
- Anderson, E., and Ch. Francis. 2012. "XHIP: An Extended Hipparcos |
||||
Compilation." *Astronomy Letters* 38 (5): 331--46. |
||||
<https://doi.org/10.1134/S1063773712050015>. |
||||
|
||||
- `starnames.*` Star names and designations: |
||||
|
||||
- Kostjuk, N. D. 2002. "VizieR Online Data Catalog: |
||||
HD-DM-GC-HR-HIP-Bayer-Flamsteed Cross Index." *VizieR Online Data |
||||
Catalog*, IV/27A. |
||||
<https://ui.adsabs.harvard.edu/abs/2004yCat.4027....0K>. |
||||
|
||||
- [Stellarium skycultures |
||||
data](https://github.com/Stellarium/stellarium/tree/master/po/stellarium-skycultures) |
||||
for star name translations |
||||
|
||||
## References |
@ -0,0 +1,273 @@
|
||||
|
||||
# Celestial Data |
||||
|
||||
This repository contains several datasets in GeoJSON and GeoPackage |
||||
format of celestial objects as of J2000 epoch. |
||||
|
||||
The original files were provided on the [d3-celestial |
||||
plugin](https://github.com/ofrohn/d3-celestial/) ([Frohn |
||||
2015](#ref-frohn2015)) under [BSD |
||||
3-Clause](https://opensource.org/licenses/BSD-3-Clause). The datasets on |
||||
this repository consists on the same data provided on [d3-celestial |
||||
plugin](https://github.com/ofrohn/d3-celestial/) processed with the |
||||
**R** package **sf** ([Pebesma 2018](#ref-pebesma2018)) to ensure its |
||||
validity: |
||||
|
||||
- The spatial data objects are bounded to $[-180, -90, 180, 90]$. |
||||
|
||||
- Date is provided on WGS84 - World Geodetic System 1984 |
||||
([EPSG:4326](https://epsg.io/4326)). |
||||
|
||||
- All geometries valid as per |
||||
[ST_IsValid](https://postgis.net/docs/ST_IsValid.html) (GEOS |
||||
**3.9.3**). |
||||
|
||||
## Distribution |
||||
|
||||
The data can be accessed from several API endpoints: |
||||
|
||||
``` html |
||||
|
||||
<!-- From GitHub --> |
||||
https://raw.githubusercontent.com/dieghernan/celestial_data/main/data/mw.min.geojson |
||||
|
||||
<!-- From the Website --> |
||||
https://dieghernan.github.io/celestial_data/data/mw.min.geojson |
||||
|
||||
<!-- From jsDelivr --> |
||||
https://cdn.jsdelivr.net/gh/dieghernan/celestial_data@main/data/mw.min.geojson |
||||
``` |
||||
|
||||
## Data |
||||
|
||||
Data is provided in GeoJSON (*.geojson) and GeoPackage (*.gpkg) format. |
||||
Additionally, for GeoJSON formats a minified version (\*.min.geojson) is |
||||
also provided. |
||||
|
||||
The data source can be found on |
||||
<https://github.com/dieghernan/celestial_data/tree/main/data>. |
||||
|
||||
<details> |
||||
<summary> |
||||
List of files provided |
||||
</summary> |
||||
|
||||
- `asterisms.geojson` |
||||
- `asterisms.gpkg` |
||||
- `asterisms.min.geojson` |
||||
- `constellations.borders.cn.geojson` |
||||
- `constellations.borders.cn.gpkg` |
||||
- `constellations.borders.cn.min.geojson` |
||||
- `constellations.borders.geojson` |
||||
- `constellations.borders.gpkg` |
||||
- `constellations.borders.min.geojson` |
||||
- `constellations.borders.min.min.geojson` |
||||
- `constellations.bounds.cn.geojson` |
||||
- `constellations.bounds.cn.gpkg` |
||||
- `constellations.bounds.cn.min.geojson` |
||||
- `constellations.bounds.geojson` |
||||
- `constellations.bounds.gpkg` |
||||
- `constellations.bounds.min.geojson` |
||||
- `constellations.cn.csv` |
||||
- `constellations.cn.geojson` |
||||
- `constellations.cn.gpkg` |
||||
- `constellations.cn.min.geojson` |
||||
- `constellations.csv` |
||||
- `constellations.geojson` |
||||
- `constellations.gpkg` |
||||
- `constellations.lines.cn.geojson` |
||||
- `constellations.lines.cn.gpkg` |
||||
- `constellations.lines.cn.min.geojson` |
||||
- `constellations.lines.geojson` |
||||
- `constellations.lines.gpkg` |
||||
- `constellations.lines.min.geojson` |
||||
- `constellations.min.geojson` |
||||
- `dsonames.cn.csv` |
||||
- `dsonames.csv` |
||||
- `dsos.14.geojson` |
||||
- `dsos.14.gpkg` |
||||
- `dsos.14.min.geojson` |
||||
- `dsos.20.geojson` |
||||
- `dsos.20.gpkg` |
||||
- `dsos.20.min.geojson` |
||||
- `dsos.6.geojson` |
||||
- `dsos.6.gpkg` |
||||
- `dsos.6.min.geojson` |
||||
- `dsos.bright.geojson` |
||||
- `dsos.bright.gpkg` |
||||
- `dsos.bright.min.geojson` |
||||
- `lg.geojson` |
||||
- `lg.gpkg` |
||||
- `lg.min.geojson` |
||||
- `messier.geojson` |
||||
- `messier.gpkg` |
||||
- `messier.min.geojson` |
||||
- `mw.geojson` |
||||
- `mw.gpkg` |
||||
- `mw.min.geojson` |
||||
- `starnames.cn.csv` |
||||
- `starnames.csv` |
||||
- `stars.14.geojson` |
||||
- `stars.14.gpkg` |
||||
- `stars.14.min.geojson` |
||||
- `stars.6.geojson` |
||||
- `stars.6.gpkg` |
||||
- `stars.6.min.geojson` |
||||
- `stars.8.geojson` |
||||
- `stars.8.gpkg` |
||||
- `stars.8.min.geojson` |
||||
|
||||
</details> |
||||
|
||||
See additional details on |
||||
<https://dieghernan.github.io/celestial_data/data> |
||||
|
||||
## Original data sources |
||||
|
||||
For completion, we add the original data sources cited by ([Frohn |
||||
2015](#ref-frohn2015)): |
||||
|
||||
- `asterisms.*`: |
||||
|
||||
- [Saguaro Astronomy Club |
||||
Asterisms](http://saguaroastro.org/sac-downloads/) |
||||
|
||||
- `constellations.*` and `constellations.lines.*`: |
||||
|
||||
- [IAU Constellation |
||||
page](http://www.iau.org/public/themes/constellations/), name |
||||
positions and some line modifications by Olaf Frohn, , names in |
||||
other languages from |
||||
[Wikipedia](https://wiki2.org/en/88_modern_constellations_in_different_languages) |
||||
|
||||
- `constellations.bounds.*`: |
||||
|
||||
- Davenhall, A. C., and S. K. Leggett. 1989. “Catalogue of |
||||
Constellation Boundary Data.” |
||||
<http://vizier.cfa.harvard.edu/viz-bin/Cat?VI/49>. |
||||
|
||||
- Traditional Chinese Constellations & Stars: `constellations.cn.*`, |
||||
`constellations.bounds.cn.*`, `constellations.lines.cn.*`, |
||||
`starnames.cn.*`: |
||||
|
||||
- [Stellarium skycultures |
||||
data](https://github.com/Stellarium/stellarium/tree/master/skycultures/chinese) |
||||
|
||||
- `dsos.6.*`, `dsos.8.^*`, `dsos.14.*`: |
||||
|
||||
- [Saguaro Astronomy Club Database version |
||||
8.1](http://www.saguaroastro.org/sac-downloads/) |
||||
|
||||
- `dsos.bright.*` |
||||
|
||||
- Frohn, Olaf. 2015. “d3-celestial.” |
||||
<https://github.com/ofrohn/d3-celestial/>. |
||||
|
||||
- `messier.*` Messier objects: |
||||
|
||||
- [Messier Objects with Data](http://messier.seds.org/data.html), |
||||
H.Frommert/seds.org |
||||
|
||||
- `lg.*` Local group and Milky Way halo: |
||||
|
||||
- Frohn, Olaf. 2015. “d3-celestial.” |
||||
<https://github.com/ofrohn/d3-celestial/>, from different sources: |
||||
see |
||||
[blog](http://armchairastronautics.blogspot.com/p/milky-way-halo.html), |
||||
[pages](http://armchairastronautics.blogspot.com/p/local-group.html) |
||||
for complete list. |
||||
|
||||
- `stars.6.*`, `stars.8.^*`, `stars.14.*`: |
||||
|
||||
- Anderson, E., and Ch. Francis. 2012. “XHIP: An Extended Hipparcos |
||||
Compilation.” *Astronomy Letters* 38 (5): 331–46. |
||||
<https://doi.org/10.1134/S1063773712050015>. |
||||
|
||||
- `starnames.*` Star names and designations: |
||||
|
||||
- Kostjuk, N. D. 2002. “VizieR Online Data Catalog: |
||||
HD-DM-GC-HR-HIP-Bayer-Flamsteed Cross Index.” *VizieR Online Data |
||||
Catalog*, IV/27A. |
||||
<https://ui.adsabs.harvard.edu/abs/2004yCat.4027....0K>. |
||||
|
||||
- [Stellarium skycultures |
||||
data](https://github.com/Stellarium/stellarium/tree/master/po/stellarium-skycultures) |
||||
for star name translations |
||||
|
||||
## References |
||||
|
||||
<div id="refs" class="references csl-bib-body hanging-indent"> |
||||
|
||||
<div id="ref-anderson_xhip_2012" class="csl-entry"> |
||||
|
||||
Anderson, E., and Ch. Francis. 2012. “XHIP: An Extended Hipparcos |
||||
Compilation.” *Astronomy Letters* 38 (5): 331–46. |
||||
<https://doi.org/10.1134/S1063773712050015>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-butler_geojson_2016" class="csl-entry"> |
||||
|
||||
Butler, H., M. Daly, A. Doyle, S. Gillies, S. Hagen, and T. Schaub. |
||||
2016. “The GeoJSON Format.” RFC7946. RFC Editor. |
||||
<https://doi.org/10.17487/RFC7946>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-davenhall1989misc" class="csl-entry"> |
||||
|
||||
Davenhall, A. C., and S. K. Leggett. 1989. “Catalogue of Constellation |
||||
Boundary Data.” <http://vizier.cfa.harvard.edu/viz-bin/Cat?VI/49>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-frohn2015" class="csl-entry"> |
||||
|
||||
Frohn, Olaf. 2015. “<span class="nocase">d3-celestial</span>.” |
||||
<https://github.com/ofrohn/d3-celestial/>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-gliese_preliminary_1991" class="csl-entry"> |
||||
|
||||
Gliese, W., and H. Jahreiß. 1991. “Preliminary Version of the Third |
||||
Catalogue of Nearby Stars.” |
||||
<https://ui.adsabs.harvard.edu/abs/1991adc..rept.....G>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-kostjuk_vizier_2002" class="csl-entry"> |
||||
|
||||
Kostjuk, N. D. 2002. “VizieR Online Data Catalog: |
||||
HD-DM-GC-HR-HIP-Bayer-Flamsteed Cross Index.” *VizieR Online Data |
||||
Catalog*, IV/27A. |
||||
<https://ui.adsabs.harvard.edu/abs/2004yCat.4027....0K>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-pebesma2018" class="csl-entry"> |
||||
|
||||
Pebesma, Edzer. 2018. “Simple Features for R: Standardized Support for |
||||
Spatial Vector Data.” *The R Journal* 10 (1): 439446. |
||||
<https://doi.org/10.32614/RJ-2018-009>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-samus_general_2017" class="csl-entry"> |
||||
|
||||
Samus’, N. N., E. V. Kazarovets, O. V. Durlevich, N. N. Kireeva, and E. |
||||
N. Pastukhova. 2017. “General Catalogue of Variable Stars: Version GCVS |
||||
5.1.” *Astronomy Reports* 61 (1): 80–88. |
||||
<https://doi.org/10.1134/S1063772917010085>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-smith_vizier_1996" class="csl-entry"> |
||||
|
||||
Smith, W. B. 1996. “VizieR Online Data Catalog: FK5 - SAO - HD - Common |
||||
Name Cross Index.” *VizieR Online Data Catalog*, August, IV/22. |
||||
<https://ui.adsabs.harvard.edu/abs/1996yCat.4022....0S>. |
||||
|
||||
</div> |
||||
|
||||
</div> |
@ -0,0 +1,154 @@
|
||||
remote_theme: dieghernan/chulapa |
||||
|
||||
repository: dieghernan/celestial_data |
||||
url: "https://dieghernan.github.io" |
||||
baseurl: "/celestial_data" |
||||
|
||||
|
||||
locale : es-ES |
||||
title : "Celestial Data" |
||||
subtitle : "Repository with json files of celestial object" |
||||
description : "Site with celestial json data objects. Original source: https://github.com/ofrohn/d3-celestial" |
||||
timezone : "Europe/Madrid" |
||||
|
||||
og_image : # TBC |
||||
twitter_site : dieghernan |
||||
author: |
||||
name : Diego Hernangomez |
||||
location : "Madrid, Spain" |
||||
links: |
||||
- url: https://dieghernan.github.io/ |
||||
icon: fas fa-blog |
||||
label: Blog |
||||
- url: https://twitter.com/dhernangomez |
||||
icon: fab fa-twitter |
||||
label: My Twitter |
||||
- url: https://fosstodon.org/@dhernangomez |
||||
icon: fa-brands fa-mastodon |
||||
label: My Mastodon |
||||
- url: https://github.com/dieghernan/ |
||||
icon: fab fa-github |
||||
label: My GitHub |
||||
- url: https://stackoverflow.com/users/7877917/dieghernan |
||||
icon: fab fa-stack-overflow |
||||
label: On StackOverflow |
||||
- url: https://orcid.org/0000-0001-8457-4658 |
||||
icon: fa-brands fa-orcid |
||||
label: My Orcid |
||||
|
||||
# B. Navigation |
||||
# Configure your navbar and the footer of your site |
||||
|
||||
# Navbar: |
||||
# "brand" options would be set on the left side of your navbar |
||||
# "nav" would be set on the right side. Two-level nav links available |
||||
navbar: |
||||
brand: |
||||
title : Home # Title in navbar |
||||
nav: |
||||
- title : 'Data Description' |
||||
url : https://dieghernan.github.io/celestial_data/data |
||||
- title : 'Data Sources' |
||||
url : https://dieghernan.github.io/celestial_data/sources |
||||
- title : '<i class="fab fa-github" aria-hidden="true"></i> GitHub repo' |
||||
url : https://github.com/dieghernan/celestial_data |
||||
|
||||
|
||||
footer: |
||||
links: |
||||
- url: https://dieghernan.github.io/ |
||||
icon: fas fa-blog |
||||
label: Blog |
||||
- label: Stack Overflow |
||||
icon: fab fa-stack-overflow |
||||
url: https://stackoverflow.com/users/7877917/dieghernan |
||||
- label: WikiCommons |
||||
icon: fab fa-wikipedia-w |
||||
url: https://commons.wikimedia.org/wiki/Special:ListFiles?limit=50&user=dieghernan84 |
||||
- label: GitHub |
||||
icon: fab fa-github |
||||
url: https://github.com/dieghernan/ |
||||
|
||||
# C. Theme Settings |
||||
|
||||
|
||||
# Theme and colors |
||||
chulapa-skin: |
||||
skin : gitdev-dark |
||||
highlight: skeletor |
||||
|
||||
# D. Jekyll Defaults and collections: see https://jekyllrb.com/ |
||||
|
||||
# Blog pagination: on this site /blog/index.html. https://jekyllrb.com/docs/pagination/ |
||||
paginate: 7 |
||||
paginate_path: "/blog/page:num/" |
||||
paginator_maxnum: 3 #default[3] Custom: max of number to be displayed on the paginator |
||||
|
||||
# Collections https://jekyllrb.com/docs/step-by-step/09-collections/ |
||||
collections: |
||||
collections_dir : |
||||
permalink : /:year:month:day_:title/ |
||||
|
||||
|
||||
# Defaults https://jekyllrb.com/docs/configuration/front-matter-defaults/ |
||||
defaults: |
||||
- |
||||
scope: |
||||
path: "" |
||||
values: |
||||
layout: "default" |
||||
header_type: "base" |
||||
mathjax: true |
||||
include_on_search : false |
||||
|
||||
# XX. Other settings - no need to modify |
||||
# HTML Compression |
||||
# - https://jch.penibelst.de/ |
||||
compress_html: |
||||
clippings: all |
||||
blanklines: true |
||||
|
||||
plugins: |
||||
- jekyll-github-metadata |
||||
- jekyll-paginate |
||||
- jekyll-include-cache |
||||
- jekyll-sitemap |
||||
|
||||
|
||||
# Exclude these files from production site |
||||
exclude: |
||||
- LICENSE |
||||
- README.md |
||||
- README.Rmd |
||||
- Gemfile |
||||
- vendor |
||||
- .github |
||||
- data/README.md |
||||
|
||||
include: |
||||
- _pages |
||||
- data |
||||
|
||||
# Conversion |
||||
markdown: kramdown |
||||
highlighter: rouge |
||||
lsi: false |
||||
excerpt_separator: "\n\n" |
||||
incremental: false |
||||
|
||||
# Markdown Processing |
||||
kramdown: |
||||
input: GFM |
||||
hard_wrap: false |
||||
auto_ids: true |
||||
footnote_nr: 1 |
||||
footnote_backlink: '↑' |
||||
entity_output: as_char |
||||
toc_levels: 2..6 |
||||
smart_quotes: lsquo,rsquo,ldquo,rdquo |
||||
enable_coderay: false |
||||
|
||||
# Sass/SCSS |
||||
sass: |
||||
sass_dir: _sass |
||||
style: compressed # https://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style |
@ -0,0 +1,5 @@
|
||||
<!-- start custom scripts to be placed at the bottom of the page --> |
||||
|
||||
|
||||
|
||||
<!-- end custom bottom scripts --> |
@ -0,0 +1,5 @@
|
||||
<!-- start custom head snippets --> |
||||
|
||||
<!-- insert favicons. use https://realfavicongenerator.net/ --> |
||||
|
||||
<!-- end custom head snippets --> |
@ -0,0 +1,5 @@
|
||||
<!-- start custom head snippets --> |
||||
|
||||
<!-- this script is inserted before the css stylesheet --> |
||||
|
||||
<!-- end custom head snippets --> |
@ -0,0 +1 @@
|
||||
<!-- Include the script from https://giscus.app/ --> |
@ -0,0 +1,15 @@
|
||||
--- |
||||
layout: minimal |
||||
title: 404 |
||||
subtitle: Page not found |
||||
header_type: none |
||||
excerpt: Page not found |
||||
permalink: /404.html |
||||
--- |
||||
<div class="my-auto text-center"> |
||||
<h1 class="display-1 font-weight-bold">4<i class="fa fa-times-circle"></i>4</h1> |
||||
<h2>{{ page.subtitle }}</h2> |
||||
{% if site.search.provider %} |
||||
<h4 class="pt-5"><a class="nav-link" href="{{ site.search.landing_page | default: '/search' | absolute_url }}">{{ site.search.label | default: 'Search' }} <i class="fa fa-search" aria-hidden="true"></i></a></h4> |
||||
{% endif %} |
||||
</div> |
@ -0,0 +1,255 @@
|
||||
--- |
||||
title: Data description |
||||
permalink: /data |
||||
excerpt: Description of the data provided |
||||
show_sidetoc: true |
||||
project_links: |
||||
- url: https://github.com/dieghernan/celestial_data/tree/main/data |
||||
icon: fab fa-github |
||||
label: View on Github |
||||
h_max: 3 |
||||
--- |
||||
|
||||
## Data Formats |
||||
|
||||
Data is provided in GeoJSON (`*.geojson`) and GeoPackage (`*.gpkg`) format. |
||||
Additionally, for GeoJSON formats a minified version (`*.min.geojson`) is also |
||||
provided. |
||||
|
||||
All data complies with the GeoJSON format (provided in |
||||
[EPSG:4326](https://epsg.io/4326), bounded to $$[-180, -90, 180, 90]$$ and |
||||
geometries valid as per [ST_IsValid](https://postgis.net/docs/ST_IsValid.html) |
||||
on GEOS **3.9.3**). |
||||
|
||||
All data provided at J2000 epoch, positions converted from 0...24h right |
||||
ascension to -180...180 degrees longitude as per GeoJSON requirements, so |
||||
0...12h becomes 0...180 degrees, and 12...24h becomes -180...0 degrees. |
||||
|
||||
## Distribution |
||||
|
||||
The data can be accessed from several API endpoints: |
||||
|
||||
``` html |
||||
|
||||
<!-- From GitHub --> |
||||
https://raw.githubusercontent.com/dieghernan/celestial_data/main/data/mw.min.geojson |
||||
|
||||
<!-- From the Website --> |
||||
https://dieghernan.github.io/celestial_data/data/mw.min.geojson |
||||
|
||||
<!-- From jsDelivr --> |
||||
https://cdn.jsdelivr.net/gh/dieghernan/celestial_data@main/data/mw.min.geojson |
||||
``` |
||||
|
||||
## Description |
||||
|
||||
### Asterisms |
||||
|
||||
`asterisms.<data format>` (`MULTILINESTRING`) with 65 objects the following attributes: |
||||
|
||||
- **id**: Name without spaces |
||||
|
||||
- **n**: Proper name |
||||
|
||||
- **es**: Proper name in Spanish |
||||
|
||||
- **p**: Priority 1..6 (\~Average brightness) |
||||
|
||||
- **loc_lon**, **loc_lat**: Center location of name string |
||||
|
||||
### Constellations |
||||
|
||||
`constellations.<data format>` (`POINT`) with 89 objects. Additionally a |
||||
`constellations.csv` file with the data (no coordinates) is also provided: |
||||
|
||||
- **id**: 3-letter designator |
||||
|
||||
- **name**: full IAU name |
||||
|
||||
- **desig**: 3-letter designator again |
||||
|
||||
- **gen**: genitive for naming stars. |
||||
|
||||
- **rank**: 1-3 for differential name display by size/brightness |
||||
|
||||
- **en**: English name ... and names in 18 further languages |
||||
|
||||
- **display_ra**, **display_dec**, **display_scale**: for single constellation |
||||
display |
||||
|
||||
#### Traditional Chinese constellations |
||||
|
||||
`constellations.cn.<data format>` (`POINT`) with 312 objects. Additionally a |
||||
`constellations.cn.csv` file with the data (no coordinates) is also provided: |
||||
|
||||
- **id:** numerical id |
||||
- **name**: Chinese name |
||||
- **en**: English translation |
||||
- **pinyin**: pinyin transcription |
||||
- **desig**: also Chinese name, for compatibility |
||||
- **rank**: so far only 1; differential name display by size/brightness |
||||
- **display_ra**, **display_dec**, **display_scale**: for single constellation |
||||
display |
||||
|
||||
### Constellation boundaries |
||||
|
||||
`constellations.borders.<data format>` (`MULTILINESTRING`) with 257 objects. |
||||
|
||||
- **ids**: String with format "3-letter designator A, 3-letter designator B" |
||||
identifying the constellations surrounding the border. |
||||
|
||||
`constellations.bounds.<data format>` (`MULTIPOLYGON`) with 89 objects. See |
||||
**Constellation lines** for field descriptions. |
||||
|
||||
#### Traditional Chinese constellations |
||||
|
||||
`constellations.borders.cn.<data format>` (`LINESTRING`) with 84 objects. |
||||
|
||||
- **ids**: border id. |
||||
|
||||
`constellations.bounds.cn.<data format>` (`POLYGON`) with 28 objects. See |
||||
**Constellation lines** for field descriptions. |
||||
|
||||
### Constellation lines |
||||
|
||||
`constellations.lines.<data format>` (`MULTILINESTRING`) with 89 objects. |
||||
|
||||
- **id**: 3-letter designator |
||||
|
||||
- **rank**: 1-3 for differential name display by size/brightness |
||||
|
||||
- **name**: full IAU name |
||||
|
||||
#### Traditional Chinese constellations |
||||
|
||||
`constellations.lines.cn.<data format>` (`MULTILINESTRING`) with 255 |
||||
objects[^readme-1]: |
||||
|
||||
[^readme-1]: Some constellations have been removed from the [original dataset](<https://github.com/ofrohn/d3-celestial/blob/master/data/constellations.lines.cn.json>) |
||||
since the `MULTILINESTRING` object consisted only on a single point, that |
||||
does not conform with the GeoJSON standard (`POINT` as `MULTILINESTRING` are |
||||
not valid). |
||||
|
||||
- **id:** numerical id |
||||
- **rank**: so far only 1; differential name display by size/brightness |
||||
- **name**: Chinese name |
||||
- **en**: English translation |
||||
|
||||
### DSOs |
||||
|
||||
Deep Space Objects |
||||
|
||||
#### DSOnames |
||||
|
||||
`dsonames.csv` with 724 rows: |
||||
|
||||
- **id**: Short designator |
||||
|
||||
- **name**: Proper name... and names in several languages. |
||||
|
||||
#### Traditional Chinese DSO names |
||||
|
||||
`dsonames.cn.json` with 6 rows |
||||
|
||||
- **id**: Hipparcos number |
||||
- **name**: Chinese name |
||||
- **desig**: IAU designation |
||||
- **en**: English translation |
||||
- **pinyin**: Pinyin transcription |
||||
|
||||
#### DSOs |
||||
|
||||
Several files: |
||||
|
||||
- `dsos.6.<data format>`, `dsos.14.<data format>`, `dsos.20.<data format>`: |
||||
the number indicates limit magnitude. |
||||
|
||||
- `dsos.bright.<data format>`: hand selected DSOs. |
||||
|
||||
- `lg.<data format>`: Local group . |
||||
|
||||
- `messier.<data format>` Messier objects. |
||||
|
||||
All objects are `POINT`: |
||||
|
||||
- **id**: Short designator |
||||
|
||||
- **desig**: Designator |
||||
|
||||
- **type**: Object type: gg *(galaxy cluster)*, g: *(galaxy)*, s: *(spiral |
||||
galaxy)*, s0: *(lenticular gal.)*, sd: *(dwarf spheroidal gal.)*, i: |
||||
*(irregular gal.)*, e: *(elliptical gal.)*, oc: *(open cluster)*, gc: |
||||
*(globular cluster)*, dn: *(dark nebula)*, bn: *(bright nebula)*, sfr: |
||||
*(star forming region)*, rn: *(reflection nebula)*, en: *(emission nebula)*, |
||||
pn: *(planetary nebula)*, snr: *(supernova remnant)*. |
||||
|
||||
- **morph**: Morphology classification depending on type |
||||
|
||||
- **mag**: Apparent magnitude, 999 if n.a. |
||||
|
||||
- **dim**: Angular dimensions in arcminutes |
||||
|
||||
- **bv**: Blue minus visual magnitude color inder (b-v) |
||||
|
||||
- **br**: Relative brightness to magnitude 0, computed as $$100^{-1 * mag / 5}$$ |
||||
|
||||
- **name**: Proper name |
||||
|
||||
Additional fields on `lg.<data format>`: |
||||
|
||||
- **sub**: Sub group membership: `MW|M31|N3109|LG` (Milky Way, Andromeda, NGC |
||||
3109, gen. LG) |
||||
|
||||
- **pop**: MW populations `OH|YH|BD` (Old halo, young halo, bulge & disk), M31 |
||||
populations `M31|GP` (gen. M31, great plane) |
||||
|
||||
- **str**: Tidal streams `Mag|Sgr|CMa|FLS` (Magellanic Stream, Sagittarius |
||||
Stream, Canis Major/Monoceros Stream, Fornax-Leo-Sculptor Great Circle) |
||||
|
||||
### Stars |
||||
|
||||
#### Starnames |
||||
|
||||
`starnames.csv`: Magnitude independent, all stars with a name/designation other |
||||
than HIP/HD |
||||
|
||||
- **id**: Hipparcos number |
||||
- **name**: , Proper name and names in 17 further languages |
||||
- **desig**: , Standard designation, first from list below |
||||
- **bayer**: , Bayer |
||||
- **flam**: , Flamsteed |
||||
- **var**: , Variable star |
||||
- **gliese**: , Gliese |
||||
- **hd**: , Henry Draper |
||||
- **hip**: Hipparcos number again |
||||
|
||||
#### Traditional Chinese star names |
||||
|
||||
`starnames.cn.json` with 3056 rows |
||||
|
||||
- **id**: Hipparcos number |
||||
- **name**: Chinese name |
||||
- **desig**: IAU designation |
||||
- **en**: English translation |
||||
- **pinyin**: Pinyin transcription |
||||
|
||||
#### Stars |
||||
|
||||
`stars.6.<data format>`, `stars.8.<data format>`, `<data format>.14.json`: the |
||||
number indicates limit magnitude: |
||||
|
||||
- **id**: Short designator |
||||
|
||||
- **mag**: Apparent magnitude, 999 if n.a. |
||||
|
||||
- **bv**: b-v color index. |
||||
|
||||
- **br**: Relative brightness to magnitude 0, computed as $$100^{-1 * mag / 5}$$ |
||||
|
||||
- **name**: Proper name |
||||
|
||||
### Milky Way |
||||
|
||||
`mw.<data format>` with 5 rows: |
||||
|
||||
- **id**: Milky Way outlines in 5 brightness steps (ol1-ol5). |
@ -0,0 +1,153 @@
|
||||
--- |
||||
title: Data sources |
||||
permalink: /sources |
||||
excerpt: Description of data sources |
||||
--- |
||||
|
||||
For completion, we add the original data sources cited by ([Frohn |
||||
2015](#ref-frohn2015)): |
||||
|
||||
- `asterisms.*`: |
||||
|
||||
- [Saguaro Astronomy Club |
||||
Asterisms](http://saguaroastro.org/sac-downloads/) |
||||
|
||||
- `constellations.*` and `constellations.lines.*`: |
||||
|
||||
- [IAU Constellation |
||||
page](http://www.iau.org/public/themes/constellations/), name |
||||
positions and some line modifications by Olaf Frohn, , names in |
||||
other languages from |
||||
[Wikipedia](https://wiki2.org/en/88_modern_constellations_in_different_languages) |
||||
|
||||
- `constellations.bounds.*`: |
||||
|
||||
- Davenhall, A. C., and S. K. Leggett. 1989. “Catalogue of |
||||
Constellation Boundary Data.” |
||||
<http://vizier.cfa.harvard.edu/viz-bin/Cat?VI/49>. |
||||
|
||||
- Traditional Chinese Constellations & Stars: `constellations.cn.*`, |
||||
`constellations.bounds.cn.*`, `constellations.lines.cn.*`, |
||||
`starnames.cn.*`: |
||||
|
||||
- [Stellarium skycultures |
||||
data](https://github.com/Stellarium/stellarium/tree/master/skycultures/chinese) |
||||
|
||||
- `dsos.6.*`, `dsos.8.^*`, `dsos.14.*`: |
||||
|
||||
- [Saguaro Astronomy Club Database version |
||||
8.1](http://www.saguaroastro.org/sac-downloads/) |
||||
|
||||
- `dsos.bright.*` |
||||
|
||||
- Frohn, Olaf. 2015. “d3-celestial.” |
||||
<https://github.com/ofrohn/d3-celestial/>. |
||||
|
||||
- `messier.*` Messier objects: |
||||
|
||||
- [Messier Objects with Data](http://messier.seds.org/data.html), |
||||
H.Frommert/seds.org |
||||
|
||||
- `lg.*` Local group and Milky Way halo: |
||||
|
||||
- Frohn, Olaf. 2015. “d3-celestial.” |
||||
<https://github.com/ofrohn/d3-celestial/>, from different sources: |
||||
see |
||||
[blog](http://armchairastronautics.blogspot.com/p/milky-way-halo.html), |
||||
[pages](http://armchairastronautics.blogspot.com/p/local-group.html) |
||||
for complete list. |
||||
|
||||
- `stars.6.*`, `stars.8.^*`, `stars.14.*`: |
||||
|
||||
- Anderson, E., and Ch. Francis. 2012. “XHIP: An Extended Hipparcos |
||||
Compilation.” *Astronomy Letters* 38 (5): 331–46. |
||||
<https://doi.org/10.1134/S1063773712050015>. |
||||
|
||||
- `starnames.*` Star names and designations: |
||||
|
||||
- Kostjuk, N. D. 2002. “VizieR Online Data Catalog: |
||||
HD-DM-GC-HR-HIP-Bayer-Flamsteed Cross Index.” *VizieR Online Data |
||||
Catalog*, IV/27A. |
||||
<https://ui.adsabs.harvard.edu/abs/2004yCat.4027....0K>. |
||||
|
||||
- [Stellarium skycultures |
||||
data](https://github.com/Stellarium/stellarium/tree/master/po/stellarium-skycultures) |
||||
for star name translations |
||||
|
||||
## References |
||||
|
||||
<div id="refs" class="references csl-bib-body hanging-indent"> |
||||
|
||||
<div id="ref-anderson_xhip_2012" class="csl-entry"> |
||||
|
||||
Anderson, E., and Ch. Francis. 2012. “XHIP: An Extended Hipparcos |
||||
Compilation.” *Astronomy Letters* 38 (5): 331–46. |
||||
<https://doi.org/10.1134/S1063773712050015>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-butler_geojson_2016" class="csl-entry"> |
||||
|
||||
Butler, H., M. Daly, A. Doyle, S. Gillies, S. Hagen, and T. Schaub. |
||||
2016. “The GeoJSON Format.” RFC7946. RFC Editor. |
||||
<https://doi.org/10.17487/RFC7946>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-davenhall1989misc" class="csl-entry"> |
||||
|
||||
Davenhall, A. C., and S. K. Leggett. 1989. “Catalogue of Constellation |
||||
Boundary Data.” <http://vizier.cfa.harvard.edu/viz-bin/Cat?VI/49>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-frohn2015" class="csl-entry"> |
||||
|
||||
Frohn, Olaf. 2015. “<span class="nocase">d3-celestial</span>.” |
||||
<https://github.com/ofrohn/d3-celestial/>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-gliese_preliminary_1991" class="csl-entry"> |
||||
|
||||
Gliese, W., and H. Jahreiß. 1991. “Preliminary Version of the Third |
||||
Catalogue of Nearby Stars.” |
||||
<https://ui.adsabs.harvard.edu/abs/1991adc..rept.....G>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-kostjuk_vizier_2002" class="csl-entry"> |
||||
|
||||
Kostjuk, N. D. 2002. “VizieR Online Data Catalog: |
||||
HD-DM-GC-HR-HIP-Bayer-Flamsteed Cross Index.” *VizieR Online Data |
||||
Catalog*, IV/27A. |
||||
<https://ui.adsabs.harvard.edu/abs/2004yCat.4027....0K>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-pebesma2018" class="csl-entry"> |
||||
|
||||
Pebesma, Edzer. 2018. “Simple Features for R: Standardized Support for |
||||
Spatial Vector Data.” *The R Journal* 10 (1): 439446. |
||||
<https://doi.org/10.32614/RJ-2018-009>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-samus_general_2017" class="csl-entry"> |
||||
|
||||
Samus’, N. N., E. V. Kazarovets, O. V. Durlevich, N. N. Kireeva, and E. |
||||
N. Pastukhova. 2017. “General Catalogue of Variable Stars: Version GCVS |
||||
5.1.” *Astronomy Reports* 61 (1): 80–88. |
||||
<https://doi.org/10.1134/S1063772917010085>. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-smith_vizier_1996" class="csl-entry"> |
||||
|
||||
Smith, W. B. 1996. “VizieR Online Data Catalog: FK5 - SAO - HD - Common |
||||
Name Cross Index.” *VizieR Online Data Catalog*, August, IV/22. |
||||
<https://ui.adsabs.harvard.edu/abs/1996yCat.4022....0S>. |
||||
|
||||
</div> |
||||
|
||||
</div> |
@ -0,0 +1,4 @@
|
||||
--- |
||||
--- |
||||
@charset "utf-8"; |
||||
// Your custom css /scss here |
@ -0,0 +1,244 @@
|
||||
# Data Formats |
||||
|
||||
Data is provided in GeoJSON (`*.geojson`) and GeoPackage (`*.gpkg`) format. |
||||
Additionally, for GeoJSON formats a minified version (`*.min.geojson`) is also |
||||
provided. |
||||
|
||||
All data complies with the GeoJSON format (provided in |
||||
[EPSG:4326](https://epsg.io/4326), bounded to $[-180, -90, 180, 90]$ and |
||||
geometries valid as per [ST_IsValid](https://postgis.net/docs/ST_IsValid.html) |
||||
on GEOS **3.9.3**). |
||||
|
||||
All data provided at J2000 epoch, positions converted from 0...24h right |
||||
ascension to -180...180 degrees longitude as per GeoJSON requirements, so |
||||
0...12h becomes 0...180 degrees, and 12...24h becomes -180...0 degrees. |
||||
|
||||
# Distribution |
||||
|
||||
The data can be accessed from several API endpoints: |
||||
|
||||
``` html |
||||
|
||||
<!-- From GitHub --> |
||||
https://raw.githubusercontent.com/dieghernan/celestial_data/main/data/mw.min.geojson |
||||
|
||||
<!-- From the Website --> |
||||
https://dieghernan.github.io/celestial_data/data/mw.min.geojson |
||||
|
||||
<!-- From jsDelivr --> |
||||
https://cdn.jsdelivr.net/gh/dieghernan/celestial_data@main/data/mw.min.geojson |
||||
``` |
||||
|
||||
# Data |
||||
|
||||
## Asterisms |
||||
|
||||
`asterisms.<data format>` (`MULTILINESTRING`) with 65 objects the following attributes: |
||||
|
||||
- **id**: Name without spaces |
||||
|
||||
- **n**: Proper name |
||||
|
||||
- **es**: Proper name in Spanish |
||||
|
||||
- **p**: Priority 1..6 (\~Average brightness) |
||||
|
||||
- **loc_lon**, **loc_lat**: Center location of name string |
||||
|
||||
## Constellations |
||||
|
||||
`constellations.<data format>` (`POINT`) with 89 objects. Additionally a |
||||
`constellations.csv` file with the data (no coordinates) is also provided: |
||||
|
||||
- **id**: 3-letter designator |
||||
|
||||
- **name**: full IAU name |
||||
|
||||
- **desig**: 3-letter designator again |
||||
|
||||
- **gen**: genitive for naming stars. |
||||
|
||||
- **rank**: 1-3 for differential name display by size/brightness |
||||
|
||||
- **en**: English name ... and names in 18 further languages |
||||
|
||||
- **display_ra**, **display_dec**, **display_scale**: for single constellation |
||||
display |
||||
|
||||
### Traditional Chinese constellations |
||||
|
||||
`constellations.cn.<data format>` (`POINT`) with 312 objects. Additionally a |
||||
`constellations.cn.csv` file with the data (no coordinates) is also provided: |
||||
|
||||
- **id:** numerical id |
||||
- **name**: Chinese name |
||||
- **en**: English translation |
||||
- **pinyin**: pinyin transcription |
||||
- **desig**: also Chinese name, for compatibility |
||||
- **rank**: so far only 1; differential name display by size/brightness |
||||
- **display_ra**, **display_dec**, **display_scale**: for single constellation |
||||
display |
||||
|
||||
## Constellation boundaries |
||||
|
||||
`constellations.borders.<data format>` (`MULTILINESTRING`) with 257 objects. |
||||
|
||||
- **ids**: String with format "3-letter designator A, 3-letter designator B" |
||||
identifying the constellations surrounding the border. |
||||
|
||||
`constellations.bounds.<data format>` (`MULTIPOLYGON`) with 89 objects. See |
||||
**Constellation lines** for field descriptions. |
||||
|
||||
### Traditional Chinese constellations |
||||
|
||||
`constellations.borders.cn.<data format>` (`LINESTRING`) with 84 objects. |
||||
|
||||
- **ids**: border id. |
||||
|
||||
`constellations.bounds.cn.<data format>` (`POLYGON`) with 28 objects. See |
||||
**Constellation lines** for field descriptions. |
||||
|
||||
## Constellation lines |
||||
|
||||
`constellations.lines.<data format>` (`MULTILINESTRING`) with 89 objects. |
||||
|
||||
- **id**: 3-letter designator |
||||
|
||||
- **rank**: 1-3 for differential name display by size/brightness |
||||
|
||||
- **name**: full IAU name |
||||
|
||||
### Traditional Chinese constellations |
||||
|
||||
`constellations.lines.cn.<data format>` (`MULTILINESTRING`) with 255 |
||||
objects[^readme-1]: |
||||
|
||||
[^readme-1]: Some constellations have been removed from the original dataset |
||||
(<https://github.com/ofrohn/d3-celestial/blob/master/data/constellations.lines.cn.json>) |
||||
since the `MULTILINESTRING` object consisted only on a single point, that |
||||
does not conform with the GeoJSON standard (`POINT` as `MULTILINESTRING` are |
||||
not valid). |
||||
|
||||
- **id:** numerical id |
||||
- **rank**: so far only 1; differential name display by size/brightness |
||||
- **name**: Chinese name |
||||
- **en**: English translation |
||||
|
||||
## DSOs |
||||
|
||||
Deep Space Objects |
||||
|
||||
### DSOnames |
||||
|
||||
`dsonames.csv` with 724 rows: |
||||
|
||||
- **id**: Short designator |
||||
|
||||
- **name**: Proper name... and names in several languages. |
||||
|
||||
### Traditional Chinese DSO names |
||||
|
||||
`dsonames.cn.json` with 6 rows |
||||
|
||||
- **id**: Hipparcos number |
||||
- **name**: Chinese name |
||||
- **desig**: IAU designation |
||||
- **en**: English translation |
||||
- **pinyin**: Pinyin transcription |
||||
|
||||
### DSOs |
||||
|
||||
Several files: |
||||
|
||||
- `dsos.6.<data format>`, `dsos.14.<data format>`, `dsos.20.<data format>`: |
||||
the number indicates limit magnitude. |
||||
|
||||
- `dsos.bright.<data format>`: hand selected DSOs. |
||||
|
||||
- `lg.<data format>`: Local group . |
||||
|
||||
- `messier.<data format>` Messier objects. |
||||
|
||||
All objects are `POINT`: |
||||
|
||||
- **id**: Short designator |
||||
|
||||
- **desig**: Designator |
||||
|
||||
- **type**: Object type: gg *(galaxy cluster)*, g: *(galaxy)*, s: *(spiral |
||||
galaxy)*, s0: *(lenticular gal.)*, sd: *(dwarf spheroidal gal.)*, i: |
||||
*(irregular gal.)*, e: *(elliptical gal.)*, oc: *(open cluster)*, gc: |
||||
*(globular cluster)*, dn: *(dark nebula)*, bn: *(bright nebula)*, sfr: |
||||
*(star forming region)*, rn: *(reflection nebula)*, en: *(emission nebula)*, |
||||
pn: *(planetary nebula)*, snr: *(supernova remnant)*. |
||||
|
||||
- **morph**: Morphology classification depending on type |
||||
|
||||
- **mag**: Apparent magnitude, 999 if n.a. |
||||
|
||||
- **dim**: Angular dimensions in arcminutes |
||||
|
||||
- **bv**: Blue minus visual magnitude color inder (b-v) |
||||
|
||||
- **br**: Relative brightness to magnitude 0, computed as $100^{-1 * mag / 5}$ |
||||
|
||||
- **name**: Proper name |
||||
|
||||
Additional fields on `lg.<data format>`: |
||||
|
||||
- **sub**: Sub group membership: `MW|M31|N3109|LG` (Milky Way, Andromeda, NGC |
||||
3109, gen. LG) |
||||
|
||||
- **pop**: MW populations `OH|YH|BD` (Old halo, young halo, bulge & disk), M31 |
||||
populations `M31|GP` (gen. M31, great plane) |
||||
|
||||
- **str**: Tidal streams `Mag|Sgr|CMa|FLS` (Magellanic Stream, Sagittarius |
||||
Stream, Canis Major/Monoceros Stream, Fornax-Leo-Sculptor Great Circle) |
||||
|
||||
## Stars |
||||
|
||||
### Starnames |
||||
|
||||
`starnames.csv`: Magnitude independent, all stars with a name/designation other |
||||
than HIP/HD |
||||
|
||||
- **id**: Hipparcos number |
||||
- **name**: , Proper name and names in 17 further languages |
||||
- **desig**: , Standard designation, first from list below |
||||
- **bayer**: , Bayer |
||||
- **flam**: , Flamsteed |
||||
- **var**: , Variable star |
||||
- **gliese**: , Gliese |
||||
- **hd**: , Henry Draper |
||||
- **hip**: Hipparcos number again |
||||
|
||||
### Traditional Chinese star names |
||||
|
||||
`starnames.cn.json` with 3056 rows |
||||
|
||||
- **id**: Hipparcos number |
||||
- **name**: Chinese name |
||||
- **desig**: IAU designation |
||||
- **en**: English translation |
||||
- **pinyin**: Pinyin transcription |
||||
|
||||
### Stars |
||||
|
||||
`stars.6.<data format>`, `stars.8.<data format>`, `<data format>.14.json`: the |
||||
number indicates limit magnitude: |
||||
|
||||
- **id**: Short designator |
||||
|
||||
- **mag**: Apparent magnitude, 999 if n.a. |
||||
|
||||
- **bv**: b-v color index. |
||||
|
||||
- **br**: Relative brightness to magnitude 0, computed as $100^{-1 * mag / 5}$ |
||||
|
||||
- **name**: Proper name |
||||
|
||||
## Milky Way |
||||
|
||||
`mw.<data format>` with 5 rows: |
||||
|
||||
- **id**: Milky Way outlines in 5 brightness steps (ol1-ol5). |
@ -0,0 +1,72 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "asterisms", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "id": "BigDipper", "n": "Big Dipper", "es": "Gran Carro", "p": 2, "loc_lon": -165.0, "loc_lat": 61.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, 54.648324661035794 ], [ -176.1435, 57.0326 ], [ -166.4927, 55.9598 ], [ -159.0186, 54.9254 ], [ -153.1148, 49.3133 ] ], [ [ -176.1435, 57.0326 ], [ -180.0, 58.047775296382056 ] ], [ [ 180.0, 58.047775296382056 ], [ 165.932, 61.751 ], [ 165.4603, 56.3824 ], [ 178.4577, 53.6948 ], [ 180.0, 54.648324661035794 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NorthernPointer", "n": "Northern Pointer", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 165.4603, 56.3824 ], [ 165.932, 61.751 ], [ 37.9546, 89.2641 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LittleDipper", "n": "Little Dipper", "es": "", "p": 4, "loc_lon": -90.0, "loc_lat": 80.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 37.9546, 89.2641 ], [ -96.9458, 86.5865 ], [ -108.5073, 82.0373 ], [ -123.9853, 77.7945 ], [ -137.3236, 74.1555 ], [ -129.8178, 71.834 ], [ -115.6238, 75.7553 ], [ -123.9853, 77.7945 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "GuardiansofthePole", "n": "Guardians of the Pole", "es": "", "p": 3, "loc_lon": -135.0, "loc_lat": 67.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -137.3236, 74.1555 ], [ -129.8178, 71.834 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TheQueensW", "n": "The Queen's 'W'", "es": "La W", "p": 2, "loc_lon": -5.25, "loc_lat": 53.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 2.2945, 59.1498 ], [ 10.1268, 56.5373 ], [ 14.1772, 60.7167 ], [ 21.454, 60.2353 ], [ 28.5989, 63.6701 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HouseofCepheus", "n": "House of Cepheus", "es": "", "p": 3, "loc_lon": -55.5, "loc_lat": 66.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -40.3551, 62.5856 ], [ -37.835, 70.5607 ], [ -5.1631, 77.6323 ], [ -17.5799, 66.2004 ], [ -22.7072, 58.4152 ], [ -40.3551, 62.5856 ], [ -17.5799, 66.2004 ], [ -37.835, 70.5607 ], [ -22.7072, 58.4152 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Belt", "n": "Belt", "es": "", "p": 3, "loc_lon": 84.0, "loc_lat": 1.5 }, "geometry": { "type": "LineString", "coordinates": [ [ 83.0017, -0.2991 ], [ 84.0534, -1.2019 ], [ 85.1897, -1.9426 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TheLeash", "n": "'The Leash'", "es": "", "p": 3, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 101.2872, -16.7161 ], [ 85.1897, -1.9426 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sword", "n": "Sword", "es": "", "p": 4, "loc_lon": 79.5, "loc_lat": -3.5 }, "geometry": { "type": "LineString", "coordinates": [ [ 84.6866, -2.6 ], [ 83.816, -5.3873 ], [ 83.8583, -5.9099 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "WinterHexagon", "n": "Winter Hexagon", "es": "Hexagono Invernal", "p": 1, "loc_lon": 93.0, "loc_lat": 18.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 101.2872, -16.7161 ], [ 114.8255, 5.225 ], [ 116.329, 28.0262 ], [ 79.1723, 45.998 ], [ 68.9802, 16.5093 ], [ 78.6345, -8.2016 ], [ 101.2872, -16.7161 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "WinterTriangle", "n": "Winter Triangle", "es": "", "p": 3, "loc_lon": 102.0, "loc_lat": 2.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 101.2872, -16.7161 ], [ 114.8255, 5.225 ], [ 88.7929, 7.4071 ], [ 101.2872, -16.7161 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "GreatDiamond", "n": "Great Diamond", "es": "Diamante de Virgo", "p": 1, "loc_lon": -163.5, "loc_lat": 16.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, 18.451475530402568 ], [ -165.9931, 38.3184 ], [ -146.0847, 19.1824 ], [ -158.7018, -11.1613 ], [ -180.0, 11.643520806131505 ] ], [ [ 180.0, 11.643520806131505 ], [ 177.2649, 14.5721 ], [ 180.0, 18.451475530402568 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Kite", "n": "Kite", "es": "", "p": 3, "loc_lon": -138.0, "loc_lat": 31.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -146.0847, 19.1824 ], [ -138.7533, 27.0742 ], [ -131.1243, 33.3148 ], [ -134.5135, 40.3906 ], [ -141.9805, 38.3083 ], [ -142.0425, 30.3714 ], [ -146.0847, 19.1824 ], [ -151.3288, 18.3977 ], [ -153.1844, 17.4569 ], [ -152.6307, 15.7979 ], [ -151.3288, 18.3977 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TheSickle", "n": "The Sickle", "es": "La Hoz", "p": 3, "loc_lon": 149.25, "loc_lat": 5.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.093, 11.9672 ], [ 151.8331, 16.7627 ], [ 154.9931, 19.8415 ], [ 154.1726, 23.4173 ], [ 148.1909, 26.007 ], [ 146.4628, 23.7743 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SummerTriangle", "n": "Summer Triangle", "es": "Triángulo Estival", "p": 1, "loc_lon": -67.5, "loc_lat": 38.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -80.7653, 38.7837 ], [ -62.3042, 8.8683 ], [ -49.642, 45.2803 ], [ -80.7653, 38.7837 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NorthernCross", "n": "Northern Cross", "es": "", "p": 3, "loc_lon": -40.5, "loc_lat": 42.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -49.642, 45.2803 ], [ -54.4429, 40.2567 ], [ -67.3197, 27.9597 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NorthernCross", "n": "Northern Cross", "es": "", "p": 3, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -63.7563, 45.1308 ], [ -54.4429, 40.2567 ], [ -48.4472, 33.9703 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PegasusSquare", "n": "Pegasus Square", "es": "Cuadrante de Pegaso", "p": 2, "loc_lon": -5.25, "loc_lat": 10.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -14.0564, 28.0828 ], [ -13.8098, 15.2053 ], [ 3.309, 15.1836 ], [ 2.0969, 29.0904 ], [ -14.0564, 28.0828 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Teapot", "n": "Teapot", "es": "La Tetera", "p": 2, "loc_lon": -82.5, "loc_lat": -19.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.347, -29.8801 ], [ -78.5859, -26.9908 ], [ -83.0073, -25.4217 ], [ -84.7515, -29.8281 ], [ -83.957, -34.3846 ], [ -74.347, -29.8801 ], [ -73.265, -27.6704 ], [ -76.1836, -26.2967 ], [ -84.7515, -29.8281 ], [ -88.548, -30.4241 ], [ -83.957, -34.3846 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Teaspoon", "n": "Teaspoon", "es": "", "p": 4, "loc_lon": -72.0, "loc_lat": -23.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -69.5818, -17.8472 ], [ -70.5913, -18.9529 ], [ -72.559, -21.0236 ], [ -73.8292, -21.7415 ], [ -75.6647, -20.6563 ], [ -75.5675, -21.1067 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Fishhook", "n": "Fishhook", "es": "El Anzuelo", "p": 3, "loc_lon": -117.0, "loc_lat": -15.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -119.9166, -22.6217 ], [ -118.6407, -19.8055 ], [ -114.7029, -25.5928 ], [ -112.6481, -26.432 ], [ -111.0294, -28.216 ], [ -107.4591, -34.2932 ], [ -107.0324, -38.0474 ], [ -106.3541, -42.3613 ], [ -101.9617, -43.2392 ], [ -95.6703, -42.9978 ], [ -93.1038, -40.127 ], [ -94.378, -39.03 ], [ -96.5978, -37.1038 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SouthernCross", "n": "Southern Cross", "es": "Cruz del Sur", "p": 1, "loc_lon": -172.5, "loc_lat": -51.4 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -168.0697, -59.6888 ], [ -176.2137, -58.7489 ] ], [ [ -173.3504, -63.0991 ], [ -172.2085, -57.1132 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SouthernPointer", "n": "Southern Pointer", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -140.1039, -60.8375 ], [ -149.0441, -60.373 ], [ -168.0697, -59.6888 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SouthPole", "n": "South Pole", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -173.3504, -63.0991 ], [ -180.0, -89.9 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "DiamondCross", "n": "Diamond Cross", "es": "", "p": 3, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 138.2999, -69.7172 ], [ 160.7392, -64.3945 ] ], [ [ 146.7755, -65.072 ], [ 153.4342, -70.0379 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "FalseCross", "n": "False Cross", "es": "", "p": 3, "loc_lon": 132.0, "loc_lat": -63.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 140.5284, -55.0107 ], [ 125.6285, -59.5095 ] ], [ [ 131.1759, -54.7088 ], [ 139.2725, -59.2752 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "ArgoNavis", "n": "Argo Navis", "es": "", "p": 2, "loc_lon": 110.25, "loc_lat": -45.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 120.896, -40.0031 ], [ 130.0256, -35.3084 ], [ 130.8981, -33.1864 ], [ 132.633, -27.7098 ] ], [ [ 131.1759, -54.7088 ], [ 140.5284, -55.0107 ], [ 149.2156, -54.5678 ], [ 161.6924, -49.4203 ], [ 153.684, -42.1219 ], [ 142.675, -40.4667 ], [ 136.999, -43.4326 ], [ 122.3831, -47.3366 ] ], [ [ 95.988, -52.6957 ], [ 138.2999, -69.7172 ], [ 153.4342, -70.0379 ], [ 160.7392, -64.3945 ], [ 158.0061, -61.6853 ], [ 139.2725, -59.2752 ], [ 131.1759, -54.7088 ], [ 122.3831, -47.3366 ], [ 120.896, -40.0031 ], [ 121.886, -24.3043 ], [ 117.3236, -24.8598 ], [ 114.7078, -26.8038 ], [ 109.2857, -37.0975 ], [ 99.4403, -43.1959 ], [ 95.988, -52.6957 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HeadoftheWhale", "n": "Head of the Whale", "es": "", "p": 4, "loc_lon": 42.0, "loc_lat": 12.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 45.5699, 4.0897 ], [ 44.9287, 8.9074 ], [ 41.2356, 10.1141 ], [ 37.0398, 8.4601 ], [ 38.9686, 5.5932 ], [ 40.8252, 3.2358 ], [ 45.5699, 4.0897 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "MedusasHead", "n": "Medusa's Head", "es": "", "p": 4, "loc_lon": 45.0, "loc_lat": 36.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 47.0422, 40.9556 ], [ 47.8224, 39.6116 ], [ 46.2941, 38.8403 ], [ 44.6903, 39.6627 ], [ 44.9162, 41.0329 ], [ 47.0422, 40.9556 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TheKids", "n": "The Kids", "es": "", "p": 3, "loc_lon": 72.0, "loc_lat": 39.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 75.4922, 43.8233 ], [ 76.6287, 41.2345 ], [ 75.6195, 41.0758 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "FalseKids", "n": "False Kids", "es": "", "p": 4, "loc_lon": 90.0, "loc_lat": 35.5 }, "geometry": { "type": "LineString", "coordinates": [ [ 87.8725, 39.1485 ], [ 87.2935, 39.1811 ], [ 87.7602, 37.3056 ], [ 87.8725, 39.1485 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HerschelsTelescope", "n": "Herschel's Telescope", "es": "", "p": 5, "loc_lon": 112.5, "loc_lat": 44.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 99.7049, 39.9026 ], [ 99.8326, 42.4889 ], [ 100.7707, 44.5245 ], [ 101.9149, 48.7895 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HerschelsTelescope", "n": "Herschel's Telescope", "es": "", "p": 4, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 102.6914, 41.7812 ], [ 101.6847, 43.5774 ], [ 100.7707, 44.5245 ], [ 104.1336, 46.274 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Manger", "n": "Manger", "es": "", "p": 5, "loc_lon": 130.5, "loc_lat": 15.5 }, "geometry": { "type": "LineString", "coordinates": [ [ 130.8215, 21.4685 ], [ 131.1712, 18.1543 ], [ 127.8989, 18.0944 ], [ 128.1771, 20.4412 ], [ 130.8215, 21.4685 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LittleCrab", "n": "Little Crab", "es": "", "p": 5, "loc_lon": 120.0, "loc_lat": 11.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1971, 17.3087 ], [ 120.3762, 16.4553 ], [ 121.2687, 13.1182 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HeadofHydra", "n": "Head of Hydra", "es": "", "p": 4, "loc_lon": 131.25, "loc_lat": 1.5 }, "geometry": { "type": "LineString", "coordinates": [ [ 129.414, 5.7038 ], [ 129.6893, 3.3414 ], [ 130.8061, 3.3987 ], [ 132.1082, 5.8378 ], [ 131.6938, 6.4188 ], [ 129.414, 5.7038 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NightOwl", "n": "Night Owl", "es": "", "p": 5, "loc_lon": -150.0, "loc_lat": -23.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -150.3702, -24.9722 ], [ -149.9995, -25.0104 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "MiniScorpion", "n": "Mini Scorpion", "es": "", "p": 5, "loc_lon": -136.5, "loc_lat": -30.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -138.4997, -25.4432 ], [ -138.156, -25.6243 ], [ -138.0633, -26.0875 ], [ -138.0102, -26.6462 ], [ -137.4279, -27.9604 ], [ -135.3364, -27.6573 ], [ -134.4732, -28.0606 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sail", "n": "Sail", "es": "", "p": 3, "loc_lon": -173.25, "loc_lat": -25.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -171.4032, -23.3968 ], [ -177.4688, -22.6198 ], [ -176.0485, -17.5419 ], [ -172.5339, -16.5154 ], [ -171.4032, -23.3968 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "ThreePatriarchs", "n": "Three Patriarchs", "es": "", "p": 3, "loc_lon": -120.0, "loc_lat": -72.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -107.8338, -69.0277 ], [ -121.2143, -63.4307 ], [ -130.2726, -68.6795 ], [ -107.8338, -69.0277 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Keystone", "n": "Keystone", "es": "", "p": 3, "loc_lon": -108.0, "loc_lat": 29.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -109.276, 38.9223 ], [ -101.2382, 36.8092 ], [ -104.9276, 30.9264 ], [ -109.6785, 31.6027 ], [ -109.276, 38.9223 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Club", "n": "Club", "es": "", "p": 4, "loc_lon": -115.5, "loc_lat": 43.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -115.0648, 46.3134 ], [ -117.8076, 44.9349 ], [ -121.8311, 42.4515 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Coffin", "n": "Coffin", "es": "", "p": 3, "loc_lon": -103.5, "loc_lat": -3.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -110.7103, -10.5671 ], [ -102.4055, -15.7249 ], [ -94.1319, 4.5673 ], [ -96.2664, 12.56 ], [ -105.5829, 9.375 ], [ -110.7103, -10.5671 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PoniatowskisBull", "n": "Poniatowski's Bull", "es": "", "p": 5, "loc_lon": -88.5, "loc_lat": -1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.9342, 4.3686 ], [ -89.8387, 2.9316 ], [ -89.5617, 1.3051 ], [ -88.6363, 2.5001 ], [ -87.6088, 3.9933 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lozenge", "n": "Lozenge", "es": "", "p": 3, "loc_lon": -93.75, "loc_lat": 49.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -97.3918, 52.3014 ], [ -90.8485, 51.4889 ], [ -91.6178, 56.8726 ], [ -96.9332, 55.173 ], [ -97.3918, 52.3014 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Swoosh", "n": "Swoosh", "es": "", "p": 5, "loc_lon": -73.5, "loc_lat": -7.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -74.2729, -3.699 ], [ -73.7597, -4.0314 ], [ -73.4378, -4.8826 ], [ -74.5799, -5.7391 ], [ -75.7347, -5.8463 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "JobsCoffin", "n": "Job's Coffin", "es": "", "p": 4, "loc_lon": -49.5, "loc_lat": 11.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -50.0905, 15.9121 ], [ -50.6127, 14.5951 ], [ -49.1353, 15.0746 ], [ -48.3354, 16.1243 ], [ -50.0905, 15.9121 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Crossbow", "n": "Crossbow", "es": "", "p": 4, "loc_lon": -27.0, "loc_lat": 55.2 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -22.7072, 58.4152 ], [ -27.2863, 58.2013 ], [ -29.4809, 58.0004 ] ], [ [ -26.2409, 57.0436 ], [ -27.2863, 58.2013 ], [ -27.1226, 59.4145 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "WaterJar", "n": "Water Jar", "es": "", "p": 4, "loc_lon": -22.5, "loc_lat": 3.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -21.1609, -0.1175 ], [ -22.7921, -0.0199 ], [ -23.6807, 1.3774 ], [ -22.7921, -0.0199 ], [ -24.5859, -1.3873 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "DNAStrand", "n": "DNA Strand", "es": "", "p": 5, "loc_lon": -6.0, "loc_lat": -25.6 }, "geometry": { "type": "LineString", "coordinates": [ [ -13.3298, -23.7431 ], [ -12.5213, -22.4576 ], [ -12.6383, -21.1724 ], [ -6.6807, -20.9145 ], [ -8.4884, -20.642 ], [ -9.2574, -20.1006 ], [ -2.1611, -18.9092 ], [ -3.4962, -18.6783 ], [ -3.9497, -18.2769 ], [ -4.5591, -17.8165 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CircletofPisces", "n": "Circlet of Pisces", "es": "", "p": 5, "loc_lon": -7.5, "loc_lat": 8.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -5.0123, 5.6263 ], [ -8.0079, 6.379 ], [ -9.9142, 5.3813 ], [ -10.7086, 3.2823 ], [ -8.2669, 1.2556 ], [ -4.4883, 1.78 ], [ -3.402, 3.4868 ], [ -5.0123, 5.6263 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "FredericksGlory", "n": "Frederick's Glory", "es": "", "p": 4, "loc_lon": -4.5, "loc_lat": 41.5 }, "geometry": { "type": "LineString", "coordinates": [ [ -5.4658, 43.2681 ], [ -4.8979, 44.3339 ], [ -5.609, 46.4581 ], [ -4.8979, 44.3339 ], [ -3.4915, 46.4203 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lilium", "n": "Lilium", "es": "", "p": 4, "loc_lon": 40.5, "loc_lat": 31.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 40.863, 27.7071 ], [ 41.9773, 29.2471 ], [ 42.496, 27.2605 ], [ 40.863, 27.7071 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "DavisDog", "n": "Davis' Dog", "es": "", "p": 5, "loc_lon": 64.5, "loc_lat": 24.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 66.8227, 22.9963 ], [ 66.5769, 22.8136 ], [ 66.3542, 22.2 ], [ 64.9029, 21.7735 ], [ 64.5967, 21.5793 ], [ 64.3153, 20.5786 ] ], [ [ 65.8849, 20.982 ], [ 64.9029, 21.7735 ], [ 64.8587, 21.1423 ], [ 65.5947, 20.8214 ] ], [ [ 66.3542, 22.2 ], [ 67.0033, 21.6199 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SkipLoader", "n": "Skip Loader", "es": "", "p": 4, "loc_lon": -175.5, "loc_lat": -5.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -164.4558, 10.9592 ], [ -166.0991, 3.3975 ], [ -169.5848, -1.4494 ], [ -175.0235, -0.6668 ], [ -180.0, 0.990170675229708 ] ], [ [ 180.0, 0.990170675229708 ], [ 177.6738, 1.7647 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "QuadransMuralis", "n": "Quadrans Muralis", "es": "", "p": 5, "loc_lon": -123.0, "loc_lat": 57.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -129.9785, 51.9585 ], [ -126.1825, 53.9221 ], [ -125.6166, 54.5087 ], [ -123.092, 55.3766 ], [ -121.931, 55.8267 ], [ -124.2885, 52.3609 ], [ -125.3575, 50.4233 ] ], [ [ -133.4303, 54.5563 ], [ -123.3552, 55.4748 ], [ -121.931, 55.8267 ], [ -120.5523, 54.7498 ], [ -119.4768, 52.9159 ], [ -115.2033, 49.0382 ], [ -125.3575, 50.4233 ], [ -129.9785, 51.9585 ], [ -133.4303, 54.5563 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UMa-Vir", "n": "UMa-Vir", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -159.0186, 54.9254 ], [ -153.1148, 49.3133 ], [ -146.0847, 19.1824 ], [ -158.7018, -11.1613 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UMa-Leo", "n": "UMa-Leo", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -176.1435, 57.0326 ], [ -180.0, 54.648324661035794 ] ], [ [ 180.0, 54.648324661035794 ], [ 178.4577, 53.6948 ], [ 163.3279, 34.2149 ], [ 154.9931, 19.8415 ], [ 152.093, 11.9672 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UMa-Gem", "n": "UMa-Gem", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -176.1435, 57.0326 ], [ -180.0, 56.896294877202905 ] ], [ [ 180.0, 56.896294877202905 ], [ 165.4603, 56.3824 ], [ 116.329, 28.0262 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CMa-Tau", "n": "CMa-Tau", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 101.2872, -16.7161 ], [ 85.1897, -1.9426 ], [ 84.0534, -1.2019 ], [ 83.0017, -0.2991 ], [ 68.9802, 16.5093 ], [ 56.8712, 24.1051 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UMi-Spring", "n": "UMi-Spring", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 37.9546, 89.2641 ], [ 2.2945, 59.1498 ], [ 2.0969, 29.0904 ], [ 0.0, 0.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Peg-Per", "n": "Peg-Per", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -14.0564, 28.0828 ], [ 2.0969, 29.0904 ], [ 17.433, 35.6206 ], [ 30.9748, 42.3297 ], [ 51.0807, 49.8612 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cas-Aur", "n": "Cas-Aur", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 14.1772, 60.7167 ], [ 21.454, 60.2353 ], [ 79.1723, 45.998 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cas-Cyg", "n": "Cas-Cyg", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ 21.454, 60.2353 ], [ 14.1772, 60.7167 ], [ -0.015, 61.0 ], [ 0.015, 61.0 ], [ -49.642, 45.2803 ], [ -62.3042, 8.8683 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Boo-Sgr", "n": "Boo-Sgr", "es": "", "p": 6, "loc_lon": 0.0, "loc_lat": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -165.9931, 38.3184 ], [ -146.0847, 19.1824 ], [ -112.6481, -26.432 ], [ -90.015, -34.3 ] ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,91 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "constellations.borders.cn", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "ids": "1" }, "geometry": { "type": "LineString", "coordinates": [ [ 56.2185, 50.0 ], [ 67.155, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "2" }, "geometry": { "type": "LineString", "coordinates": [ [ -13.809, 50.0 ], [ 3.309, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "3" }, "geometry": { "type": "LineString", "coordinates": [ [ 83.784, 50.0 ], [ 85.1895, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "4" }, "geometry": { "type": "LineString", "coordinates": [ [ -146.7765, 50.0 ], [ -137.2815, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "5" }, "geometry": { "type": "LineString", "coordinates": [ [ -88.548, 50.0 ], [ -78.585, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "6" }, "geometry": { "type": "LineString", "coordinates": [ [ -137.2815, 50.0 ], [ -120.2865, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "7" }, "geometry": { "type": "LineString", "coordinates": [ [ 95.7405, 50.0 ], [ 127.899, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "8" }, "geometry": { "type": "LineString", "coordinates": [ [ -107.0325, 50.0 ], [ -88.548, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "9" }, "geometry": { "type": "LineString", "coordinates": [ [ -176.049, 50.0 ], [ -158.7015, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "10" }, "geometry": { "type": "LineString", "coordinates": [ [ 85.1895, 50.0 ], [ 95.7405, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "11" }, "geometry": { "type": "LineString", "coordinates": [ [ -158.7015, 50.0 ], [ -146.7765, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "12" }, "geometry": { "type": "LineString", "coordinates": [ [ 3.309, 50.0 ], [ 14.301, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "13" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.899, 50.0 ], [ 129.414, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.301, 50.0 ], [ 28.6605, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "15" }, "geometry": { "type": "LineString", "coordinates": [ [ 40.863, 50.0 ], [ 56.2185, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "16" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.585, 50.0 ], [ -54.747, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ -54.747, 50.0 ], [ -48.081, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -28.554, 50.0 ], [ -13.809, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ -37.11, 50.0 ], [ -28.554, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -114.7035, 50.0 ], [ -107.0325, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 28.6605, 50.0 ], [ 40.863, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2865, 50.0 ], [ -114.7035, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.414, 50.0 ], [ 141.897, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "28" }, "geometry": { "type": "LineString", "coordinates": [ [ -48.081, 50.0 ], [ -37.11, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "29" }, "geometry": { "type": "LineString", "coordinates": [ [ 147.87, 50.0 ], [ 164.9415, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "30" }, "geometry": { "type": "LineString", "coordinates": [ [ 141.897, 50.0 ], [ 147.87, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "31" }, "geometry": { "type": "LineString", "coordinates": [ [ 164.9415, 50.0 ], [ -176.049, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "34" }, "geometry": { "type": "LineString", "coordinates": [ [ 67.155, 50.0 ], [ 83.784, 50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "9,11" }, "geometry": { "type": "LineString", "coordinates": [ [ -158.7015, 50.0 ], [ -158.7015, -11.1615 ], [ -158.7015, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "11" }, "geometry": { "type": "LineString", "coordinates": [ [ -158.7015, -50.0 ], [ -146.7765, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "11,4" }, "geometry": { "type": "LineString", "coordinates": [ [ -146.7765, 50.0 ], [ -146.7765, -10.2729 ], [ -146.7765, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "4" }, "geometry": { "type": "LineString", "coordinates": [ [ -146.7765, -50.0 ], [ -137.2815, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "4,6" }, "geometry": { "type": "LineString", "coordinates": [ [ -137.2815, 50.0 ], [ -137.2815, -16.0421 ], [ -137.2815, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "6" }, "geometry": { "type": "LineString", "coordinates": [ [ -137.2815, -50.0 ], [ -120.2865, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "6,26" }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2865, 50.0 ], [ -120.2865, -26.1142 ], [ -120.2865, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ -120.2865, -50.0 ], [ -114.7035, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "26,24" }, "geometry": { "type": "LineString", "coordinates": [ [ -114.7035, 50.0 ], [ -114.7035, -25.5929 ], [ -114.7035, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "24" }, "geometry": { "type": "LineString", "coordinates": [ [ -114.7035, -50.0 ], [ -107.0325, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "24,8" }, "geometry": { "type": "LineString", "coordinates": [ [ -107.0325, 50.0 ], [ -107.0325, -38.0475 ], [ -107.0325, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "8" }, "geometry": { "type": "LineString", "coordinates": [ [ -107.0325, -50.0 ], [ -88.548, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "8,5" }, "geometry": { "type": "LineString", "coordinates": [ [ -88.548, 50.0 ], [ -88.548, -30.4252 ], [ -88.548, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "5" }, "geometry": { "type": "LineString", "coordinates": [ [ -88.548, -50.0 ], [ -78.585, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "5,16" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.585, 50.0 ], [ -78.585, -26.9908 ], [ -78.585, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "16" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.585, -50.0 ], [ -54.747, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "16,17" }, "geometry": { "type": "LineString", "coordinates": [ [ -54.747, 50.0 ], [ -54.747, -14.7814 ], [ -54.747, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ -54.747, -50.0 ], [ -48.081, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "17,28" }, "geometry": { "type": "LineString", "coordinates": [ [ -48.081, 50.0 ], [ -48.081, -9.496 ], [ -48.081, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "28" }, "geometry": { "type": "LineString", "coordinates": [ [ -48.081, -50.0 ], [ -37.11, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "28,23" }, "geometry": { "type": "LineString", "coordinates": [ [ -37.11, 50.0 ], [ -37.11, -5.5712 ], [ -37.11, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ -37.11, -50.0 ], [ -28.554, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "23,18" }, "geometry": { "type": "LineString", "coordinates": [ [ -28.554, 50.0 ], [ -28.554, -0.3199 ], [ -28.554, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "18" }, "geometry": { "type": "LineString", "coordinates": [ [ -28.554, -50.0 ], [ -13.809, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "18,2" }, "geometry": { "type": "LineString", "coordinates": [ [ -13.809, 50.0 ], [ -13.809, 15.2052 ], [ -13.809, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "2" }, "geometry": { "type": "LineString", "coordinates": [ [ -13.809, -50.0 ], [ 3.309, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "2,12" }, "geometry": { "type": "LineString", "coordinates": [ [ 3.309, 50.0 ], [ 3.309, 15.1836 ], [ 3.309, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "12" }, "geometry": { "type": "LineString", "coordinates": [ [ 3.309, -50.0 ], [ 14.301, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "12,14" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.301, 50.0 ], [ 14.301, 24.4174 ], [ 14.301, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "14" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.301, -50.0 ], [ 28.6605, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "14,25" }, "geometry": { "type": "LineString", "coordinates": [ [ 28.6605, 50.0 ], [ 28.6605, 20.8078 ], [ 28.6605, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 28.6605, -50.0 ], [ 40.863, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "25,15" }, "geometry": { "type": "LineString", "coordinates": [ [ 40.863, 50.0 ], [ 40.863, 27.7071 ], [ 40.863, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "15" }, "geometry": { "type": "LineString", "coordinates": [ [ 40.863, -50.0 ], [ 56.2185, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "15,1" }, "geometry": { "type": "LineString", "coordinates": [ [ 56.2185, 50.0 ], [ 56.2185, 24.1132 ], [ 56.2185, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "1" }, "geometry": { "type": "LineString", "coordinates": [ [ 56.2185, -50.0 ], [ 67.155, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "1,34" }, "geometry": { "type": "LineString", "coordinates": [ [ 67.155, 50.0 ], [ 67.155, 19.1802 ], [ 67.155, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "34" }, "geometry": { "type": "LineString", "coordinates": [ [ 67.155, -50.0 ], [ 83.784, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "34,3" }, "geometry": { "type": "LineString", "coordinates": [ [ 83.784, 50.0 ], [ 83.784, 9.9341 ], [ 83.784, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "3" }, "geometry": { "type": "LineString", "coordinates": [ [ 83.784, -50.0 ], [ 85.1895, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "3,10" }, "geometry": { "type": "LineString", "coordinates": [ [ 85.1895, 50.0 ], [ 85.1895, -1.9426 ], [ 85.1895, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "10" }, "geometry": { "type": "LineString", "coordinates": [ [ 85.1895, -50.0 ], [ 95.7405, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "10,7" }, "geometry": { "type": "LineString", "coordinates": [ [ 95.7405, 50.0 ], [ 95.7405, 22.5132 ], [ 95.7405, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "7" }, "geometry": { "type": "LineString", "coordinates": [ [ 95.7405, -50.0 ], [ 127.899, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "7,13" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.899, 50.0 ], [ 127.899, 18.0941 ], [ 127.899, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "13" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.899, -50.0 ], [ 129.414, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "13,27" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.414, 50.0 ], [ 129.414, 5.7038 ], [ 129.414, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.414, -50.0 ], [ 141.897, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "27,30" }, "geometry": { "type": "LineString", "coordinates": [ [ 141.897, 50.0 ], [ 141.897, -8.6584 ], [ 141.897, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "30" }, "geometry": { "type": "LineString", "coordinates": [ [ 141.897, -50.0 ], [ 147.87, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "30,29" }, "geometry": { "type": "LineString", "coordinates": [ [ 147.87, 50.0 ], [ 147.87, -14.8467 ], [ 147.87, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "29" }, "geometry": { "type": "LineString", "coordinates": [ [ 147.87, -50.0 ], [ 164.9415, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "29,31" }, "geometry": { "type": "LineString", "coordinates": [ [ 164.9415, 50.0 ], [ 164.9415, -18.2979 ], [ 164.9415, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "31" }, "geometry": { "type": "LineString", "coordinates": [ [ 164.9415, -50.0 ], [ -176.049, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "31,9" }, "geometry": { "type": "LineString", "coordinates": [ [ -176.049, 50.0 ], [ -176.049, -17.5419 ], [ -176.049, -50.0 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "9" }, "geometry": { "type": "LineString", "coordinates": [ [ -176.049, -50.0 ], [ -158.7015, -50.0 ] ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,264 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "constellations.borders", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "ids": "And,Lac" }, "geometry": { "type": "LineString", "coordinates": [ [ -15.5347, 35.1682 ], [ -15.6571, 53.168 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "And,Cas" }, "geometry": { "type": "LineString", "coordinates": [ [ -15.6571, 53.168 ], [ -8.5471, 53.187 ], [ -8.5343, 50.687 ], [ -4.7294, 50.6929 ], [ -4.7239, 48.6929 ], [ 4.1464, 48.6949 ], [ 4.1433, 46.6949 ], [ 14.7761, 46.6758 ], [ 14.7889, 48.6757 ], [ 18.5884, 48.6633 ], [ 18.6059, 50.6632 ], [ 22.4079, 50.6479 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "And,Per" }, "geometry": { "type": "LineString", "coordinates": [ [ 22.4079, 50.6479 ], [ 26.9685, 50.6257 ], [ 26.9314, 47.6258 ], [ 32.6215, 47.5928 ], [ 32.6738, 51.0926 ], [ 39.8855, 51.0424 ], [ 39.6793, 37.2932 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "And,Tri" }, "geometry": { "type": "LineString", "coordinates": [ [ 39.6793, 37.2932 ], [ 31.8711, 37.3471 ], [ 31.8543, 35.5971 ], [ 22.9108, 35.6453 ], [ 22.8974, 33.6454 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "And,Psc" }, "geometry": { "type": "LineString", "coordinates": [ [ 22.8974, 33.6454 ], [ 12.4431, 33.6819 ], [ 12.4135, 24.4319 ], [ 14.4241, 24.4266 ], [ 14.4148, 21.6766 ], [ 3.7399, 21.6952 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "And,Peg" }, "geometry": { "type": "LineString", "coordinates": [ [ 3.7399, 21.6952 ], [ 3.7406, 22.6952 ], [ 2.61, 22.6958 ], [ 2.6128, 28.6958 ], [ 1.6062, 28.696 ], [ 1.607, 32.0294 ], [ -2.1713, 32.0285 ], [ -2.1719, 32.7785 ], [ -5.9508, 32.7746 ], [ -5.9558, 35.1913 ], [ -15.5347, 35.1682 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ant,Pyx" }, "geometry": { "type": "LineString", "coordinates": [ [ 141.9043, -24.5425 ], [ 141.7716, -37.292 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ant,Vel" }, "geometry": { "type": "LineString", "coordinates": [ [ 141.7716, -37.292 ], [ 141.7341, -40.2919 ], [ 166.4565, -40.4246 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ant,Cen" }, "geometry": { "type": "LineString", "coordinates": [ [ 166.4565, -40.4246 ], [ 166.4794, -35.6747 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ant,Hya" }, "geometry": { "type": "LineString", "coordinates": [ [ 166.4794, -35.6747 ], [ 163.9585, -35.6665 ], [ 163.9779, -31.8332 ], [ 160.2014, -31.8186 ], [ 160.2129, -29.8186 ], [ 155.1813, -29.7948 ], [ 155.1993, -27.1282 ], [ 147.6593, -27.0835 ], [ 147.6797, -24.5836 ], [ 141.9043, -24.5425 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aps,Oct" }, "geometry": { "type": "LineString", "coordinates": [ [ -150.8889, -83.1201 ], [ -83.134, -82.4583 ], [ -85.8049, -74.9745 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aps,Pav" }, "geometry": { "type": "LineString", "coordinates": [ [ -85.8049, -74.9745 ], [ -86.7199, -67.4801 ], [ -94.2243, -67.5711 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aps,Ara" }, "geometry": { "type": "LineString", "coordinates": [ [ -94.2243, -67.5711 ], [ -101.7575, -67.6611 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aps,TrA" }, "geometry": { "type": "LineString", "coordinates": [ [ -101.7575, -67.6611 ], [ -101.5293, -70.1597 ], [ -135.8336, -70.5115 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aps,Cir" }, "geometry": { "type": "LineString", "coordinates": [ [ -135.8336, -70.5115 ], [ -152.5391, -70.6244 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aps,Mus" }, "geometry": { "type": "LineString", "coordinates": [ [ -152.5391, -70.6244 ], [ -152.2186, -75.6236 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aps,Cha" }, "geometry": { "type": "LineString", "coordinates": [ [ -152.2186, -75.6236 ], [ -150.8889, -83.1201 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aqr,Aql" }, "geometry": { "type": "LineString", "coordinates": [ [ -50.3154, -8.5634 ], [ -50.4012, 0.4362 ], [ -50.4201, 2.4361 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aqr,Del" }, "geometry": { "type": "LineString", "coordinates": [ [ -50.4201, 2.4361 ], [ -45.9189, 2.4773 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aqr,Equ" }, "geometry": { "type": "LineString", "coordinates": [ [ -45.9189, 2.4773 ], [ -38.4165, 2.5394 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aqr,Peg" }, "geometry": { "type": "LineString", "coordinates": [ [ -38.4165, 2.5394 ], [ -36.4157, 2.5544 ], [ -36.4213, 3.3044 ], [ -33.4198, 3.3257 ], [ -33.4129, 2.3257 ], [ -28.4112, 2.3576 ], [ -28.4127, 2.6076 ], [ -17.1578, 2.6622 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aqr,Psc" }, "geometry": { "type": "LineString", "coordinates": [ [ -17.1578, 2.6622 ], [ -17.1503, 0.6622 ], [ -17.1353, -3.3378 ], [ -0.8978, -3.3042 ], [ -0.8967, -6.3042 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aqr,Cet" }, "geometry": { "type": "LineString", "coordinates": [ [ -0.8967, -6.3042 ], [ -0.8894, -24.8042 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aqr,Scl" }, "geometry": { "type": "LineString", "coordinates": [ [ -0.8894, -24.8042 ], [ -13.319, -24.825 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aqr,PsA" }, "geometry": { "type": "LineString", "coordinates": [ [ -13.319, -24.825 ], [ -30.2297, -24.904 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aqr,Cap" }, "geometry": { "type": "LineString", "coordinates": [ [ -30.2297, -24.904 ], [ -30.3438, -8.4044 ], [ -38.3316, -8.4603 ], [ -38.2835, -14.4601 ], [ -50.2561, -14.5631 ], [ -50.3154, -8.5634 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aql,Ser" }, "geometry": { "type": "LineString", "coordinates": [ [ -79.6018, -3.8842 ], [ -79.6498, 0.1155 ], [ -79.6738, 2.1153 ], [ -75.4236, 2.1659 ], [ -75.474, 6.4156 ], [ -78.5414, 6.3792 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aql,Oph" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.5414, 6.3792 ], [ -78.612, 12.1288 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aql,Her" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.612, 12.1288 ], [ -75.5437, 12.1652 ], [ -75.6264, 18.6647 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aql,Sge" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.6264, 18.6647 ], [ -73.6245, 18.6882 ], [ -73.5945, 16.3551 ], [ -61.0788, 16.4957 ], [ -61.074, 16.0791 ], [ -56.441, 16.1275 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aql,Del" }, "geometry": { "type": "LineString", "coordinates": [ [ -56.441, 16.1275 ], [ -56.3633, 8.8779 ], [ -53.986, 8.9018 ], [ -53.9209, 2.4021 ], [ -50.4201, 2.4361 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aql,Cap" }, "geometry": { "type": "LineString", "coordinates": [ [ -50.3154, -8.5634 ], [ -58.3063, -8.6431 ], [ -58.2736, -11.6762 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aql,Sgr" }, "geometry": { "type": "LineString", "coordinates": [ [ -58.2736, -11.6762 ], [ -75.2559, -11.8664 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aql,Sct" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.2559, -11.8664 ], [ -75.3527, -3.8337 ], [ -79.6018, -3.8842 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ara,Nor" }, "geometry": { "type": "LineString", "coordinates": [ [ -110.9653, -60.2645 ], [ -111.4294, -45.7671 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ara,Sco" }, "geometry": { "type": "LineString", "coordinates": [ [ -111.4294, -45.7671 ], [ -90.1907, -45.5163 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ara,CrA" }, "geometry": { "type": "LineString", "coordinates": [ [ -90.1907, -45.5163 ], [ -87.691, -45.486 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ara,Tel" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.691, -45.486 ], [ -87.3277, -56.9838 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ara,Pav" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.3277, -56.9838 ], [ -94.8318, -57.0748 ], [ -94.2243, -67.5711 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ara,TrA" }, "geometry": { "type": "LineString", "coordinates": [ [ -101.7575, -67.6611 ], [ -104.275, -67.6906 ], [ -104.4576, -65.1916 ], [ -105.7165, -65.2063 ], [ -105.8049, -63.7901 ], [ -108.3237, -63.819 ], [ -108.4622, -61.2365 ], [ -110.9184, -61.2642 ], [ -110.9653, -60.2645 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ari,Psc" }, "geometry": { "type": "LineString", "coordinates": [ [ 31.6652, 10.5144 ], [ 26.6557, 10.5432 ], [ 26.7447, 25.6263 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ari,Tri" }, "geometry": { "type": "LineString", "coordinates": [ [ 26.7447, 25.6263 ], [ 30.5137, 25.6051 ], [ 30.5306, 27.855 ], [ 38.0701, 27.8048 ], [ 38.1032, 31.2213 ], [ 42.6284, 31.1865 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ari,Per" }, "geometry": { "type": "LineString", "coordinates": [ [ 42.6284, 31.1865 ], [ 52.4267, 31.1004 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ari,Tau" }, "geometry": { "type": "LineString", "coordinates": [ [ 52.4267, 31.1004 ], [ 52.2906, 19.4343 ], [ 51.0372, 19.4461 ], [ 50.9464, 10.3632 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ari,Cet" }, "geometry": { "type": "LineString", "coordinates": [ [ 50.9464, 10.3632 ], [ 31.6652, 10.5144 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aur,Per" }, "geometry": { "type": "LineString", "coordinates": [ [ 69.4869, 30.9219 ], [ 69.5738, 36.2547 ], [ 72.4573, 36.2219 ], [ 72.8403, 52.7196 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aur,Cam" }, "geometry": { "type": "LineString", "coordinates": [ [ 72.8403, 52.7196 ], [ 77.4848, 52.6656 ], [ 77.6068, 56.1648 ], [ 94.1311, 55.9658 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aur,Lyn" }, "geometry": { "type": "LineString", "coordinates": [ [ 94.1311, 55.9658 ], [ 94.0574, 53.9663 ], [ 100.046, 53.8938 ], [ 99.9195, 49.8946 ], [ 104.4064, 49.841 ], [ 104.2653, 44.3418 ], [ 112.7341, 44.2435 ], [ 112.5607, 35.2445 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aur,Gem" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.5607, 35.2445 ], [ 100.0903, 35.3906 ], [ 99.9657, 27.8913 ], [ 90.2211, 28.0093 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Aur,Tau" }, "geometry": { "type": "LineString", "coordinates": [ [ 90.2211, 28.0093 ], [ 90.2289, 28.5092 ], [ 73.2125, 28.7124 ], [ 73.2353, 30.2123 ], [ 69.4768, 30.2553 ], [ 69.4869, 30.9219 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Boo,Vir" }, "geometry": { "type": "LineString", "coordinates": [ [ -132.2185, 7.5254 ], [ -155.9362, 7.3606 ], [ -155.9711, 14.3605 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Boo,Com" }, "geometry": { "type": "LineString", "coordinates": [ [ -155.9711, 14.3605 ], [ -156.0461, 27.8603 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Boo,CVn" }, "geometry": { "type": "LineString", "coordinates": [ [ -156.0461, 27.8603 ], [ -149.2112, 27.8977 ], [ -149.2291, 30.1476 ], [ -148.1111, 30.1545 ], [ -148.3013, 47.9039 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Boo,UMa" }, "geometry": { "type": "LineString", "coordinates": [ [ -148.3013, 47.9039 ], [ -148.4156, 54.9036 ], [ -142.7488, 54.9422 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Boo,Dra" }, "geometry": { "type": "LineString", "coordinates": [ [ -142.7488, 54.9422 ], [ -130.4089, 55.0449 ], [ -130.3426, 52.5452 ], [ -122.9155, 52.6175 ], [ -122.8754, 51.1177 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Boo,Her" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.8754, 51.1177 ], [ -122.6346, 39.6189 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Boo,CrB" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6346, 39.6189 ], [ -127.3563, 39.5721 ], [ -127.253, 32.5726 ], [ -130.9841, 32.5377 ], [ -130.9005, 25.5381 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Boo,Ser" }, "geometry": { "type": "LineString", "coordinates": [ [ -130.9005, 25.5381 ], [ -132.3945, 25.5246 ], [ -132.2185, 7.5254 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cae,Hor" }, "geometry": { "type": "LineString", "coordinates": [ [ 65.0764, -39.7007 ], [ 64.8824, -48.6997 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cae,Dor" }, "geometry": { "type": "LineString", "coordinates": [ [ 64.8824, -48.6997 ], [ 68.3622, -48.7384 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cae,Pic" }, "geometry": { "type": "LineString", "coordinates": [ [ 68.3622, -48.7384 ], [ 68.4241, -46.2388 ], [ 73.4021, -46.2959 ], [ 73.4824, -42.7964 ], [ 75.9744, -42.8256 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cae,Col" }, "geometry": { "type": "LineString", "coordinates": [ [ 75.9744, -42.8256 ], [ 76.2549, -27.0772 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cae,Lep" }, "geometry": { "type": "LineString", "coordinates": [ [ 76.2549, -27.0772 ], [ 73.7593, -27.048 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cae,Eri" }, "geometry": { "type": "LineString", "coordinates": [ [ 73.7593, -27.048 ], [ 71.7633, -27.0249 ], [ 71.7224, -29.7746 ], [ 69.9767, -29.7547 ], [ 69.8624, -36.754 ], [ 65.1299, -36.701 ], [ 65.0764, -39.7007 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cam,Per" }, "geometry": { "type": "LineString", "coordinates": [ [ 72.8403, 52.7196 ], [ 52.3131, 52.9366 ], [ 52.3819, 55.4363 ], [ 49.854, 55.4597 ], [ 49.9135, 57.4594 ], [ 48.9009, 57.4685 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cam,Cas" }, "geometry": { "type": "LineString", "coordinates": [ [ 48.9009, 57.4685 ], [ 49.3955, 68.4663 ], [ 54.237, 68.4214 ], [ 55.3087, 77.4163 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cam,Cep" }, "geometry": { "type": "LineString", "coordinates": [ [ 55.3087, 77.4163 ], [ 56.7262, 77.4026 ], [ 57.5305, 80.3987 ], [ 80.4889, 80.1479 ], [ 84.5361, 85.1239 ], [ 127.9536, 84.6104 ], [ 130.4028, 86.0975 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cam,UMi" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, 85.997429396927146 ], [ -146.977, 85.9308 ], [ -143.2171, 79.445 ], [ -156.1908, 79.3629 ], [ -155.843, 76.3638 ], [ -164.1794, 76.3289 ] ], [ [ 130.4028, 86.0975 ], [ 180.0, 85.997429396927146 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cam,Dra" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -164.1794, 76.3289 ], [ -180.0, 76.313734689373334 ] ], [ [ 180.0, 76.313734689373334 ], [ 174.4348, 76.3084 ], [ 174.5316, 79.3083 ], [ 162.8186, 79.3402 ], [ 163.1054, 81.3396 ], [ 142.1912, 81.4678 ], [ 140.6155, 72.9741 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cam,UMa" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.6155, 72.9741 ], [ 123.0862, 73.1384 ], [ 122.1291, 59.6434 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cam,Lyn" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.1291, 59.6434 ], [ 107.7532, 59.8037 ], [ 107.8516, 61.8031 ], [ 94.4075, 61.9641 ], [ 94.1311, 55.9658 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cnc,Hya" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.4043, 6.4701 ], [ 122.9214, 6.6302 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cnc,CMi" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.9214, 6.6302 ], [ 120.5483, 6.655 ], [ 120.5807, 9.6548 ], [ 118.8325, 9.6734 ], [ 118.8716, 13.1732 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cnc,Gem" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.8716, 13.1732 ], [ 118.9475, 19.6728 ], [ 120.0701, 19.6608 ], [ 120.1716, 27.6603 ], [ 121.916, 27.6419 ], [ 121.9932, 33.1415 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cnc,Lyn" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.9932, 33.1415 ], [ 140.646, 32.9691 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cnc,Leo" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.646, 32.9691 ], [ 140.4043, 6.4701 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CVn,UMa" }, "geometry": { "type": "LineString", "coordinates": [ [ -178.4055, 33.304 ], [ -178.4086, 44.304 ], [ -177.1736, 44.3043 ], [ -177.1815, 52.3043 ], [ -156.2576, 52.3598 ], [ -156.2049, 47.8599 ], [ -148.3013, 47.9039 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CVn,Com" }, "geometry": { "type": "LineString", "coordinates": [ [ -156.0461, 27.8603 ], [ -159.7734, 27.8438 ], [ -159.7923, 31.3437 ], [ -173.4423, 31.3074 ], [ -173.4457, 33.3074 ], [ -178.4055, 33.304 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CMa,Mon" }, "geometry": { "type": "LineString", "coordinates": [ [ 93.2156, -11.0302 ], [ 111.9734, -11.2521 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CMa,Pup" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.9734, -11.2521 ], [ 111.6772, -33.2505 ], [ 99.9039, -33.1128 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CMa,Col" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.9039, -33.1128 ], [ 92.8991, -33.0282 ], [ 92.9926, -27.2788 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CMa,Lep" }, "geometry": { "type": "LineString", "coordinates": [ [ 92.9926, -27.2788 ], [ 93.2156, -11.0302 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CMi,Mon" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.849, -0.3694 ], [ 109.5997, -0.2243 ], [ 109.6169, 1.2756 ], [ 106.8674, 1.3074 ], [ 106.9143, 5.3072 ], [ 106.6643, 5.3101 ], [ 106.7179, 9.8098 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CMi,Gem" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.7179, 9.8098 ], [ 106.7482, 12.3096 ], [ 114.241, 12.2239 ], [ 114.2527, 13.2238 ], [ 118.8716, 13.1732 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CMi,Hya" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.9214, 6.6302 ], [ 122.849, -0.3694 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cap,Sgr" }, "geometry": { "type": "LineString", "coordinates": [ [ -58.2736, -11.6762 ], [ -58.084, -27.6419 ], [ -53.102, -27.5913 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cap,Mic" }, "geometry": { "type": "LineString", "coordinates": [ [ -53.102, -27.5913 ], [ -38.1684, -27.4597 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cap,PsA" }, "geometry": { "type": "LineString", "coordinates": [ [ -38.1684, -27.4597 ], [ -38.1922, -24.9598 ], [ -30.2297, -24.904 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Car,Cen" }, "geometry": { "type": "LineString", "coordinates": [ [ 170.0848, -64.6843 ], [ 170.1559, -57.1843 ], [ 166.3373, -57.1744 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Car,Vel" }, "geometry": { "type": "LineString", "coordinates": [ [ 166.3373, -57.1744 ], [ 133.3237, -56.974 ], [ 133.3802, -54.9742 ], [ 127.5671, -54.9205 ], [ 127.6093, -53.4207 ], [ 123.3201, -53.3782 ], [ 123.3811, -51.1285 ], [ 120.8617, -51.1026 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Car,Pup" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8617, -51.1026 ], [ 90.7489, -50.7545 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Car,Pic" }, "geometry": { "type": "LineString", "coordinates": [ [ 90.7489, -50.7545 ], [ 90.6937, -52.5042 ], [ 93.1944, -52.5346 ], [ 93.1074, -55.034 ], [ 98.1143, -55.0946 ], [ 97.9951, -58.0938 ], [ 103.0111, -58.1537 ], [ 102.7033, -64.1519 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Car,Vol" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.7033, -64.1519 ], [ 136.0947, -64.499 ], [ 135.2437, -75.4955 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Car,Cha" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.2437, -75.4955 ], [ 169.857, -75.684 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Car,Mus" }, "geometry": { "type": "LineString", "coordinates": [ [ 169.857, -75.684 ], [ 170.0848, -64.6843 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cas,Lac" }, "geometry": { "type": "LineString", "coordinates": [ [ -15.6571, 53.168 ], [ -15.696, 56.918 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cas,Cep" }, "geometry": { "type": "LineString", "coordinates": [ [ -15.696, 56.918 ], [ -15.7309, 59.7512 ], [ -11.1403, 59.7647 ], [ -11.1835, 63.6813 ], [ -4.7824, 63.6929 ], [ -4.8021, 66.6929 ], [ 6.7638, 66.6924 ], [ 6.9229, 77.6923 ], [ 55.3087, 77.4163 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cas,Per" }, "geometry": { "type": "LineString", "coordinates": [ [ 48.9009, 57.4685 ], [ 38.7623, 57.5513 ], [ 38.8024, 59.0512 ], [ 30.7956, 59.1046 ], [ 30.7736, 58.1047 ], [ 27.5952, 58.1227 ], [ 27.5336, 54.6229 ], [ 22.456, 54.6478 ], [ 22.4079, 50.6479 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cen,Vel" }, "geometry": { "type": "LineString", "coordinates": [ [ 166.4565, -40.4246 ], [ 166.3373, -57.1744 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cen,Mus" }, "geometry": { "type": "LineString", "coordinates": [ [ 170.0848, -64.6843 ], [ 179.0574, -64.6958 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cen,Cru" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, -55.694661610225566 ], [ -165.6655, -55.6771 ], [ -165.5616, -64.677 ] ], [ [ 179.0574, -64.6958 ], [ 179.0708, -55.6958 ], [ 180.0, -55.694661610225566 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cen,Mus" }, "geometry": { "type": "LineString", "coordinates": [ [ -165.5616, -64.677 ], [ -155.3197, -64.6379 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cen,Cir" }, "geometry": { "type": "LineString", "coordinates": [ [ -155.3197, -64.6379 ], [ -139.485, -64.539 ], [ -139.7655, -55.5401 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cen,Lup" }, "geometry": { "type": "LineString", "coordinates": [ [ -139.7655, -55.5401 ], [ -145.3432, -55.58 ], [ -145.5497, -42.5806 ], [ -134.2037, -42.4942 ], [ -134.3692, -29.9949 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cen,Hya" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -134.3692, -29.9949 ], [ -169.5826, -30.1864 ], [ -169.5728, -33.6864 ], [ -174.6126, -33.6939 ], [ -174.6097, -35.6939 ], [ -180.0, -35.68842729589813 ] ], [ [ 180.0, -35.68842729589813 ], [ 166.4794, -35.6747 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cep,Dra" }, "geometry": { "type": "LineString", "coordinates": [ [ -59.4267, 59.8511 ], [ -59.5148, 61.8506 ], [ -53.1881, 61.9144 ], [ -53.4826, 67.413 ], [ -49.666, 67.449 ], [ -50.427, 75.4455 ], [ -58.1266, 75.3709 ], [ -59.3262, 80.3648 ], [ -46.2941, 80.4868 ], [ -51.279, 86.4656 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cep,UMi" }, "geometry": { "type": "LineString", "coordinates": [ [ -51.279, 86.4656 ], [ -51.6686, 86.6306 ], [ -16.4893, 86.8369 ], [ -20.739, 88.6639 ], [ 0.9483, 88.6092 ], [ 24.7077, 88.3564 ], [ 57.6647, 88.0063 ], [ 135.8325, 87.5689 ], [ 130.4028, 86.0975 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cep,Lac" }, "geometry": { "type": "LineString", "coordinates": [ [ -15.696, 56.918 ], [ -24.0891, 56.8826 ], [ -24.0687, 55.6326 ], [ -26.8624, 55.6178 ], [ -26.8253, 53.3679 ], [ -29.3608, 53.3533 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cep,Cyg" }, "geometry": { "type": "LineString", "coordinates": [ [ -29.3608, 53.3533 ], [ -29.3978, 55.4365 ], [ -50.1686, 55.2753 ], [ -50.3762, 61.3577 ], [ -51.3392, 61.3486 ], [ -51.2834, 59.9322 ], [ -59.4267, 59.8511 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cet,Psc" }, "geometry": { "type": "LineString", "coordinates": [ [ -0.8967, -6.3042 ], [ 6.5927, -6.3075 ], [ 6.6013, 0.6925 ], [ 6.6038, 2.6925 ], [ 31.6153, 2.5979 ], [ 31.6652, 10.5144 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cet,Tau" }, "geometry": { "type": "LineString", "coordinates": [ [ 50.9464, 10.3632 ], [ 50.853, 0.447 ], [ 50.8367, -1.303 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cet,Eri" }, "geometry": { "type": "LineString", "coordinates": [ [ 50.8367, -1.303 ], [ 41.3392, -1.221 ], [ 41.1488, -23.8536 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cet,For" }, "geometry": { "type": "LineString", "coordinates": [ [ 41.1488, -23.8536 ], [ 26.466, -23.7563 ], [ 26.4589, -24.8729 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cet,Scl" }, "geometry": { "type": "LineString", "coordinates": [ [ 26.4589, -24.8729 ], [ -0.8894, -24.8042 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cha,Oct" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, -83.017287118480581 ], [ -150.8889, -83.1201 ] ], [ [ 111.6521, -82.7759 ], [ 180.0, -83.017287118480581 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cha,Mus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -152.2186, -75.6236 ], [ -180.0, -75.667845830125188 ] ], [ [ 180.0, -75.667845830125188 ], [ 169.857, -75.684 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cha,Vol" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.2437, -75.4955 ], [ 114.2147, -75.2899 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cha,Men" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.2147, -75.2899 ], [ 111.6521, -82.7759 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cir,Mus" }, "geometry": { "type": "LineString", "coordinates": [ [ -155.3197, -64.6379 ], [ -155.2925, -65.6379 ], [ -152.732, -65.625 ], [ -152.5391, -70.6244 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cir,TrA" }, "geometry": { "type": "LineString", "coordinates": [ [ -135.8336, -70.5115 ], [ -135.9964, -68.0122 ], [ -133.4429, -67.9909 ], [ -133.6465, -64.0751 ], [ -129.8334, -64.0416 ], [ -129.9454, -61.4587 ], [ -127.4102, -61.4353 ], [ -127.4501, -60.4355 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cir,Nor" }, "geometry": { "type": "LineString", "coordinates": [ [ -127.4501, -60.4355 ], [ -127.6181, -55.4363 ], [ -131.9165, -55.4755 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cir,Lup" }, "geometry": { "type": "LineString", "coordinates": [ [ -131.9165, -55.4755 ], [ -139.7655, -55.5401 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Col,Lep" }, "geometry": { "type": "LineString", "coordinates": [ [ 76.2549, -27.0772 ], [ 92.9926, -27.2788 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Col,Pup" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.9039, -33.1128 ], [ 99.7089, -43.1116 ], [ 90.9518, -43.0058 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Col,Pic" }, "geometry": { "type": "LineString", "coordinates": [ [ 90.9518, -43.0058 ], [ 75.9744, -42.8256 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Com,Leo" }, "geometry": { "type": "LineString", "coordinates": [ [ 179.6045, 13.304 ], [ 179.6089, 28.304 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Com,UMa" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, 28.304 ], [ -178.4043, 28.304 ], [ -178.4055, 33.304 ] ], [ [ 179.6089, 28.304 ], [ 180.0, 28.304 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Com,Vir" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -155.9711, 14.3605 ], [ -165.9409, 14.3225 ], [ -165.938, 13.3225 ], [ -180.0, 13.304506086806157 ] ], [ [ 180.0, 13.304506086806157 ], [ 179.6045, 13.304 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CrA,Sgr" }, "geometry": { "type": "LineString", "coordinates": [ [ -90.3745, -37.0175 ], [ -70.4037, -36.7786 ], [ -70.2304, -45.2776 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CrA,Tel" }, "geometry": { "type": "LineString", "coordinates": [ [ -70.2304, -45.2776 ], [ -87.691, -45.486 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CrA,Sco" }, "geometry": { "type": "LineString", "coordinates": [ [ -90.1907, -45.5163 ], [ -90.3745, -37.0175 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CrB,Her" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.6346, 39.6189 ], [ -113.9281, 39.7117 ], [ -113.7202, 26.7129 ], [ -116.2133, 26.6855 ], [ -116.1998, 25.6856 ], [ -118.1943, 25.6641 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "CrB,Ser" }, "geometry": { "type": "LineString", "coordinates": [ [ -118.1943, 25.6641 ], [ -130.9005, 25.5381 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Crv,Vir" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -165.8331, -22.6773 ], [ -165.8669, -11.6774 ], [ -180.0, -11.694694749373184 ] ], [ [ 180.0, -11.694694749373184 ], [ 179.0968, -11.6958 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Crv,Crt" }, "geometry": { "type": "LineString", "coordinates": [ [ 179.0968, -11.6958 ], [ 179.0913, -25.1958 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Crv,Hya" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, -25.195044972244812 ], [ -169.5955, -25.1864 ], [ -169.6015, -22.6864 ], [ -165.8331, -22.6773 ] ], [ [ 179.0913, -25.1958 ], [ 180.0, -25.195044972244812 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Crt,Sex" }, "geometry": { "type": "LineString", "coordinates": [ [ 162.8271, -6.6622 ], [ 162.8079, -11.6621 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Crt,Hya" }, "geometry": { "type": "LineString", "coordinates": [ [ 162.8079, -11.6621 ], [ 162.7755, -19.6621 ], [ 164.0306, -19.6666 ], [ 164.0081, -25.1666 ], [ 179.0913, -25.1958 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Crt,Vir" }, "geometry": { "type": "LineString", "coordinates": [ [ 179.0968, -11.6958 ], [ 179.0986, -6.6958 ], [ 174.3423, -6.6917 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Crt,Leo" }, "geometry": { "type": "LineString", "coordinates": [ [ 174.3423, -6.6917 ], [ 162.8271, -6.6622 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cru,Mus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, -64.694647872049941 ], [ -165.5616, -64.677 ] ], [ [ 179.0574, -64.6958 ], [ 180.0, -64.694647872049941 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cyg,Lyr" }, "geometry": { "type": "LineString", "coordinates": [ [ -69.8674, 27.7324 ], [ -69.9047, 30.2322 ], [ -68.4012, 30.2493 ], [ -68.5074, 36.7487 ], [ -67.8803, 36.7558 ], [ -68.0165, 43.755 ], [ -71.5297, 43.7149 ], [ -71.6245, 47.7144 ], [ -72.8794, 47.6999 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cyg,Dra" }, "geometry": { "type": "LineString", "coordinates": [ [ -72.8794, 47.6999 ], [ -73.1235, 55.6984 ], [ -68.0954, 55.756 ], [ -68.1904, 58.2555 ], [ -62.8994, 58.3139 ], [ -62.9608, 59.8135 ], [ -59.4267, 59.8511 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cyg,Lac" }, "geometry": { "type": "LineString", "coordinates": [ [ -29.3608, 53.3533 ], [ -29.2373, 44.6036 ], [ -30.1214, 44.5983 ], [ -30.1184, 44.3483 ], [ -30.6234, 44.3451 ], [ -30.539, 36.5954 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cyg,Peg" }, "geometry": { "type": "LineString", "coordinates": [ [ -30.539, 36.5954 ], [ -32.68, 36.5815 ], [ -32.6048, 28.5818 ], [ -37.3798, 28.5481 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Cyg,Vul" }, "geometry": { "type": "LineString", "coordinates": [ [ -37.3798, 28.5481 ], [ -44.9161, 28.4872 ], [ -44.9274, 29.4871 ], [ -63.7491, 29.3011 ], [ -63.7278, 27.8012 ], [ -69.8674, 27.7324 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Del,Sge" }, "geometry": { "type": "LineString", "coordinates": [ [ -56.441, 16.1275 ], [ -54.8131, 16.144 ], [ -54.866, 20.8937 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Del,Vul" }, "geometry": { "type": "LineString", "coordinates": [ [ -54.866, 20.8937 ], [ -50.1031, 20.9399 ], [ -50.0923, 19.94 ], [ -42.8212, 20.0046 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Del,Peg" }, "geometry": { "type": "LineString", "coordinates": [ [ -42.8212, 20.0046 ], [ -42.7516, 12.3383 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Del,Equ" }, "geometry": { "type": "LineString", "coordinates": [ [ -42.7516, 12.3383 ], [ -45.3814, 12.3158 ], [ -45.3289, 6.4827 ], [ -45.9545, 6.4772 ], [ -45.9189, 2.4773 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dor,Ret" }, "geometry": { "type": "LineString", "coordinates": [ [ 58.3188, -52.7968 ], [ 60.7979, -52.8228 ], [ 60.6929, -56.1556 ], [ 65.6505, -56.2094 ], [ 65.5546, -58.7089 ], [ 69.2745, -58.7507 ], [ 68.794, -67.2479 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dor,Hyi" }, "geometry": { "type": "LineString", "coordinates": [ [ 68.794, -67.2479 ], [ 68.5815, -69.7467 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dor,Men" }, "geometry": { "type": "LineString", "coordinates": [ [ 68.5815, -69.7467 ], [ 98.4544, -70.1041 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dor,Vol" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.4544, -70.1041 ], [ 98.9372, -64.107 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dor,Pic" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.9372, -64.107 ], [ 90.1736, -64.0011 ], [ 90.3451, -61.0021 ], [ 82.8576, -60.9113 ], [ 83.0188, -57.4123 ], [ 75.5477, -57.323 ], [ 75.677, -53.8238 ], [ 68.2177, -53.7376 ], [ 68.3622, -48.7384 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dor,Hor" }, "geometry": { "type": "LineString", "coordinates": [ [ 64.8824, -48.6997 ], [ 62.1499, -48.67 ], [ 62.0986, -50.6697 ], [ 58.3772, -50.6305 ], [ 58.3188, -52.7968 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dra,UMi" }, "geometry": { "type": "LineString", "coordinates": [ [ -164.1794, 76.3289 ], [ -163.9025, 69.3294 ], [ -149.3492, 69.3991 ], [ -149.1794, 65.3997 ], [ -124.6704, 65.6023 ], [ -124.9494, 69.6009 ], [ -112.1589, 69.7383 ], [ -112.7793, 74.7348 ], [ -98.4634, 74.9033 ], [ -99.7821, 79.8953 ], [ -92.344, 79.9857 ], [ -98.2778, 85.9496 ], [ -51.279, 86.4656 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dra,Lyr" }, "geometry": { "type": "LineString", "coordinates": [ [ -72.8794, 47.6999 ], [ -85.6576, 47.5476 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dra,Her" }, "geometry": { "type": "LineString", "coordinates": [ [ -85.6576, 47.5476 ], [ -85.7423, 50.5471 ], [ -104.2136, 50.3244 ], [ -104.2432, 51.3243 ], [ -122.8754, 51.1177 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Dra,UMa" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -142.7488, 54.9422 ], [ -142.9547, 62.4415 ], [ -156.4264, 62.3594 ], [ -156.4495, 63.3593 ], [ -178.4184, 63.304 ], [ -178.4207, 65.804 ], [ -180.0, 65.805395886947593 ] ], [ [ 180.0, 65.805395886947593 ], [ 171.8493, 65.8126 ], [ 171.9614, 72.8125 ], [ 140.6155, 72.9741 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Equ,Peg" }, "geometry": { "type": "LineString", "coordinates": [ [ -42.7516, 12.3383 ], [ -41.7497, 12.3466 ], [ -41.7555, 13.0132 ], [ -38.4989, 13.0391 ], [ -38.4165, 2.5394 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Eri,Tau" }, "geometry": { "type": "LineString", "coordinates": [ [ 50.8367, -1.303 ], [ 55.3356, -1.3462 ], [ 55.3529, 0.4037 ], [ 70.8524, 0.2375 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Eri,Ori" }, "geometry": { "type": "LineString", "coordinates": [ [ 70.8524, 0.2375 ], [ 71.6023, 0.2289 ], [ 71.5564, -3.7708 ], [ 77.8044, -3.8437 ], [ 77.72, -10.8432 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Eri,Lep" }, "geometry": { "type": "LineString", "coordinates": [ [ 77.72, -10.8432 ], [ 75.2218, -10.8138 ], [ 75.1787, -14.3136 ], [ 73.9298, -14.299 ], [ 73.7593, -27.048 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Eri,Hor" }, "geometry": { "type": "LineString", "coordinates": [ [ 65.0764, -39.7007 ], [ 59.1059, -39.6368 ], [ 59.0314, -43.6364 ], [ 52.3268, -43.5694 ], [ 52.289, -45.5692 ], [ 46.0908, -45.5125 ], [ 46.0345, -48.5122 ], [ 41.0853, -48.471 ], [ 41.0477, -50.4709 ], [ 37.3412, -50.4426 ], [ 37.2833, -53.4424 ], [ 33.5841, -53.4165 ], [ 33.4894, -57.9162 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Eri,Hyi" }, "geometry": { "type": "LineString", "coordinates": [ [ 33.4894, -57.9162 ], [ 21.2062, -57.8484 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Eri,Phe" }, "geometry": { "type": "LineString", "coordinates": [ [ 21.2062, -57.8484 ], [ 21.2733, -52.8486 ], [ 24.9674, -52.8659 ], [ 24.9938, -50.8659 ], [ 28.6933, -50.8859 ], [ 28.7383, -47.5527 ], [ 36.1529, -47.6005 ], [ 36.264, -39.4342 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Eri,For" }, "geometry": { "type": "LineString", "coordinates": [ [ 36.264, -39.4342 ], [ 46.1873, -39.5129 ], [ 46.1933, -39.0963 ], [ 53.6443, -39.1651 ], [ 53.6996, -35.582 ], [ 57.4305, -35.6192 ], [ 57.5889, -24.0034 ], [ 41.1488, -23.8536 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "For,Phe" }, "geometry": { "type": "LineString", "coordinates": [ [ 36.264, -39.4342 ], [ 26.3507, -39.3726 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "For,Scl" }, "geometry": { "type": "LineString", "coordinates": [ [ 26.3507, -39.3726 ], [ 26.4589, -24.8729 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gem,Ori" }, "geometry": { "type": "LineString", "coordinates": [ [ 96.3728, 11.9333 ], [ 96.4439, 17.4329 ], [ 95.0696, 17.4495 ], [ 95.1241, 21.4492 ], [ 90.1252, 21.5099 ], [ 90.144, 22.8431 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gem,Tau" }, "geometry": { "type": "LineString", "coordinates": [ [ 90.144, 22.8431 ], [ 90.2211, 28.0093 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gem,Lyn" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.5607, 35.2445 ], [ 118.2897, 35.1811 ], [ 118.2581, 33.1812 ], [ 121.9932, 33.1415 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gem,Mon" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.7179, 9.8098 ], [ 105.7185, 9.8215 ], [ 105.7428, 11.8213 ], [ 96.3728, 11.9333 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gru,Mic" }, "geometry": { "type": "LineString", "coordinates": [ [ -38.0719, -36.4593 ], [ -37.9577, -44.9589 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gru,Ind" }, "geometry": { "type": "LineString", "coordinates": [ [ -37.9577, -44.9589 ], [ -37.8826, -49.4586 ], [ -28.0012, -49.3912 ], [ -27.8863, -56.3908 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gru,Tuc" }, "geometry": { "type": "LineString", "coordinates": [ [ -27.8863, -56.3908 ], [ -8.2315, -56.3127 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gru,Phe" }, "geometry": { "type": "LineString", "coordinates": [ [ -8.2315, -56.3127 ], [ -8.3073, -39.3128 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gru,Scl" }, "geometry": { "type": "LineString", "coordinates": [ [ -8.3073, -39.3128 ], [ -8.3166, -36.3128 ], [ -13.2725, -36.325 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Gru,PsA" }, "geometry": { "type": "LineString", "coordinates": [ [ -13.2725, -36.325 ], [ -38.0719, -36.4593 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Her,Ser" }, "geometry": { "type": "LineString", "coordinates": [ [ -114.4414, 3.7034 ], [ -117.1903, 3.6735 ], [ -117.3234, 15.6728 ], [ -119.8189, 15.6463 ], [ -119.889, 21.646 ], [ -118.1434, 21.6644 ], [ -118.1943, 25.6641 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Her,Lyr" }, "geometry": { "type": "LineString", "coordinates": [ [ -85.6576, 47.5476 ], [ -86.5331, 47.537 ], [ -86.1756, 30.0392 ], [ -83.2992, 30.074 ], [ -83.2371, 26.0744 ], [ -75.7301, 26.1641 ], [ -75.7228, 25.6641 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Her,Vul" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.7228, 25.6641 ], [ -75.6609, 21.2478 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Her,Sge" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.6609, 21.2478 ], [ -75.6264, 18.6647 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Her,Oph" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.612, 12.1288 ], [ -84.7969, 12.0543 ], [ -84.8267, 14.3875 ], [ -99.8231, 14.206 ], [ -99.8042, 12.7061 ], [ -107.2985, 12.6179 ], [ -107.1941, 3.7852 ], [ -114.4414, 3.7034 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hor,Ret" }, "geometry": { "type": "LineString", "coordinates": [ [ 58.3188, -52.7968 ], [ 53.365, -52.7471 ], [ 53.2368, -57.0798 ], [ 48.7911, -57.0378 ], [ 48.3627, -67.0358 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hor,Hyi" }, "geometry": { "type": "LineString", "coordinates": [ [ 48.3627, -67.0358 ], [ 33.2024, -66.9152 ], [ 33.4894, -57.9162 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hya,Leo" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.4043, 6.4701 ], [ 145.3984, 6.4328 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hya,Sex" }, "geometry": { "type": "LineString", "coordinates": [ [ 145.3984, 6.4328 ], [ 145.3489, -0.5671 ], [ 145.2703, -11.5668 ], [ 162.8079, -11.6621 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hya,Vir" }, "geometry": { "type": "LineString", "coordinates": [ [ -165.8331, -22.6773 ], [ -144.4869, -22.5728 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hya,Lib" }, "geometry": { "type": "LineString", "coordinates": [ [ -144.4869, -22.5728 ], [ -144.4663, -25.0727 ], [ -134.4234, -24.9951 ], [ -134.3692, -29.9949 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hya,Pyx" }, "geometry": { "type": "LineString", "coordinates": [ [ 141.9043, -24.5425 ], [ 137.6368, -24.5086 ], [ 137.685, -19.5088 ], [ 130.1635, -19.4424 ], [ 130.1843, -17.4425 ], [ 126.9271, -17.4113 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hya,Pup" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.9271, -17.4113 ], [ 126.9898, -11.4116 ], [ 122.7342, -11.3688 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hya,Mon" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.7342, -11.3688 ], [ 122.849, -0.3694 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hyi,Men" }, "geometry": { "type": "LineString", "coordinates": [ [ 68.5815, -69.7467 ], [ 67.9575, -74.7432 ], [ 52.0758, -74.5741 ], [ 50.0917, -82.0645 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hyi,Oct" }, "geometry": { "type": "LineString", "coordinates": [ [ 50.0917, -82.0645 ], [ 1.5334, -81.804 ], [ 1.5663, -74.304 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hyi,Tuc" }, "geometry": { "type": "LineString", "coordinates": [ [ 1.5663, -74.304 ], [ 12.3324, -74.3186 ], [ 12.2954, -75.3185 ], [ 20.6541, -75.3472 ], [ 21.2062, -57.8484 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Hyi,Ret" }, "geometry": { "type": "LineString", "coordinates": [ [ 48.3627, -67.0358 ], [ 68.794, -67.2479 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ind,Oct" }, "geometry": { "type": "LineString", "coordinates": [ [ -36.8152, -74.4545 ], [ -8.0022, -74.3125 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ind,Tuc" }, "geometry": { "type": "LineString", "coordinates": [ [ -8.0022, -74.3125 ], [ -8.1386, -66.8126 ], [ -27.6014, -66.89 ], [ -27.8863, -56.3908 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ind,Mic" }, "geometry": { "type": "LineString", "coordinates": [ [ -37.9577, -44.9589 ], [ -52.8307, -45.09 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ind,Tel" }, "geometry": { "type": "LineString", "coordinates": [ [ -52.8307, -45.09 ], [ -52.5412, -56.5886 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ind,Pav" }, "geometry": { "type": "LineString", "coordinates": [ [ -52.5412, -56.5886 ], [ -52.4352, -59.5881 ], [ -37.6513, -59.4577 ], [ -36.8152, -74.4545 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lac,Peg" }, "geometry": { "type": "LineString", "coordinates": [ [ -15.5347, 35.1682 ], [ -16.2908, 35.1656 ], [ -16.2935, 35.6656 ], [ -28.6404, 35.6069 ], [ -28.6495, 36.6069 ], [ -30.539, 36.5954 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Leo,Sex" }, "geometry": { "type": "LineString", "coordinates": [ [ 162.8271, -6.6622 ], [ 162.8497, -0.6622 ], [ 162.876, 6.3377 ], [ 145.3984, 6.4328 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Leo,LMi" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.646, 32.9691 ], [ 150.0844, 32.9023 ], [ 150.0423, 27.9024 ], [ 159.2384, 27.8529 ], [ 159.2109, 22.853 ], [ 162.9425, 22.8376 ], [ 162.9515, 24.8376 ], [ 166.6809, 24.825 ], [ 166.694, 28.325 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Leo,UMa" }, "geometry": { "type": "LineString", "coordinates": [ [ 166.694, 28.325 ], [ 179.6089, 28.304 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Leo,Vir" }, "geometry": { "type": "LineString", "coordinates": [ [ 179.6045, 13.304 ], [ 179.6037, 10.304 ], [ 174.3657, 10.3083 ], [ 174.3505, -0.6917 ], [ 174.3423, -6.6917 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "LMi,Lyn" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.646, 32.9691 ], [ 140.7216, 39.2188 ], [ 145.682, 39.1818 ], [ 145.7092, 41.4317 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "LMi,UMa" }, "geometry": { "type": "LineString", "coordinates": [ [ 145.7092, 41.4317 ], [ 154.3782, 41.3774 ], [ 154.3594, 39.3774 ], [ 163.5232, 39.3356 ], [ 163.4894, 33.3357 ], [ 166.7142, 33.325 ], [ 166.694, 28.325 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lep,Mon" }, "geometry": { "type": "LineString", "coordinates": [ [ 93.2156, -11.0302 ], [ 88.9658, -10.9785 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lep,Ori" }, "geometry": { "type": "LineString", "coordinates": [ [ 88.9658, -10.9785 ], [ 77.72, -10.8432 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lib,Vir" }, "geometry": { "type": "LineString", "coordinates": [ [ -132.147, -0.4743 ], [ -138.3969, -0.5269 ], [ -138.3329, -8.5267 ], [ -144.5915, -8.5731 ], [ -144.4869, -22.5728 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lib,Lup" }, "geometry": { "type": "LineString", "coordinates": [ [ -134.3692, -29.9949 ], [ -123.07, -29.8896 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lib,Sco" }, "geometry": { "type": "LineString", "coordinates": [ [ -123.07, -29.8896 ], [ -123.1869, -20.3902 ], [ -119.4282, -20.3516 ], [ -119.5627, -8.3523 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lib,Oph" }, "geometry": { "type": "LineString", "coordinates": [ [ -119.5627, -8.3523 ], [ -119.613, -3.6026 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lib,Ser" }, "geometry": { "type": "LineString", "coordinates": [ [ -119.613, -3.6026 ], [ -132.118, -3.7242 ], [ -132.147, -0.4743 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lup,Nor" }, "geometry": { "type": "LineString", "coordinates": [ [ -131.9165, -55.4755 ], [ -131.9433, -54.4756 ], [ -127.6466, -54.4364 ], [ -127.7928, -48.4371 ], [ -122.7527, -48.388 ], [ -122.8754, -42.3886 ], [ -117.8472, -42.3367 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lup,Sco" }, "geometry": { "type": "LineString", "coordinates": [ [ -117.8472, -42.3367 ], [ -118.0523, -29.8378 ], [ -123.07, -29.8896 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lyn,UMa" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.1291, 59.6434 ], [ 128.7991, 59.576 ], [ 128.4401, 46.5777 ], [ 139.5907, 46.4783 ], [ 139.5125, 41.4786 ], [ 145.7092, 41.4317 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Lyr,Vul" }, "geometry": { "type": "LineString", "coordinates": [ [ -69.8674, 27.7324 ], [ -69.8387, 25.7326 ], [ -75.7228, 25.6641 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Men,Oct" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.6521, -82.7759 ], [ 109.0197, -85.2614 ], [ 48.2329, -84.5554 ], [ 50.0917, -82.0645 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Men,Vol" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.4544, -70.1041 ], [ 97.7707, -75.1 ], [ 114.2147, -75.2899 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Mic,PsA" }, "geometry": { "type": "LineString", "coordinates": [ [ -38.1684, -27.4597 ], [ -38.0719, -36.4593 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Mic,Sgr" }, "geometry": { "type": "LineString", "coordinates": [ [ -52.8307, -45.09 ], [ -53.102, -27.5913 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Mon,Ori" }, "geometry": { "type": "LineString", "coordinates": [ [ 88.9658, -10.9785 ], [ 89.0524, -3.9791 ], [ 95.1771, -4.0534 ], [ 95.2257, -0.0537 ], [ 95.348, 9.9455 ], [ 96.3477, 9.9334 ], [ 96.3728, 11.9333 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Mon,Pup" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.7342, -11.3688 ], [ 111.9734, -11.2521 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Nor,TrA" }, "geometry": { "type": "LineString", "coordinates": [ [ -127.4501, -60.4355 ], [ -110.9653, -60.2645 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Nor,Sco" }, "geometry": { "type": "LineString", "coordinates": [ [ -111.4294, -45.7671 ], [ -111.5052, -42.2675 ], [ -117.8472, -42.3367 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Oct,Pav" }, "geometry": { "type": "LineString", "coordinates": [ [ -85.8049, -74.9745 ], [ -36.8152, -74.4545 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Oct,Tuc" }, "geometry": { "type": "LineString", "coordinates": [ [ -8.0022, -74.3125 ], [ 1.5663, -74.304 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Oph,Ser" }, "geometry": { "type": "LineString", "coordinates": [ [ -119.613, -3.6026 ], [ -114.3616, -3.5462 ], [ -114.3974, -0.2964 ], [ -114.4414, 3.7034 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Oph,Ser" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.5414, 6.3792 ], [ -84.7254, 6.3048 ], [ -84.704, 4.5549 ], [ -82.0789, 4.5866 ], [ -82.0608, 3.0867 ], [ -84.6858, 3.055 ], [ -84.6494, 0.0552 ], [ -90.899, -0.0206 ], [ -90.8503, -4.0204 ], [ -88.8503, -3.9961 ], [ -88.7763, -9.9956 ], [ -93.2762, -10.0502 ], [ -93.2553, -11.7168 ], [ -94.5056, -11.7319 ], [ -94.5265, -10.0654 ], [ -100.7779, -10.1404 ], [ -100.7026, -16.14 ], [ -94.1998, -16.0619 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Oph,Sgr" }, "geometry": { "type": "LineString", "coordinates": [ [ -94.1998, -16.0619 ], [ -93.9982, -30.0607 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Oph,Sco" }, "geometry": { "type": "LineString", "coordinates": [ [ -93.9982, -30.0607 ], [ -106.7647, -30.2123 ], [ -106.8443, -24.7961 ], [ -114.1086, -24.8781 ], [ -114.177, -19.5452 ], [ -112.5493, -19.5272 ], [ -112.5618, -18.5272 ], [ -114.1893, -18.5452 ], [ -114.3088, -8.2959 ], [ -119.5627, -8.3523 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ori,Tau" }, "geometry": { "type": "LineString", "coordinates": [ [ 70.8524, 0.2375 ], [ 71.034, 15.7365 ], [ 76.2889, 15.6755 ], [ 76.2953, 16.1755 ], [ 81.7987, 16.1101 ], [ 81.7922, 15.6101 ], [ 85.7936, 15.5619 ], [ 85.7551, 12.5622 ], [ 88.2554, 12.5319 ], [ 88.3272, 18.0314 ], [ 87.327, 18.0435 ], [ 87.3938, 22.8765 ], [ 90.144, 22.8431 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Pav,Tel" }, "geometry": { "type": "LineString", "coordinates": [ [ -52.5412, -56.5886 ], [ -87.3277, -56.9838 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Peg,Vul" }, "geometry": { "type": "LineString", "coordinates": [ [ -42.8212, 20.0046 ], [ -39.8116, 20.0291 ], [ -39.8483, 24.0289 ], [ -37.338, 24.0482 ], [ -37.3798, 28.5481 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Peg,Psc" }, "geometry": { "type": "LineString", "coordinates": [ [ 3.7399, 21.6952 ], [ 3.7341, 13.1952 ], [ 1.6032, 13.196 ], [ 1.6027, 10.696 ], [ -0.9029, 10.6958 ], [ -0.902, 8.1958 ], [ -17.1786, 8.1622 ], [ -17.1578, 2.6622 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Per,Tri" }, "geometry": { "type": "LineString", "coordinates": [ [ 42.6284, 31.1865 ], [ 42.6665, 34.5197 ], [ 40.4024, 34.5375 ], [ 40.4347, 37.2874 ], [ 39.6793, 37.2932 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Per,Tau" }, "geometry": { "type": "LineString", "coordinates": [ [ 69.4869, 30.9219 ], [ 52.4267, 31.1004 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Phe,Tuc" }, "geometry": { "type": "LineString", "coordinates": [ [ -8.2315, -56.3127 ], [ -8.2216, -57.8127 ], [ 21.2062, -57.8484 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Phe,Scl" }, "geometry": { "type": "LineString", "coordinates": [ [ 26.3507, -39.3726 ], [ 0.6029, -39.3039 ], [ -8.3073, -39.3128 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Pic,Vol" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.9372, -64.107 ], [ 102.7033, -64.1519 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Pic,Pup" }, "geometry": { "type": "LineString", "coordinates": [ [ 90.7489, -50.7545 ], [ 90.9518, -43.0058 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Psc,Tri" }, "geometry": { "type": "LineString", "coordinates": [ [ 22.8974, 33.6454 ], [ 22.8664, 28.6454 ], [ 26.7647, 28.6263 ], [ 26.7447, 25.6263 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "PsA,Scl" }, "geometry": { "type": "LineString", "coordinates": [ [ -13.2725, -36.325 ], [ -13.319, -24.825 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Pup,Vel" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8617, -51.1026 ], [ 121.0383, -43.3535 ], [ 126.5723, -43.4095 ], [ 126.6778, -37.16 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Pup,Pyx" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.6778, -37.16 ], [ 126.9271, -17.4113 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Pyx,Vel" }, "geometry": { "type": "LineString", "coordinates": [ [ 141.7716, -37.292 ], [ 126.6778, -37.16 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Sge,Vul" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.6609, 21.2478 ], [ -69.9037, 21.3148 ], [ -69.8787, 19.3983 ], [ -61.1143, 19.4955 ], [ -61.1397, 21.5787 ], [ -54.8746, 21.6437 ], [ -54.866, 20.8937 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Sgr,Sct" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.2559, -11.8664 ], [ -75.2063, -15.8328 ], [ -84.4505, -15.9436 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Sgr,Ser" }, "geometry": { "type": "LineString", "coordinates": [ [ -84.4505, -15.9436 ], [ -94.1998, -16.0619 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Sgr,Sco" }, "geometry": { "type": "LineString", "coordinates": [ [ -93.9982, -30.0607 ], [ -90.4972, -30.0182 ], [ -90.3745, -37.0175 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Sgr,Tel" }, "geometry": { "type": "LineString", "coordinates": [ [ -70.2304, -45.2776 ], [ -52.8307, -45.09 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Sct,Ser" }, "geometry": { "type": "LineString", "coordinates": [ [ -79.6018, -3.8842 ], [ -84.6009, -3.9445 ], [ -84.4505, -15.9436 ] ] } }, |
||||
{ "type": "Feature", "properties": { "ids": "Ser,Vir" }, "geometry": { "type": "LineString", "coordinates": [ [ -132.147, -0.4743 ], [ -132.2185, 7.5254 ] ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,35 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "constellations.bounds.cn", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "id": 1, "rank": 1, "name": "毕宿", "en": "Net" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.2185, 50.0 ], [ 56.2185, 24.1132 ], [ 56.2185, -50.0 ], [ 67.155, -50.0 ], [ 67.155, 19.1802 ], [ 67.155, 50.0 ], [ 56.2185, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 2, "rank": 1, "name": "壁宿", "en": "Wall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.809, 50.0 ], [ -13.809, 15.2052 ], [ -13.809, -50.0 ], [ 3.309, -50.0 ], [ 3.309, 15.1836 ], [ 3.309, 50.0 ], [ -13.809, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 3, "rank": 1, "name": "参宿", "en": "Three Stars" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.784, 50.0 ], [ 83.784, 9.9341 ], [ 83.784, -50.0 ], [ 85.1895, -50.0 ], [ 85.1895, -1.9426 ], [ 85.1895, 50.0 ], [ 83.784, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 4, "rank": 1, "name": "氐宿", "en": "Root" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.7765, 50.0 ], [ -146.7765, -10.2729 ], [ -146.7765, -50.0 ], [ -137.2815, -50.0 ], [ -137.2815, -16.0421 ], [ -137.2815, 50.0 ], [ -146.7765, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 5, "rank": 1, "name": "斗宿", "en": "Dipper" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.548, 50.0 ], [ -88.548, -30.4252 ], [ -88.548, -50.0 ], [ -78.585, -50.0 ], [ -78.585, -26.9908 ], [ -78.585, 50.0 ], [ -88.548, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 6, "rank": 1, "name": "房宿", "en": "Room" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -137.2815, 50.0 ], [ -137.2815, -16.0421 ], [ -137.2815, -50.0 ], [ -120.2865, -50.0 ], [ -120.2865, -26.1142 ], [ -120.2865, 50.0 ], [ -137.2815, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 7, "rank": 1, "name": "鬼宿", "en": "Ghosts" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.7405, 50.0 ], [ 95.7405, 22.5132 ], [ 95.7405, -50.0 ], [ 127.899, -50.0 ], [ 127.899, 18.0941 ], [ 127.899, 50.0 ], [ 95.7405, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 8, "rank": 1, "name": "箕宿", "en": "Winnowing Basket" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -107.0325, 50.0 ], [ -107.0325, -38.0475 ], [ -107.0325, -50.0 ], [ -88.548, -50.0 ], [ -88.548, -30.4252 ], [ -88.548, 50.0 ], [ -107.0325, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 9, "rank": 1, "name": "角宿", "en": "Horn" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -176.049, 50.0 ], [ -176.049, -17.5419 ], [ -176.049, -50.0 ], [ -158.7015, -50.0 ], [ -158.7015, -11.1615 ], [ -158.7015, 50.0 ], [ -176.049, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 10, "rank": 1, "name": "井宿", "en": "Well" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 85.1895, 50.0 ], [ 85.1895, -1.9426 ], [ 85.1895, -50.0 ], [ 95.7405, -50.0 ], [ 95.7405, 22.5132 ], [ 95.7405, 50.0 ], [ 85.1895, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 11, "rank": 1, "name": "亢宿", "en": "Neck" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.7015, 50.0 ], [ -158.7015, -11.1615 ], [ -158.7015, -50.0 ], [ -146.7765, -50.0 ], [ -146.7765, -10.2729 ], [ -146.7765, 50.0 ], [ -158.7015, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 12, "rank": 1, "name": "奎宿", "en": "Legs" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.309, 50.0 ], [ 3.309, 15.1836 ], [ 3.309, -50.0 ], [ 14.301, -50.0 ], [ 14.301, 24.4174 ], [ 14.301, 50.0 ], [ 3.309, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 13, "rank": 1, "name": "柳宿", "en": "Willow" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.899, 50.0 ], [ 127.899, 18.0941 ], [ 127.899, -50.0 ], [ 129.414, -50.0 ], [ 129.414, 5.7038 ], [ 129.414, 50.0 ], [ 127.899, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 14, "rank": 1, "name": "娄宿", "en": "Bond" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.301, 50.0 ], [ 14.301, 24.4174 ], [ 14.301, -50.0 ], [ 28.6605, -50.0 ], [ 28.6605, 20.8078 ], [ 28.6605, 50.0 ], [ 14.301, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 15, "rank": 1, "name": "昴宿", "en": "Hairy Head" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.863, 50.0 ], [ 40.863, 27.7071 ], [ 40.863, -50.0 ], [ 56.2185, -50.0 ], [ 56.2185, 24.1132 ], [ 56.2185, 50.0 ], [ 40.863, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 16, "rank": 1, "name": "牛宿", "en": "Ox" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.585, 50.0 ], [ -78.585, -26.9908 ], [ -78.585, -50.0 ], [ -54.747, -50.0 ], [ -54.747, -14.7814 ], [ -54.747, 50.0 ], [ -78.585, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 17, "rank": 1, "name": "女宿", "en": "Girl" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.747, 50.0 ], [ -54.747, -14.7814 ], [ -54.747, -50.0 ], [ -48.081, -50.0 ], [ -48.081, -9.496 ], [ -48.081, 50.0 ], [ -54.747, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 18, "rank": 1, "name": "室宿", "en": "Encampment" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -28.554, 50.0 ], [ -28.554, -0.3199 ], [ -28.554, -50.0 ], [ -13.809, -50.0 ], [ -13.809, 15.2052 ], [ -13.809, 50.0 ], [ -28.554, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 23, "rank": 1, "name": "危宿", "en": "Rooftop" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -37.11, 50.0 ], [ -37.11, -5.5712 ], [ -37.11, -50.0 ], [ -28.554, -50.0 ], [ -28.554, -0.3199 ], [ -28.554, 50.0 ], [ -37.11, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 24, "rank": 1, "name": "尾宿", "en": "Tail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.7035, 50.0 ], [ -114.7035, -25.5929 ], [ -114.7035, -50.0 ], [ -107.0325, -50.0 ], [ -107.0325, -38.0475 ], [ -107.0325, 50.0 ], [ -114.7035, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 25, "rank": 1, "name": "胃宿", "en": "Stomach" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.6605, 50.0 ], [ 28.6605, 20.8078 ], [ 28.6605, -50.0 ], [ 40.863, -50.0 ], [ 40.863, 27.7071 ], [ 40.863, 50.0 ], [ 28.6605, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 26, "rank": 1, "name": "心宿", "en": "Heart" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -120.2865, 50.0 ], [ -120.2865, -26.1142 ], [ -120.2865, -50.0 ], [ -114.7035, -50.0 ], [ -114.7035, -25.5929 ], [ -114.7035, 50.0 ], [ -120.2865, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 27, "rank": 1, "name": "星宿", "en": "Star" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.414, 50.0 ], [ 129.414, 5.7038 ], [ 129.414, -50.0 ], [ 141.897, -50.0 ], [ 141.897, -8.6584 ], [ 141.897, 50.0 ], [ 129.414, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 28, "rank": 1, "name": "虚宿", "en": "Emptiness" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.081, 50.0 ], [ -48.081, -9.496 ], [ -48.081, -50.0 ], [ -37.11, -50.0 ], [ -37.11, -5.5712 ], [ -37.11, 50.0 ], [ -48.081, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 29, "rank": 1, "name": "翼宿", "en": "Wings" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.87, 50.0 ], [ 147.87, -14.8467 ], [ 147.87, -50.0 ], [ 164.9415, -50.0 ], [ 164.9415, -18.2979 ], [ 164.9415, 50.0 ], [ 147.87, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 30, "rank": 1, "name": "张宿", "en": "Extended Net" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.897, 50.0 ], [ 141.897, -8.6584 ], [ 141.897, -50.0 ], [ 147.87, -50.0 ], [ 147.87, -14.8467 ], [ 147.87, 50.0 ], [ 141.897, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 31, "rank": 1, "name": "轸宿", "en": "Chariot" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.9415, 50.0 ], [ 164.9415, -18.2979 ], [ 164.9415, -50.0 ], [ -176.049, -50.0 ], [ -176.049, -17.5419 ], [ -176.049, 50.0 ], [ 164.9415, 50.0 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 34, "rank": 1, "name": "觜宿", "en": "Turtle Beak" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.155, 50.0 ], [ 67.155, 19.1802 ], [ 67.155, -50.0 ], [ 83.784, -50.0 ], [ 83.784, 9.9341 ], [ 83.784, 50.0 ], [ 67.155, 50.0 ] ] ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,96 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "constellations.bounds", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "id": "And", "rank": 1, "name": "Andromeda" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -15.5347, 35.1682 ], [ -15.6571, 53.168 ], [ -8.5471, 53.187 ], [ -8.5343, 50.687 ], [ -4.7294, 50.6929 ], [ -4.7239, 48.6929 ], [ 4.1464, 48.6949 ], [ 4.1433, 46.6949 ], [ 14.7761, 46.6758 ], [ 14.7889, 48.6757 ], [ 18.5884, 48.6633 ], [ 18.6059, 50.6632 ], [ 22.4079, 50.6479 ], [ 26.9685, 50.6257 ], [ 26.9314, 47.6258 ], [ 32.6215, 47.5928 ], [ 32.6738, 51.0926 ], [ 39.8855, 51.0424 ], [ 39.6793, 37.2932 ], [ 31.8711, 37.3471 ], [ 31.8543, 35.5971 ], [ 22.9108, 35.6453 ], [ 22.8974, 33.6454 ], [ 12.4431, 33.6819 ], [ 12.4135, 24.4319 ], [ 14.4241, 24.4266 ], [ 14.4148, 21.6766 ], [ 3.7399, 21.6952 ], [ 3.7406, 22.6952 ], [ 2.61, 22.6958 ], [ 2.6128, 28.6958 ], [ 1.6062, 28.696 ], [ 1.607, 32.0294 ], [ -2.1713, 32.0285 ], [ -2.1719, 32.7785 ], [ -5.9508, 32.7746 ], [ -5.9558, 35.1913 ], [ -15.5347, 35.1682 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ant", "rank": 3, "name": "Antlia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.9043, -24.5425 ], [ 147.6797, -24.5836 ], [ 147.6593, -27.0835 ], [ 155.1993, -27.1282 ], [ 155.1813, -29.7948 ], [ 160.2129, -29.8186 ], [ 160.2014, -31.8186 ], [ 163.9779, -31.8332 ], [ 163.9585, -35.6665 ], [ 166.4794, -35.6747 ], [ 166.4565, -40.4246 ], [ 141.7341, -40.2919 ], [ 141.7716, -37.292 ], [ 141.9043, -24.5425 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Aps", "rank": 3, "name": "Apus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -150.8889, -83.1201 ], [ -152.2186, -75.6236 ], [ -152.5391, -70.6244 ], [ -135.8336, -70.5115 ], [ -101.5293, -70.1597 ], [ -101.7575, -67.6611 ], [ -94.2243, -67.5711 ], [ -86.7199, -67.4801 ], [ -85.8049, -74.9745 ], [ -83.134, -82.4583 ], [ -150.8889, -83.1201 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Aqr", "rank": 2, "name": "Aquarius" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.4012, 0.4362 ], [ -50.4201, 2.4361 ], [ -45.9189, 2.4773 ], [ -38.4165, 2.5394 ], [ -36.4157, 2.5544 ], [ -36.4213, 3.3044 ], [ -33.4198, 3.3257 ], [ -33.4129, 2.3257 ], [ -28.4112, 2.3576 ], [ -28.4127, 2.6076 ], [ -17.1578, 2.6622 ], [ -17.1503, 0.6622 ], [ -17.1353, -3.3378 ], [ -0.8978, -3.3042 ], [ -0.8967, -6.3042 ], [ -0.8894, -24.8042 ], [ -13.319, -24.825 ], [ -30.2297, -24.904 ], [ -30.3438, -8.4044 ], [ -38.3316, -8.4603 ], [ -38.2835, -14.4601 ], [ -50.2561, -14.5631 ], [ -50.3154, -8.5634 ], [ -50.4012, 0.4362 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Aql", "rank": 1, "name": "Aquila" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -79.6498, 0.1155 ], [ -79.6738, 2.1153 ], [ -75.4236, 2.1659 ], [ -75.474, 6.4156 ], [ -78.5414, 6.3792 ], [ -78.612, 12.1288 ], [ -75.5437, 12.1652 ], [ -75.6264, 18.6647 ], [ -73.6245, 18.6882 ], [ -73.5945, 16.3551 ], [ -61.0788, 16.4957 ], [ -61.074, 16.0791 ], [ -56.441, 16.1275 ], [ -56.3633, 8.8779 ], [ -53.986, 8.9018 ], [ -53.9209, 2.4021 ], [ -50.4201, 2.4361 ], [ -50.4012, 0.4362 ], [ -50.3154, -8.5634 ], [ -58.3063, -8.6431 ], [ -58.2736, -11.6762 ], [ -75.2559, -11.8664 ], [ -75.3527, -3.8337 ], [ -79.6018, -3.8842 ], [ -79.6498, 0.1155 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ara", "rank": 3, "name": "Ara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -110.9653, -60.2645 ], [ -111.4294, -45.7671 ], [ -90.1907, -45.5163 ], [ -87.691, -45.486 ], [ -87.3277, -56.9838 ], [ -94.8318, -57.0748 ], [ -94.2243, -67.5711 ], [ -101.7575, -67.6611 ], [ -104.275, -67.6906 ], [ -104.4576, -65.1916 ], [ -105.7165, -65.2063 ], [ -105.8049, -63.7901 ], [ -108.3237, -63.819 ], [ -108.4622, -61.2365 ], [ -110.9184, -61.2642 ], [ -110.9653, -60.2645 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ari", "rank": 1, "name": "Aries" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 31.6652, 10.5144 ], [ 26.6557, 10.5432 ], [ 26.7447, 25.6263 ], [ 30.5137, 25.6051 ], [ 30.5306, 27.855 ], [ 38.0701, 27.8048 ], [ 38.1032, 31.2213 ], [ 42.6284, 31.1865 ], [ 52.4267, 31.1004 ], [ 52.2906, 19.4343 ], [ 51.0372, 19.4461 ], [ 50.9464, 10.3632 ], [ 31.6652, 10.5144 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Aur", "rank": 1, "name": "Auriga" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.4869, 30.9219 ], [ 69.5738, 36.2547 ], [ 72.4573, 36.2219 ], [ 72.8403, 52.7196 ], [ 77.4848, 52.6656 ], [ 77.6068, 56.1648 ], [ 94.1311, 55.9658 ], [ 94.0574, 53.9663 ], [ 100.046, 53.8938 ], [ 99.9195, 49.8946 ], [ 104.4064, 49.841 ], [ 104.2653, 44.3418 ], [ 112.7341, 44.2435 ], [ 112.5607, 35.2445 ], [ 100.0903, 35.3906 ], [ 99.9657, 27.8913 ], [ 90.2211, 28.0093 ], [ 90.2289, 28.5092 ], [ 73.2125, 28.7124 ], [ 73.2353, 30.2123 ], [ 69.4768, 30.2553 ], [ 69.4869, 30.9219 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Boo", "rank": 1, "name": "Boötes" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -132.2185, 7.5254 ], [ -155.9362, 7.3606 ], [ -155.9711, 14.3605 ], [ -156.0461, 27.8603 ], [ -149.2112, 27.8977 ], [ -149.2291, 30.1476 ], [ -148.1111, 30.1545 ], [ -148.3013, 47.9039 ], [ -148.4156, 54.9036 ], [ -142.7488, 54.9422 ], [ -130.4089, 55.0449 ], [ -130.3426, 52.5452 ], [ -122.9155, 52.6175 ], [ -122.8754, 51.1177 ], [ -122.6346, 39.6189 ], [ -127.3563, 39.5721 ], [ -127.253, 32.5726 ], [ -130.9841, 32.5377 ], [ -130.9005, 25.5381 ], [ -132.3945, 25.5246 ], [ -132.2185, 7.5254 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cae", "rank": 3, "name": "Caelum" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 65.0764, -39.7007 ], [ 65.1299, -36.701 ], [ 69.8624, -36.754 ], [ 69.9767, -29.7547 ], [ 71.7224, -29.7746 ], [ 71.7633, -27.0249 ], [ 73.7593, -27.048 ], [ 76.2549, -27.0772 ], [ 75.9744, -42.8256 ], [ 73.4824, -42.7964 ], [ 73.4021, -46.2959 ], [ 68.4241, -46.2388 ], [ 68.3622, -48.7384 ], [ 64.8824, -48.6997 ], [ 65.0764, -39.7007 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cam", "rank": 2, "name": "Camelopardalis" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 77.4848, 52.6656 ], [ 72.8403, 52.7196 ], [ 52.3131, 52.9366 ], [ 52.3819, 55.4363 ], [ 49.854, 55.4597 ], [ 49.9135, 57.4594 ], [ 48.9009, 57.4685 ], [ 49.3955, 68.4663 ], [ 54.237, 68.4214 ], [ 55.3087, 77.4163 ], [ 56.7262, 77.4026 ], [ 57.5305, 80.3987 ], [ 80.4889, 80.1479 ], [ 84.5361, 85.1239 ], [ 127.9536, 84.6104 ], [ 130.4028, 86.0975 ], [ 180.0, 85.997429396927146 ], [ 180.0, 76.313734689373334 ], [ 174.4348, 76.3084 ], [ 174.5316, 79.3083 ], [ 162.8186, 79.3402 ], [ 163.1054, 81.3396 ], [ 142.1912, 81.4678 ], [ 140.6155, 72.9741 ], [ 123.0862, 73.1384 ], [ 122.1291, 59.6434 ], [ 107.7532, 59.8037 ], [ 107.8516, 61.8031 ], [ 94.4075, 61.9641 ], [ 94.1311, 55.9658 ], [ 77.6068, 56.1648 ], [ 77.4848, 52.6656 ] ] ], [ [ [ -143.2171, 79.445 ], [ -156.1908, 79.3629 ], [ -155.843, 76.3638 ], [ -164.1794, 76.3289 ], [ -180.0, 76.313734689373334 ], [ -180.0, 85.997429396927146 ], [ -146.977, 85.9308 ], [ -143.2171, 79.445 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cnc", "rank": 2, "name": "Cancer" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.4043, 6.4701 ], [ 122.9214, 6.6302 ], [ 120.5483, 6.655 ], [ 120.5807, 9.6548 ], [ 118.8325, 9.6734 ], [ 118.8716, 13.1732 ], [ 118.9475, 19.6728 ], [ 120.0701, 19.6608 ], [ 120.1716, 27.6603 ], [ 121.916, 27.6419 ], [ 121.9932, 33.1415 ], [ 140.646, 32.9691 ], [ 140.4043, 6.4701 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CVn", "rank": 2, "name": "Canes Venatici" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -178.4055, 33.304 ], [ -178.4086, 44.304 ], [ -177.1736, 44.3043 ], [ -177.1815, 52.3043 ], [ -156.2576, 52.3598 ], [ -156.2049, 47.8599 ], [ -148.3013, 47.9039 ], [ -148.1111, 30.1545 ], [ -149.2291, 30.1476 ], [ -149.2112, 27.8977 ], [ -156.0461, 27.8603 ], [ -159.7734, 27.8438 ], [ -159.7923, 31.3437 ], [ -173.4423, 31.3074 ], [ -173.4457, 33.3074 ], [ -178.4055, 33.304 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CMa", "rank": 1, "name": "Canis Major" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 93.2156, -11.0302 ], [ 111.9734, -11.2521 ], [ 111.6772, -33.2505 ], [ 99.9039, -33.1128 ], [ 92.8991, -33.0282 ], [ 92.9926, -27.2788 ], [ 93.2156, -11.0302 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CMi", "rank": 2, "name": "Canis Minor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.849, -0.3694 ], [ 109.5997, -0.2243 ], [ 109.6169, 1.2756 ], [ 106.8674, 1.3074 ], [ 106.9143, 5.3072 ], [ 106.6643, 5.3101 ], [ 106.7179, 9.8098 ], [ 106.7482, 12.3096 ], [ 114.241, 12.2239 ], [ 114.2527, 13.2238 ], [ 118.8716, 13.1732 ], [ 118.8325, 9.6734 ], [ 120.5807, 9.6548 ], [ 120.5483, 6.655 ], [ 122.9214, 6.6302 ], [ 122.849, -0.3694 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cap", "rank": 2, "name": "Capricornus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.3154, -8.5634 ], [ -50.2561, -14.5631 ], [ -38.2835, -14.4601 ], [ -38.3316, -8.4603 ], [ -30.3438, -8.4044 ], [ -30.2297, -24.904 ], [ -38.1922, -24.9598 ], [ -38.1684, -27.4597 ], [ -53.102, -27.5913 ], [ -58.084, -27.6419 ], [ -58.2736, -11.6762 ], [ -58.3063, -8.6431 ], [ -50.3154, -8.5634 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Car", "rank": 1, "name": "Carina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 170.1559, -57.1843 ], [ 170.0848, -64.6843 ], [ 169.857, -75.684 ], [ 135.2437, -75.4955 ], [ 136.0947, -64.499 ], [ 102.7033, -64.1519 ], [ 103.0111, -58.1537 ], [ 97.9951, -58.0938 ], [ 98.1143, -55.0946 ], [ 93.1074, -55.034 ], [ 93.1944, -52.5346 ], [ 90.6937, -52.5042 ], [ 90.7489, -50.7545 ], [ 120.8617, -51.1026 ], [ 123.3811, -51.1285 ], [ 123.3201, -53.3782 ], [ 127.6093, -53.4207 ], [ 127.5671, -54.9205 ], [ 133.3802, -54.9742 ], [ 133.3237, -56.974 ], [ 166.3373, -57.1744 ], [ 170.1559, -57.1843 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cas", "rank": 1, "name": "Cassiopeia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -15.6571, 53.168 ], [ -15.696, 56.918 ], [ -15.7309, 59.7512 ], [ -11.1403, 59.7647 ], [ -11.1835, 63.6813 ], [ -4.7824, 63.6929 ], [ -4.8021, 66.6929 ], [ 6.7638, 66.6924 ], [ 6.9229, 77.6923 ], [ 55.3087, 77.4163 ], [ 54.237, 68.4214 ], [ 49.3955, 68.4663 ], [ 48.9009, 57.4685 ], [ 38.7623, 57.5513 ], [ 38.8024, 59.0512 ], [ 30.7956, 59.1046 ], [ 30.7736, 58.1047 ], [ 27.5952, 58.1227 ], [ 27.5336, 54.6229 ], [ 22.456, 54.6478 ], [ 22.4079, 50.6479 ], [ 18.6059, 50.6632 ], [ 18.5884, 48.6633 ], [ 14.7889, 48.6757 ], [ 14.7761, 46.6758 ], [ 4.1433, 46.6949 ], [ 4.1464, 48.6949 ], [ -4.7239, 48.6929 ], [ -4.7294, 50.6929 ], [ -8.5343, 50.687 ], [ -8.5471, 53.187 ], [ -15.6571, 53.168 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cen", "rank": 1, "name": "Centaurus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.0574, -64.6958 ], [ 170.0848, -64.6843 ], [ 170.1559, -57.1843 ], [ 166.3373, -57.1744 ], [ 166.4565, -40.4246 ], [ 166.4794, -35.6747 ], [ 180.0, -35.68842729589813 ], [ 180.0, -55.694661610225566 ], [ 179.0708, -55.6958 ], [ 179.0574, -64.6958 ] ] ], [ [ [ -174.6126, -33.6939 ], [ -169.5728, -33.6864 ], [ -169.5826, -30.1864 ], [ -134.3692, -29.9949 ], [ -134.2037, -42.4942 ], [ -145.5497, -42.5806 ], [ -145.3432, -55.58 ], [ -139.7655, -55.5401 ], [ -139.485, -64.539 ], [ -155.3197, -64.6379 ], [ -165.5616, -64.677 ], [ -165.6655, -55.6771 ], [ -180.0, -55.694661610225566 ], [ -180.0, -35.68842729589813 ], [ -174.6097, -35.6939 ], [ -174.6126, -33.6939 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cep", "rank": 2, "name": "Cepheus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -59.4267, 59.8511 ], [ -59.5148, 61.8506 ], [ -53.1881, 61.9144 ], [ -53.4826, 67.413 ], [ -49.666, 67.449 ], [ -50.427, 75.4455 ], [ -58.1266, 75.3709 ], [ -59.3262, 80.3648 ], [ -46.2941, 80.4868 ], [ -50.881254972866373, 85.98855172055076 ], [ 130.4028, 86.0975 ], [ 127.9536, 84.6104 ], [ 84.5361, 85.1239 ], [ 80.4889, 80.1479 ], [ 57.5305, 80.3987 ], [ 56.7262, 77.4026 ], [ 55.3087, 77.4163 ], [ 6.9229, 77.6923 ], [ 6.7638, 66.6924 ], [ -4.8021, 66.6929 ], [ -4.7824, 63.6929 ], [ -11.1835, 63.6813 ], [ -11.1403, 59.7647 ], [ -15.7309, 59.7512 ], [ -15.696, 56.918 ], [ -24.0891, 56.8826 ], [ -24.0687, 55.6326 ], [ -26.8624, 55.6178 ], [ -26.8253, 53.3679 ], [ -29.3608, 53.3533 ], [ -29.3978, 55.4365 ], [ -50.1686, 55.2753 ], [ -50.3762, 61.3577 ], [ -51.3392, 61.3486 ], [ -51.2834, 59.9322 ], [ -59.4267, 59.8511 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cet", "rank": 1, "name": "Cetus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.6013, 0.6925 ], [ 6.6038, 2.6925 ], [ 31.6153, 2.5979 ], [ 31.6652, 10.5144 ], [ 50.9464, 10.3632 ], [ 50.853, 0.447 ], [ 50.8367, -1.303 ], [ 41.3392, -1.221 ], [ 41.1488, -23.8536 ], [ 26.466, -23.7563 ], [ 26.4589, -24.8729 ], [ -0.8894, -24.8042 ], [ -0.8967, -6.3042 ], [ 6.5927, -6.3075 ], [ 6.6013, 0.6925 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cha", "rank": 3, "name": "Chamaeleon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -150.8889, -83.1201 ], [ -180.0, -83.017287118480581 ], [ -180.0, -75.667845830125188 ], [ -152.2186, -75.6236 ], [ -150.8889, -83.1201 ] ] ], [ [ [ 114.2147, -75.2899 ], [ 135.2437, -75.4955 ], [ 169.857, -75.684 ], [ 180.0, -75.667845830125188 ], [ 180.0, -83.017287118480581 ], [ 111.6521, -82.7759 ], [ 114.2147, -75.2899 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cir", "rank": 3, "name": "Circinus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.3197, -64.6379 ], [ -139.485, -64.539 ], [ -139.7655, -55.5401 ], [ -131.9165, -55.4755 ], [ -127.6181, -55.4363 ], [ -127.4501, -60.4355 ], [ -127.4102, -61.4353 ], [ -129.9454, -61.4587 ], [ -129.8334, -64.0416 ], [ -133.6465, -64.0751 ], [ -133.4429, -67.9909 ], [ -135.9964, -68.0122 ], [ -135.8336, -70.5115 ], [ -152.5391, -70.6244 ], [ -152.732, -65.625 ], [ -155.2925, -65.6379 ], [ -155.3197, -64.6379 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Col", "rank": 3, "name": "Columba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.9744, -42.8256 ], [ 76.2549, -27.0772 ], [ 92.9926, -27.2788 ], [ 92.8991, -33.0282 ], [ 99.9039, -33.1128 ], [ 99.7089, -43.1116 ], [ 90.9518, -43.0058 ], [ 75.9744, -42.8256 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Com", "rank": 3, "name": "Coma Berenices" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.0, 28.304 ], [ 180.0, 13.304506086806157 ], [ 179.6045, 13.304 ], [ 179.6089, 28.304 ], [ 180.0, 28.304 ] ] ], [ [ [ -178.4055, 33.304 ], [ -173.4457, 33.3074 ], [ -173.4423, 31.3074 ], [ -159.7923, 31.3437 ], [ -159.7734, 27.8438 ], [ -156.0461, 27.8603 ], [ -155.9711, 14.3605 ], [ -165.9409, 14.3225 ], [ -165.938, 13.3225 ], [ -180.0, 13.304506086806157 ], [ -180.0, 28.304 ], [ -178.4043, 28.304 ], [ -178.4055, 33.304 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CrA", "rank": 3, "name": "Corona Austrina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.3745, -37.0175 ], [ -70.4037, -36.7786 ], [ -70.2304, -45.2776 ], [ -87.691, -45.486 ], [ -90.1907, -45.5163 ], [ -90.3745, -37.0175 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CrB", "rank": 2, "name": "Corona Borealis" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -130.9005, 25.5381 ], [ -130.9841, 32.5377 ], [ -127.253, 32.5726 ], [ -127.3563, 39.5721 ], [ -122.6346, 39.6189 ], [ -113.9281, 39.7117 ], [ -113.7202, 26.7129 ], [ -116.2133, 26.6855 ], [ -116.1998, 25.6856 ], [ -118.1943, 25.6641 ], [ -130.9005, 25.5381 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Crv", "rank": 3, "name": "Corvus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.0968, -11.6958 ], [ 180.0, -11.694694749373184 ], [ 180.0, -25.195044972244808 ], [ 179.0913, -25.1958 ], [ 179.0968, -11.6958 ] ] ], [ [ [ -165.8331, -22.6773 ], [ -169.6015, -22.6864 ], [ -169.5955, -25.1864 ], [ -180.0, -25.195044972244808 ], [ -180.0, -11.694694749373184 ], [ -165.8669, -11.6774 ], [ -165.8331, -22.6773 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Crt", "rank": 3, "name": "Crater" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.8271, -6.6622 ], [ 174.3423, -6.6917 ], [ 179.0986, -6.6958 ], [ 179.0968, -11.6958 ], [ 179.0913, -25.1958 ], [ 164.0081, -25.1666 ], [ 164.0306, -19.6666 ], [ 162.7755, -19.6621 ], [ 162.8079, -11.6621 ], [ 162.8271, -6.6622 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cru", "rank": 2, "name": "Crux" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 179.0708, -55.6958 ], [ 180.0, -55.694661610225566 ], [ 180.0, -64.694647872049941 ], [ 179.0574, -64.6958 ], [ 179.0708, -55.6958 ] ] ], [ [ [ -165.5616, -64.677 ], [ -180.0, -64.694647872049941 ], [ -180.0, -55.694661610225566 ], [ -165.6655, -55.6771 ], [ -165.5616, -64.677 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cyg", "rank": 1, "name": "Cygnus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.8674, 27.7324 ], [ -69.9047, 30.2322 ], [ -68.4012, 30.2493 ], [ -68.5074, 36.7487 ], [ -67.8803, 36.7558 ], [ -68.0165, 43.755 ], [ -71.5297, 43.7149 ], [ -71.6245, 47.7144 ], [ -72.8794, 47.6999 ], [ -73.1235, 55.6984 ], [ -68.0954, 55.756 ], [ -68.1904, 58.2555 ], [ -62.8994, 58.3139 ], [ -62.9608, 59.8135 ], [ -59.4267, 59.8511 ], [ -51.2834, 59.9322 ], [ -51.3392, 61.3486 ], [ -50.3762, 61.3577 ], [ -50.1686, 55.2753 ], [ -29.3978, 55.4365 ], [ -29.3608, 53.3533 ], [ -29.2373, 44.6036 ], [ -30.1214, 44.5983 ], [ -30.1184, 44.3483 ], [ -30.6234, 44.3451 ], [ -30.539, 36.5954 ], [ -32.68, 36.5815 ], [ -32.6048, 28.5818 ], [ -37.3798, 28.5481 ], [ -44.9161, 28.4872 ], [ -44.9274, 29.4871 ], [ -63.7491, 29.3011 ], [ -63.7278, 27.8012 ], [ -69.8674, 27.7324 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Del", "rank": 3, "name": "Delphinus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.4201, 2.4361 ], [ -53.9209, 2.4021 ], [ -53.986, 8.9018 ], [ -56.3633, 8.8779 ], [ -56.441, 16.1275 ], [ -54.8131, 16.144 ], [ -54.866, 20.8937 ], [ -50.1031, 20.9399 ], [ -50.0923, 19.94 ], [ -42.8212, 20.0046 ], [ -42.7516, 12.3383 ], [ -45.3814, 12.3158 ], [ -45.3289, 6.4827 ], [ -45.9545, 6.4772 ], [ -45.9189, 2.4773 ], [ -50.4201, 2.4361 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Dor", "rank": 3, "name": "Dorado" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.3188, -52.7968 ], [ 58.3772, -50.6305 ], [ 62.0986, -50.6697 ], [ 62.1499, -48.67 ], [ 64.8824, -48.6997 ], [ 68.3622, -48.7384 ], [ 68.2177, -53.7376 ], [ 75.677, -53.8238 ], [ 75.5477, -57.323 ], [ 83.0188, -57.4123 ], [ 82.8576, -60.9113 ], [ 90.3451, -61.0021 ], [ 90.1736, -64.0011 ], [ 98.9372, -64.107 ], [ 98.4544, -70.1041 ], [ 68.5815, -69.7467 ], [ 68.794, -67.2479 ], [ 69.2745, -58.7507 ], [ 65.5546, -58.7089 ], [ 65.6505, -56.2094 ], [ 60.6929, -56.1556 ], [ 60.7979, -52.8228 ], [ 58.3188, -52.7968 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Dra", "rank": 2, "name": "Draco" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.9025, 69.3294 ], [ -149.3492, 69.3991 ], [ -149.1794, 65.3997 ], [ -124.6704, 65.6023 ], [ -124.9494, 69.6009 ], [ -112.1589, 69.7383 ], [ -112.7793, 74.7348 ], [ -98.4634, 74.9033 ], [ -99.7821, 79.8953 ], [ -92.344, 79.9857 ], [ -98.2778, 85.9496 ], [ -97.26919787366009, 85.96067344649633 ], [ -50.881254972866373, 85.98855172055076 ], [ -46.2941, 80.4868 ], [ -59.3262, 80.3648 ], [ -58.1266, 75.3709 ], [ -50.427, 75.4455 ], [ -49.666, 67.449 ], [ -53.4826, 67.413 ], [ -53.1881, 61.9144 ], [ -59.5148, 61.8506 ], [ -59.4267, 59.8511 ], [ -62.9608, 59.8135 ], [ -62.8994, 58.3139 ], [ -68.1904, 58.2555 ], [ -68.0954, 55.756 ], [ -73.1235, 55.6984 ], [ -72.8794, 47.6999 ], [ -85.6576, 47.5476 ], [ -85.7423, 50.5471 ], [ -104.2136, 50.3244 ], [ -104.2432, 51.3243 ], [ -122.8754, 51.1177 ], [ -122.9155, 52.6175 ], [ -130.3426, 52.5452 ], [ -130.4089, 55.0449 ], [ -142.7488, 54.9422 ], [ -142.9547, 62.4415 ], [ -156.4264, 62.3594 ], [ -156.4495, 63.3593 ], [ -178.4184, 63.304 ], [ -178.4207, 65.804 ], [ -180.0, 65.805395886947593 ], [ -180.0, 76.313734689373334 ], [ -164.1794, 76.3289 ], [ -163.9025, 69.3294 ] ] ], [ [ [ 163.1054, 81.3396 ], [ 162.8186, 79.3402 ], [ 174.5316, 79.3083 ], [ 174.4348, 76.3084 ], [ 180.0, 76.313734689373334 ], [ 180.0, 65.805395886947593 ], [ 171.8493, 65.8126 ], [ 171.9614, 72.8125 ], [ 140.6155, 72.9741 ], [ 142.1912, 81.4678 ], [ 163.1054, 81.3396 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Equ", "rank": 3, "name": "Equuleus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.9189, 2.4773 ], [ -45.9545, 6.4772 ], [ -45.3289, 6.4827 ], [ -45.3814, 12.3158 ], [ -42.7516, 12.3383 ], [ -41.7497, 12.3466 ], [ -41.7555, 13.0132 ], [ -38.4989, 13.0391 ], [ -38.4165, 2.5394 ], [ -45.9189, 2.4773 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Eri", "rank": 1, "name": "Eridanus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.3529, 0.4037 ], [ 70.8524, 0.2375 ], [ 71.6023, 0.2289 ], [ 71.5564, -3.7708 ], [ 77.8044, -3.8437 ], [ 77.72, -10.8432 ], [ 75.2218, -10.8138 ], [ 75.1787, -14.3136 ], [ 73.9298, -14.299 ], [ 73.7593, -27.048 ], [ 71.7633, -27.0249 ], [ 71.7224, -29.7746 ], [ 69.9767, -29.7547 ], [ 69.8624, -36.754 ], [ 65.1299, -36.701 ], [ 65.0764, -39.7007 ], [ 59.1059, -39.6368 ], [ 59.0314, -43.6364 ], [ 52.3268, -43.5694 ], [ 52.289, -45.5692 ], [ 46.0908, -45.5125 ], [ 46.0345, -48.5122 ], [ 41.0853, -48.471 ], [ 41.0477, -50.4709 ], [ 37.3412, -50.4426 ], [ 37.2833, -53.4424 ], [ 33.5841, -53.4165 ], [ 33.4894, -57.9162 ], [ 21.2062, -57.8484 ], [ 21.2733, -52.8486 ], [ 24.9674, -52.8659 ], [ 24.9938, -50.8659 ], [ 28.6933, -50.8859 ], [ 28.7383, -47.5527 ], [ 36.1529, -47.6005 ], [ 36.264, -39.4342 ], [ 46.1873, -39.5129 ], [ 46.1933, -39.0963 ], [ 53.6443, -39.1651 ], [ 53.6996, -35.582 ], [ 57.4305, -35.6192 ], [ 57.5889, -24.0034 ], [ 41.1488, -23.8536 ], [ 41.3392, -1.221 ], [ 50.8367, -1.303 ], [ 55.3356, -1.3462 ], [ 55.3529, 0.4037 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "For", "rank": 3, "name": "Fornax" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.466, -23.7563 ], [ 41.1488, -23.8536 ], [ 57.5889, -24.0034 ], [ 57.4305, -35.6192 ], [ 53.6996, -35.582 ], [ 53.6443, -39.1651 ], [ 46.1933, -39.0963 ], [ 46.1873, -39.5129 ], [ 36.264, -39.4342 ], [ 26.3507, -39.3726 ], [ 26.4589, -24.8729 ], [ 26.466, -23.7563 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Gem", "rank": 1, "name": "Gemini" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.3728, 11.9333 ], [ 96.4439, 17.4329 ], [ 95.0696, 17.4495 ], [ 95.1241, 21.4492 ], [ 90.1252, 21.5099 ], [ 90.144, 22.8431 ], [ 90.2211, 28.0093 ], [ 99.9657, 27.8913 ], [ 100.0903, 35.3906 ], [ 112.5607, 35.2445 ], [ 118.2897, 35.1811 ], [ 118.2581, 33.1812 ], [ 121.9932, 33.1415 ], [ 121.916, 27.6419 ], [ 120.1716, 27.6603 ], [ 120.0701, 19.6608 ], [ 118.9475, 19.6728 ], [ 118.8716, 13.1732 ], [ 114.2527, 13.2238 ], [ 114.241, 12.2239 ], [ 106.7482, 12.3096 ], [ 106.7179, 9.8098 ], [ 105.7185, 9.8215 ], [ 105.7428, 11.8213 ], [ 96.3728, 11.9333 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Gru", "rank": 3, "name": "Grus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -38.0719, -36.4593 ], [ -13.2725, -36.325 ], [ -8.3166, -36.3128 ], [ -8.3073, -39.3128 ], [ -8.2315, -56.3127 ], [ -27.8863, -56.3908 ], [ -28.0012, -49.3912 ], [ -37.8826, -49.4586 ], [ -37.9577, -44.9589 ], [ -38.0719, -36.4593 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Her", "rank": 2, "name": "Hercules" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.4414, 3.7034 ], [ -117.1903, 3.6735 ], [ -117.3234, 15.6728 ], [ -119.8189, 15.6463 ], [ -119.889, 21.646 ], [ -118.1434, 21.6644 ], [ -118.1943, 25.6641 ], [ -116.1998, 25.6856 ], [ -116.2133, 26.6855 ], [ -113.7202, 26.7129 ], [ -113.9281, 39.7117 ], [ -122.6346, 39.6189 ], [ -122.8754, 51.1177 ], [ -104.2432, 51.3243 ], [ -104.2136, 50.3244 ], [ -85.7423, 50.5471 ], [ -85.6576, 47.5476 ], [ -86.5331, 47.537 ], [ -86.1756, 30.0392 ], [ -83.2992, 30.074 ], [ -83.2371, 26.0744 ], [ -75.7301, 26.1641 ], [ -75.7228, 25.6641 ], [ -75.6609, 21.2478 ], [ -75.6264, 18.6647 ], [ -75.5437, 12.1652 ], [ -78.612, 12.1288 ], [ -84.7969, 12.0543 ], [ -84.8267, 14.3875 ], [ -99.8231, 14.206 ], [ -99.8042, 12.7061 ], [ -107.2985, 12.6179 ], [ -107.1941, 3.7852 ], [ -114.4414, 3.7034 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Hor", "rank": 3, "name": "Horologium" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 65.0764, -39.7007 ], [ 64.8824, -48.6997 ], [ 62.1499, -48.67 ], [ 62.0986, -50.6697 ], [ 58.3772, -50.6305 ], [ 58.3188, -52.7968 ], [ 53.365, -52.7471 ], [ 53.2368, -57.0798 ], [ 48.7911, -57.0378 ], [ 48.3627, -67.0358 ], [ 33.2024, -66.9152 ], [ 33.4894, -57.9162 ], [ 33.5841, -53.4165 ], [ 37.2833, -53.4424 ], [ 37.3412, -50.4426 ], [ 41.0477, -50.4709 ], [ 41.0853, -48.471 ], [ 46.0345, -48.5122 ], [ 46.0908, -45.5125 ], [ 52.289, -45.5692 ], [ 52.3268, -43.5694 ], [ 59.0314, -43.6364 ], [ 59.1059, -39.6368 ], [ 65.0764, -39.7007 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Hya", "rank": 2, "name": "Hydra" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.6015, -22.6864 ], [ -165.8331, -22.6773 ], [ -144.4869, -22.5728 ], [ -144.4663, -25.0727 ], [ -134.4234, -24.9951 ], [ -134.3692, -29.9949 ], [ -169.5826, -30.1864 ], [ -169.5728, -33.6864 ], [ -174.6126, -33.6939 ], [ -174.6097, -35.6939 ], [ -180.0, -35.68842729589813 ], [ -180.0, -25.195044972244808 ], [ -169.5955, -25.1864 ], [ -169.6015, -22.6864 ] ] ], [ [ [ 140.4043, 6.4701 ], [ 145.3984, 6.4328 ], [ 145.3489, -0.5671 ], [ 145.2703, -11.5668 ], [ 162.8079, -11.6621 ], [ 162.7755, -19.6621 ], [ 164.0306, -19.6666 ], [ 164.0081, -25.1666 ], [ 179.0913, -25.1958 ], [ 180.0, -25.195044972244808 ], [ 180.0, -35.68842729589813 ], [ 166.4794, -35.6747 ], [ 163.9585, -35.6665 ], [ 163.9779, -31.8332 ], [ 160.2014, -31.8186 ], [ 160.2129, -29.8186 ], [ 155.1813, -29.7948 ], [ 155.1993, -27.1282 ], [ 147.6593, -27.0835 ], [ 147.6797, -24.5836 ], [ 141.9043, -24.5425 ], [ 137.6368, -24.5086 ], [ 137.685, -19.5088 ], [ 130.1635, -19.4424 ], [ 130.1843, -17.4425 ], [ 126.9271, -17.4113 ], [ 126.9898, -11.4116 ], [ 122.7342, -11.3688 ], [ 122.849, -0.3694 ], [ 122.9214, 6.6302 ], [ 140.4043, 6.4701 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Hyi", "rank": 3, "name": "Hydrus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.794, -67.2479 ], [ 68.5815, -69.7467 ], [ 67.9575, -74.7432 ], [ 52.0758, -74.5741 ], [ 50.0917, -82.0645 ], [ 1.5334, -81.804 ], [ 1.5663, -74.304 ], [ 12.3324, -74.3186 ], [ 12.2954, -75.3185 ], [ 20.6541, -75.3472 ], [ 21.2062, -57.8484 ], [ 33.4894, -57.9162 ], [ 33.2024, -66.9152 ], [ 48.3627, -67.0358 ], [ 68.794, -67.2479 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ind", "rank": 3, "name": "Indus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -36.8152, -74.4545 ], [ -37.6513, -59.4577 ], [ -52.4352, -59.5881 ], [ -52.5412, -56.5886 ], [ -52.8307, -45.09 ], [ -37.9577, -44.9589 ], [ -37.8826, -49.4586 ], [ -28.0012, -49.3912 ], [ -27.8863, -56.3908 ], [ -27.6014, -66.89 ], [ -8.1386, -66.8126 ], [ -8.0022, -74.3125 ], [ -36.8152, -74.4545 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lac", "rank": 3, "name": "Lacerta" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -30.539, 36.5954 ], [ -30.6234, 44.3451 ], [ -30.1184, 44.3483 ], [ -30.1214, 44.5983 ], [ -29.2373, 44.6036 ], [ -29.3608, 53.3533 ], [ -26.8253, 53.3679 ], [ -26.8624, 55.6178 ], [ -24.0687, 55.6326 ], [ -24.0891, 56.8826 ], [ -15.696, 56.918 ], [ -15.6571, 53.168 ], [ -15.5347, 35.1682 ], [ -16.2908, 35.1656 ], [ -16.2935, 35.6656 ], [ -28.6404, 35.6069 ], [ -28.6495, 36.6069 ], [ -30.539, 36.5954 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Leo", "rank": 1, "name": "Leo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.8497, -0.6622 ], [ 162.876, 6.3377 ], [ 145.3984, 6.4328 ], [ 140.4043, 6.4701 ], [ 140.646, 32.9691 ], [ 150.0844, 32.9023 ], [ 150.0423, 27.9024 ], [ 159.2384, 27.8529 ], [ 159.2109, 22.853 ], [ 162.9425, 22.8376 ], [ 162.9515, 24.8376 ], [ 166.6809, 24.825 ], [ 166.694, 28.325 ], [ 179.6089, 28.304 ], [ 179.6045, 13.304 ], [ 179.6037, 10.304 ], [ 174.3657, 10.3083 ], [ 174.3505, -0.6917 ], [ 174.3423, -6.6917 ], [ 162.8271, -6.6622 ], [ 162.8497, -0.6622 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LMi", "rank": 3, "name": "Leo Minor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.646, 32.9691 ], [ 140.7216, 39.2188 ], [ 145.682, 39.1818 ], [ 145.7092, 41.4317 ], [ 154.3782, 41.3774 ], [ 154.3594, 39.3774 ], [ 163.5232, 39.3356 ], [ 163.4894, 33.3357 ], [ 166.7142, 33.325 ], [ 166.694, 28.325 ], [ 166.6809, 24.825 ], [ 162.9515, 24.8376 ], [ 162.9425, 22.8376 ], [ 159.2109, 22.853 ], [ 159.2384, 27.8529 ], [ 150.0423, 27.9024 ], [ 150.0844, 32.9023 ], [ 140.646, 32.9691 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lep", "rank": 3, "name": "Lepus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.7593, -27.048 ], [ 73.9298, -14.299 ], [ 75.1787, -14.3136 ], [ 75.2218, -10.8138 ], [ 77.72, -10.8432 ], [ 88.9658, -10.9785 ], [ 93.2156, -11.0302 ], [ 92.9926, -27.2788 ], [ 76.2549, -27.0772 ], [ 73.7593, -27.048 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lib", "rank": 2, "name": "Libra" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -132.147, -0.4743 ], [ -132.118, -3.7242 ], [ -119.613, -3.6026 ], [ -119.5627, -8.3523 ], [ -119.4282, -20.3516 ], [ -123.1869, -20.3902 ], [ -123.07, -29.8896 ], [ -134.3692, -29.9949 ], [ -134.4234, -24.9951 ], [ -144.4663, -25.0727 ], [ -144.4869, -22.5728 ], [ -144.5915, -8.5731 ], [ -138.3329, -8.5267 ], [ -138.3969, -0.5269 ], [ -132.147, -0.4743 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lup", "rank": 3, "name": "Lupus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -145.3432, -55.58 ], [ -145.5497, -42.5806 ], [ -134.2037, -42.4942 ], [ -134.3692, -29.9949 ], [ -123.07, -29.8896 ], [ -118.0523, -29.8378 ], [ -117.8472, -42.3367 ], [ -122.8754, -42.3886 ], [ -122.7527, -48.388 ], [ -127.7928, -48.4371 ], [ -127.6466, -54.4364 ], [ -131.9433, -54.4756 ], [ -131.9165, -55.4755 ], [ -139.7655, -55.5401 ], [ -145.3432, -55.58 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lyn", "rank": 3, "name": "Lynx" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.5607, 35.2445 ], [ 112.7341, 44.2435 ], [ 104.2653, 44.3418 ], [ 104.4064, 49.841 ], [ 99.9195, 49.8946 ], [ 100.046, 53.8938 ], [ 94.0574, 53.9663 ], [ 94.1311, 55.9658 ], [ 94.4075, 61.9641 ], [ 107.8516, 61.8031 ], [ 107.7532, 59.8037 ], [ 122.1291, 59.6434 ], [ 128.7991, 59.576 ], [ 128.4401, 46.5777 ], [ 139.5907, 46.4783 ], [ 139.5125, 41.4786 ], [ 145.7092, 41.4317 ], [ 145.682, 39.1818 ], [ 140.7216, 39.2188 ], [ 140.646, 32.9691 ], [ 121.9932, 33.1415 ], [ 118.2581, 33.1812 ], [ 118.2897, 35.1811 ], [ 112.5607, 35.2445 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lyr", "rank": 2, "name": "Lyra" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.7228, 25.6641 ], [ -75.7301, 26.1641 ], [ -83.2371, 26.0744 ], [ -83.2992, 30.074 ], [ -86.1756, 30.0392 ], [ -86.5331, 47.537 ], [ -85.6576, 47.5476 ], [ -72.8794, 47.6999 ], [ -71.6245, 47.7144 ], [ -71.5297, 43.7149 ], [ -68.0165, 43.755 ], [ -67.8803, 36.7558 ], [ -68.5074, 36.7487 ], [ -68.4012, 30.2493 ], [ -69.9047, 30.2322 ], [ -69.8674, 27.7324 ], [ -69.8387, 25.7326 ], [ -75.7228, 25.6641 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Men", "rank": 3, "name": "Mensa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.0197, -85.2614 ], [ 48.2329, -84.5554 ], [ 50.0917, -82.0645 ], [ 52.0758, -74.5741 ], [ 67.9575, -74.7432 ], [ 68.5815, -69.7467 ], [ 98.4544, -70.1041 ], [ 97.7707, -75.1 ], [ 114.2147, -75.2899 ], [ 111.6521, -82.7759 ], [ 109.0197, -85.2614 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Mic", "rank": 3, "name": "Microscopium" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.102, -27.5913 ], [ -38.1684, -27.4597 ], [ -38.0719, -36.4593 ], [ -37.9577, -44.9589 ], [ -52.8307, -45.09 ], [ -53.102, -27.5913 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Mon", "rank": 2, "name": "Monoceros" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 95.2257, -0.0537 ], [ 95.348, 9.9455 ], [ 96.3477, 9.9334 ], [ 96.3728, 11.9333 ], [ 105.7428, 11.8213 ], [ 105.7185, 9.8215 ], [ 106.7179, 9.8098 ], [ 106.6643, 5.3101 ], [ 106.9143, 5.3072 ], [ 106.8674, 1.3074 ], [ 109.6169, 1.2756 ], [ 109.5997, -0.2243 ], [ 122.849, -0.3694 ], [ 122.7342, -11.3688 ], [ 111.9734, -11.2521 ], [ 93.2156, -11.0302 ], [ 88.9658, -10.9785 ], [ 89.0524, -3.9791 ], [ 95.1771, -4.0534 ], [ 95.2257, -0.0537 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Mus", "rank": 3, "name": "Musca" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 170.0848, -64.6843 ], [ 179.0574, -64.6958 ], [ 180.0, -64.694647872049941 ], [ 180.0, -75.667845830125188 ], [ 169.857, -75.684 ], [ 170.0848, -64.6843 ] ] ], [ [ [ -155.3197, -64.6379 ], [ -155.2925, -65.6379 ], [ -152.732, -65.625 ], [ -152.5391, -70.6244 ], [ -152.2186, -75.6236 ], [ -180.0, -75.667845830125188 ], [ -180.0, -64.694647872049941 ], [ -165.5616, -64.677 ], [ -155.3197, -64.6379 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Nor", "rank": 3, "name": "Norma" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.4501, -60.4355 ], [ -127.6181, -55.4363 ], [ -131.9165, -55.4755 ], [ -131.9433, -54.4756 ], [ -127.6466, -54.4364 ], [ -127.7928, -48.4371 ], [ -122.7527, -48.388 ], [ -122.8754, -42.3886 ], [ -117.8472, -42.3367 ], [ -111.5052, -42.2675 ], [ -111.4294, -45.7671 ], [ -110.9653, -60.2645 ], [ -127.4501, -60.4355 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Oct", "rank": 3, "name": "Octans" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.0, -88.663899950707943 ], [ -180.0, -83.1201 ], [ -150.8889, -83.1201 ], [ -83.134, -82.4583 ], [ -85.8049, -74.9745 ], [ -36.8152, -74.4545 ], [ -8.0022, -74.3125 ], [ 1.5663, -74.304 ], [ 1.5334, -81.804 ], [ 50.0917, -82.0645 ], [ 48.2329, -84.5554 ], [ 109.0197, -85.2614 ], [ 111.6521, -82.7759 ], [ 180.0, -83.017287118480581 ], [ 180.0, -85.2614 ], [ 180.0, -88.663899950707943 ], [ -180.0, -88.663899950707943 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Oph", "rank": 2, "name": "Ophiuchus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.3974, -0.2964 ], [ -114.4414, 3.7034 ], [ -107.1941, 3.7852 ], [ -107.2985, 12.6179 ], [ -99.8042, 12.7061 ], [ -99.8231, 14.206 ], [ -84.8267, 14.3875 ], [ -84.7969, 12.0543 ], [ -78.612, 12.1288 ], [ -78.5414, 6.3792 ], [ -84.7254, 6.3048 ], [ -84.704, 4.5549 ], [ -82.0789, 4.5866 ], [ -82.0608, 3.0867 ], [ -84.6858, 3.055 ], [ -84.6494, 0.0552 ], [ -90.899, -0.0206 ], [ -90.8503, -4.0204 ], [ -88.8503, -3.9961 ], [ -88.7763, -9.9956 ], [ -93.2762, -10.0502 ], [ -93.2553, -11.7168 ], [ -94.5056, -11.7319 ], [ -94.5265, -10.0654 ], [ -100.7779, -10.1404 ], [ -100.7026, -16.14 ], [ -94.1998, -16.0619 ], [ -93.9982, -30.0607 ], [ -106.7647, -30.2123 ], [ -106.8443, -24.7961 ], [ -114.1086, -24.8781 ], [ -114.177, -19.5452 ], [ -112.5493, -19.5272 ], [ -112.5618, -18.5272 ], [ -114.1893, -18.5452 ], [ -114.3088, -8.2959 ], [ -119.5627, -8.3523 ], [ -119.613, -3.6026 ], [ -114.3616, -3.5462 ], [ -114.3974, -0.2964 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ori", "rank": 1, "name": "Orion" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.8524, 0.2375 ], [ 71.034, 15.7365 ], [ 76.2889, 15.6755 ], [ 76.2953, 16.1755 ], [ 81.7987, 16.1101 ], [ 81.7922, 15.6101 ], [ 85.7936, 15.5619 ], [ 85.7551, 12.5622 ], [ 88.2554, 12.5319 ], [ 88.3272, 18.0314 ], [ 87.327, 18.0435 ], [ 87.3938, 22.8765 ], [ 90.144, 22.8431 ], [ 90.1252, 21.5099 ], [ 95.1241, 21.4492 ], [ 95.0696, 17.4495 ], [ 96.4439, 17.4329 ], [ 96.3728, 11.9333 ], [ 96.3477, 9.9334 ], [ 95.348, 9.9455 ], [ 95.2257, -0.0537 ], [ 95.1771, -4.0534 ], [ 89.0524, -3.9791 ], [ 88.9658, -10.9785 ], [ 77.72, -10.8432 ], [ 77.8044, -3.8437 ], [ 71.5564, -3.7708 ], [ 71.6023, 0.2289 ], [ 70.8524, 0.2375 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pav", "rank": 2, "name": "Pavo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.8049, -74.9745 ], [ -86.7199, -67.4801 ], [ -94.2243, -67.5711 ], [ -94.8318, -57.0748 ], [ -87.3277, -56.9838 ], [ -52.5412, -56.5886 ], [ -52.4352, -59.5881 ], [ -37.6513, -59.4577 ], [ -36.8152, -74.4545 ], [ -85.8049, -74.9745 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Peg", "rank": 1, "name": "Pegasus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -38.4165, 2.5394 ], [ -38.4989, 13.0391 ], [ -41.7555, 13.0132 ], [ -41.7497, 12.3466 ], [ -42.7516, 12.3383 ], [ -42.8212, 20.0046 ], [ -39.8116, 20.0291 ], [ -39.8483, 24.0289 ], [ -37.338, 24.0482 ], [ -37.3798, 28.5481 ], [ -32.6048, 28.5818 ], [ -32.68, 36.5815 ], [ -30.539, 36.5954 ], [ -28.6495, 36.6069 ], [ -28.6404, 35.6069 ], [ -16.2935, 35.6656 ], [ -16.2908, 35.1656 ], [ -15.5347, 35.1682 ], [ -5.9558, 35.1913 ], [ -5.9508, 32.7746 ], [ -2.1719, 32.7785 ], [ -2.1713, 32.0285 ], [ 1.607, 32.0294 ], [ 1.6062, 28.696 ], [ 2.6128, 28.6958 ], [ 2.61, 22.6958 ], [ 3.7406, 22.6952 ], [ 3.7399, 21.6952 ], [ 3.7341, 13.1952 ], [ 1.6032, 13.196 ], [ 1.6027, 10.696 ], [ -0.9029, 10.6958 ], [ -0.902, 8.1958 ], [ -17.1786, 8.1622 ], [ -17.1578, 2.6622 ], [ -28.4127, 2.6076 ], [ -28.4112, 2.3576 ], [ -33.4129, 2.3257 ], [ -33.4198, 3.3257 ], [ -36.4213, 3.3044 ], [ -36.4157, 2.5544 ], [ -38.4165, 2.5394 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Per", "rank": 1, "name": "Perseus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.6284, 31.1865 ], [ 42.6665, 34.5197 ], [ 40.4024, 34.5375 ], [ 40.4347, 37.2874 ], [ 39.6793, 37.2932 ], [ 39.8855, 51.0424 ], [ 32.6738, 51.0926 ], [ 32.6215, 47.5928 ], [ 26.9314, 47.6258 ], [ 26.9685, 50.6257 ], [ 22.4079, 50.6479 ], [ 22.456, 54.6478 ], [ 27.5336, 54.6229 ], [ 27.5952, 58.1227 ], [ 30.7736, 58.1047 ], [ 30.7956, 59.1046 ], [ 38.8024, 59.0512 ], [ 38.7623, 57.5513 ], [ 48.9009, 57.4685 ], [ 49.9135, 57.4594 ], [ 49.854, 55.4597 ], [ 52.3819, 55.4363 ], [ 52.3131, 52.9366 ], [ 72.8403, 52.7196 ], [ 72.4573, 36.2219 ], [ 69.5738, 36.2547 ], [ 69.4869, 30.9219 ], [ 52.4267, 31.1004 ], [ 42.6284, 31.1865 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Phe", "rank": 2, "name": "Phoenix" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.3073, -39.3128 ], [ 0.6029, -39.3039 ], [ 26.3507, -39.3726 ], [ 36.264, -39.4342 ], [ 36.1529, -47.6005 ], [ 28.7383, -47.5527 ], [ 28.6933, -50.8859 ], [ 24.9938, -50.8659 ], [ 24.9674, -52.8659 ], [ 21.2733, -52.8486 ], [ 21.2062, -57.8484 ], [ -8.2216, -57.8127 ], [ -8.2315, -56.3127 ], [ -8.3073, -39.3128 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pic", "rank": 3, "name": "Pictor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.9518, -43.0058 ], [ 90.7489, -50.7545 ], [ 90.6937, -52.5042 ], [ 93.1944, -52.5346 ], [ 93.1074, -55.034 ], [ 98.1143, -55.0946 ], [ 97.9951, -58.0938 ], [ 103.0111, -58.1537 ], [ 102.7033, -64.1519 ], [ 98.9372, -64.107 ], [ 90.1736, -64.0011 ], [ 90.3451, -61.0021 ], [ 82.8576, -60.9113 ], [ 83.0188, -57.4123 ], [ 75.5477, -57.323 ], [ 75.677, -53.8238 ], [ 68.2177, -53.7376 ], [ 68.3622, -48.7384 ], [ 68.4241, -46.2388 ], [ 73.4021, -46.2959 ], [ 73.4824, -42.7964 ], [ 75.9744, -42.8256 ], [ 90.9518, -43.0058 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Psc", "rank": 2, "name": "Pisces" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -17.1503, 0.6622 ], [ -17.1578, 2.6622 ], [ -17.1786, 8.1622 ], [ -0.902, 8.1958 ], [ -0.9029, 10.6958 ], [ 1.6027, 10.696 ], [ 1.6032, 13.196 ], [ 3.7341, 13.1952 ], [ 3.7399, 21.6952 ], [ 14.4148, 21.6766 ], [ 14.4241, 24.4266 ], [ 12.4135, 24.4319 ], [ 12.4431, 33.6819 ], [ 22.8974, 33.6454 ], [ 22.8664, 28.6454 ], [ 26.7647, 28.6263 ], [ 26.7447, 25.6263 ], [ 26.6557, 10.5432 ], [ 31.6652, 10.5144 ], [ 31.6153, 2.5979 ], [ 6.6038, 2.6925 ], [ 6.6013, 0.6925 ], [ 6.5927, -6.3075 ], [ -0.8967, -6.3042 ], [ -0.8978, -3.3042 ], [ -17.1353, -3.3378 ], [ -17.1503, 0.6622 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PsA", "rank": 2, "name": "Piscis Austrinus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -13.319, -24.825 ], [ -13.2725, -36.325 ], [ -38.0719, -36.4593 ], [ -38.1684, -27.4597 ], [ -38.1922, -24.9598 ], [ -30.2297, -24.904 ], [ -13.319, -24.825 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pup", "rank": 2, "name": "Puppis" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 111.9734, -11.2521 ], [ 122.7342, -11.3688 ], [ 126.9898, -11.4116 ], [ 126.9271, -17.4113 ], [ 126.6778, -37.16 ], [ 126.5723, -43.4095 ], [ 121.0383, -43.3535 ], [ 120.8617, -51.1026 ], [ 90.7489, -50.7545 ], [ 90.9518, -43.0058 ], [ 99.7089, -43.1116 ], [ 99.9039, -33.1128 ], [ 111.6772, -33.2505 ], [ 111.9734, -11.2521 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pyx", "rank": 3, "name": "Pyxis" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.9271, -17.4113 ], [ 130.1843, -17.4425 ], [ 130.1635, -19.4424 ], [ 137.685, -19.5088 ], [ 137.6368, -24.5086 ], [ 141.9043, -24.5425 ], [ 141.7716, -37.292 ], [ 126.6778, -37.16 ], [ 126.9271, -17.4113 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ret", "rank": 3, "name": "Reticulum" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.3627, -67.0358 ], [ 48.7911, -57.0378 ], [ 53.2368, -57.0798 ], [ 53.365, -52.7471 ], [ 58.3188, -52.7968 ], [ 60.7979, -52.8228 ], [ 60.6929, -56.1556 ], [ 65.6505, -56.2094 ], [ 65.5546, -58.7089 ], [ 69.2745, -58.7507 ], [ 68.794, -67.2479 ], [ 48.3627, -67.0358 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sge", "rank": 3, "name": "Sagitta" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.6264, 18.6647 ], [ -75.6609, 21.2478 ], [ -69.9037, 21.3148 ], [ -69.8787, 19.3983 ], [ -61.1143, 19.4955 ], [ -61.1397, 21.5787 ], [ -54.8746, 21.6437 ], [ -54.866, 20.8937 ], [ -54.8131, 16.144 ], [ -56.441, 16.1275 ], [ -61.074, 16.0791 ], [ -61.0788, 16.4957 ], [ -73.5945, 16.3551 ], [ -73.6245, 18.6882 ], [ -75.6264, 18.6647 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sgr", "rank": 1, "name": "Sagittarius" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.2559, -11.8664 ], [ -58.2736, -11.6762 ], [ -58.084, -27.6419 ], [ -53.102, -27.5913 ], [ -52.8307, -45.09 ], [ -70.2304, -45.2776 ], [ -70.4037, -36.7786 ], [ -90.3745, -37.0175 ], [ -90.4972, -30.0182 ], [ -93.9982, -30.0607 ], [ -94.1998, -16.0619 ], [ -84.4505, -15.9436 ], [ -75.2063, -15.8328 ], [ -75.2559, -11.8664 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sco", "rank": 1, "name": "Scorpius" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.5627, -8.3523 ], [ -114.3088, -8.2959 ], [ -114.1893, -18.5452 ], [ -112.5618, -18.5272 ], [ -112.5493, -19.5272 ], [ -114.177, -19.5452 ], [ -114.1086, -24.8781 ], [ -106.8443, -24.7961 ], [ -106.7647, -30.2123 ], [ -93.9982, -30.0607 ], [ -90.4972, -30.0182 ], [ -90.3745, -37.0175 ], [ -90.1907, -45.5163 ], [ -111.4294, -45.7671 ], [ -111.5052, -42.2675 ], [ -117.8472, -42.3367 ], [ -118.0523, -29.8378 ], [ -123.07, -29.8896 ], [ -123.1869, -20.3902 ], [ -119.4282, -20.3516 ], [ -119.5627, -8.3523 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Scl", "rank": 3, "name": "Sculptor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -13.319, -24.825 ], [ -0.8894, -24.8042 ], [ 26.4589, -24.8729 ], [ 26.3507, -39.3726 ], [ 0.6029, -39.3039 ], [ -8.3073, -39.3128 ], [ -8.3166, -36.3128 ], [ -13.2725, -36.325 ], [ -13.319, -24.825 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sct", "rank": 3, "name": "Scutum" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.4505, -15.9436 ], [ -84.6009, -3.9445 ], [ -79.6018, -3.8842 ], [ -75.3527, -3.8337 ], [ -75.2559, -11.8664 ], [ -75.2063, -15.8328 ], [ -84.4505, -15.9436 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ser", "rank": 3, "name": "Serpens Caput" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -132.147, -0.4743 ], [ -132.2185, 7.5254 ], [ -132.3945, 25.5246 ], [ -130.9005, 25.5381 ], [ -118.1943, 25.6641 ], [ -118.1434, 21.6644 ], [ -119.889, 21.646 ], [ -119.8189, 15.6463 ], [ -117.3234, 15.6728 ], [ -117.1903, 3.6735 ], [ -114.4414, 3.7034 ], [ -114.3974, -0.2964 ], [ -114.3616, -3.5462 ], [ -119.613, -3.6026 ], [ -132.118, -3.7242 ], [ -132.147, -0.4743 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ser", "rank": 3, "name": "Serpens Cauda" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.6494, 0.0552 ], [ -84.6858, 3.055 ], [ -82.0608, 3.0867 ], [ -82.0789, 4.5866 ], [ -84.704, 4.5549 ], [ -84.7254, 6.3048 ], [ -78.5414, 6.3792 ], [ -75.474, 6.4156 ], [ -75.4236, 2.1659 ], [ -79.6738, 2.1153 ], [ -79.6498, 0.1155 ], [ -79.6018, -3.8842 ], [ -84.6009, -3.9445 ], [ -84.4505, -15.9436 ], [ -94.1998, -16.0619 ], [ -100.7026, -16.14 ], [ -100.7779, -10.1404 ], [ -94.5265, -10.0654 ], [ -94.5056, -11.7319 ], [ -93.2553, -11.7168 ], [ -93.2762, -10.0502 ], [ -88.7763, -9.9956 ], [ -88.8503, -3.9961 ], [ -90.8503, -4.0204 ], [ -90.899, -0.0206 ], [ -84.6494, 0.0552 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sex", "rank": 3, "name": "Sextans" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.3489, -0.5671 ], [ 145.3984, 6.4328 ], [ 162.876, 6.3377 ], [ 162.8497, -0.6622 ], [ 162.8271, -6.6622 ], [ 162.8079, -11.6621 ], [ 145.2703, -11.5668 ], [ 145.3489, -0.5671 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Tau", "rank": 1, "name": "Taurus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 50.8367, -1.303 ], [ 50.853, 0.447 ], [ 50.9464, 10.3632 ], [ 51.0372, 19.4461 ], [ 52.2906, 19.4343 ], [ 52.4267, 31.1004 ], [ 69.4869, 30.9219 ], [ 69.4768, 30.2553 ], [ 73.2353, 30.2123 ], [ 73.2125, 28.7124 ], [ 90.2289, 28.5092 ], [ 90.2211, 28.0093 ], [ 90.144, 22.8431 ], [ 87.3938, 22.8765 ], [ 87.327, 18.0435 ], [ 88.3272, 18.0314 ], [ 88.2554, 12.5319 ], [ 85.7551, 12.5622 ], [ 85.7936, 15.5619 ], [ 81.7922, 15.6101 ], [ 81.7987, 16.1101 ], [ 76.2953, 16.1755 ], [ 76.2889, 15.6755 ], [ 71.034, 15.7365 ], [ 70.8524, 0.2375 ], [ 55.3529, 0.4037 ], [ 55.3356, -1.3462 ], [ 50.8367, -1.303 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Tel", "rank": 3, "name": "Telescopium" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.5412, -56.5886 ], [ -87.3277, -56.9838 ], [ -87.691, -45.486 ], [ -70.2304, -45.2776 ], [ -52.8307, -45.09 ], [ -52.5412, -56.5886 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Tri", "rank": 3, "name": "Triangulum" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.7447, 25.6263 ], [ 26.7647, 28.6263 ], [ 22.8664, 28.6454 ], [ 22.8974, 33.6454 ], [ 22.9108, 35.6453 ], [ 31.8543, 35.5971 ], [ 31.8711, 37.3471 ], [ 39.6793, 37.2932 ], [ 40.4347, 37.2874 ], [ 40.4024, 34.5375 ], [ 42.6665, 34.5197 ], [ 42.6284, 31.1865 ], [ 38.1032, 31.2213 ], [ 38.0701, 27.8048 ], [ 30.5306, 27.855 ], [ 30.5137, 25.6051 ], [ 26.7447, 25.6263 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TrA", "rank": 2, "name": "Triangulum Australe" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -135.8336, -70.5115 ], [ -135.9964, -68.0122 ], [ -133.4429, -67.9909 ], [ -133.6465, -64.0751 ], [ -129.8334, -64.0416 ], [ -129.9454, -61.4587 ], [ -127.4102, -61.4353 ], [ -127.4501, -60.4355 ], [ -110.9653, -60.2645 ], [ -110.9184, -61.2642 ], [ -108.4622, -61.2365 ], [ -108.3237, -63.819 ], [ -105.8049, -63.7901 ], [ -105.7165, -65.2063 ], [ -104.4576, -65.1916 ], [ -104.275, -67.6906 ], [ -101.7575, -67.6611 ], [ -101.5293, -70.1597 ], [ -135.8336, -70.5115 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Tuc", "rank": 3, "name": "Tucana" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.0022, -74.3125 ], [ -8.1386, -66.8126 ], [ -27.6014, -66.89 ], [ -27.8863, -56.3908 ], [ -8.2315, -56.3127 ], [ -8.2216, -57.8127 ], [ 21.2062, -57.8484 ], [ 20.6541, -75.3472 ], [ 12.2954, -75.3185 ], [ 12.3324, -74.3186 ], [ 1.5663, -74.304 ], [ -8.0022, -74.3125 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UMa", "rank": 1, "name": "Ursa Major" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -178.4184, 63.304 ], [ -156.4495, 63.3593 ], [ -156.4264, 62.3594 ], [ -142.9547, 62.4415 ], [ -142.7488, 54.9422 ], [ -148.4156, 54.9036 ], [ -148.3013, 47.9039 ], [ -156.2049, 47.8599 ], [ -156.2576, 52.3598 ], [ -177.1815, 52.3043 ], [ -177.1736, 44.3043 ], [ -178.4086, 44.304 ], [ -178.4055, 33.304 ], [ -178.4043, 28.304 ], [ -180.0, 28.304 ], [ -180.0, 65.805395886947593 ], [ -178.4207, 65.804 ], [ -178.4184, 63.304 ] ] ], [ [ [ 139.5907, 46.4783 ], [ 128.4401, 46.5777 ], [ 128.7991, 59.576 ], [ 122.1291, 59.6434 ], [ 123.0862, 73.1384 ], [ 140.6155, 72.9741 ], [ 171.9614, 72.8125 ], [ 171.8493, 65.8126 ], [ 180.0, 65.805395886947593 ], [ 180.0, 28.304 ], [ 179.6089, 28.304 ], [ 166.694, 28.325 ], [ 166.7142, 33.325 ], [ 163.4894, 33.3357 ], [ 163.5232, 39.3356 ], [ 154.3594, 39.3774 ], [ 154.3782, 41.3774 ], [ 145.7092, 41.4317 ], [ 139.5125, 41.4786 ], [ 139.5907, 46.4783 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UMi", "rank": 2, "name": "Ursa Minor" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.843, 76.3638 ], [ -156.1908, 79.3629 ], [ -143.2171, 79.445 ], [ -146.977, 85.9308 ], [ -97.26919787366009, 85.96067344649633 ], [ -98.2778, 85.9496 ], [ -92.344, 79.9857 ], [ -99.7821, 79.8953 ], [ -98.4634, 74.9033 ], [ -112.7793, 74.7348 ], [ -112.1589, 69.7383 ], [ -124.9494, 69.6009 ], [ -124.6704, 65.6023 ], [ -149.1794, 65.3997 ], [ -149.3492, 69.3991 ], [ -163.9025, 69.3294 ], [ -164.1794, 76.3289 ], [ -155.843, 76.3638 ] ] ], [ [ [ -51.279, 86.4656 ], [ -51.6686, 86.6306 ], [ -16.4893, 86.8369 ], [ -20.739, 88.6639 ], [ 0.9483, 88.6092 ], [ 24.7077, 88.3564 ], [ 57.6647, 88.0063 ], [ 135.8325, 87.5689 ], [ 130.4028, 86.0975 ], [ -97.26919787366009, 85.96067344649633 ], [ -51.279, 86.4656 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Vel", "rank": 2, "name": "Vela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 166.3373, -57.1744 ], [ 133.3237, -56.974 ], [ 133.3802, -54.9742 ], [ 127.5671, -54.9205 ], [ 127.6093, -53.4207 ], [ 123.3201, -53.3782 ], [ 123.3811, -51.1285 ], [ 120.8617, -51.1026 ], [ 121.0383, -43.3535 ], [ 126.5723, -43.4095 ], [ 126.6778, -37.16 ], [ 141.7716, -37.292 ], [ 141.7341, -40.2919 ], [ 166.4565, -40.4246 ], [ 166.3373, -57.1744 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Vir", "rank": 1, "name": "Virgo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -165.9409, 14.3225 ], [ -155.9711, 14.3605 ], [ -155.9362, 7.3606 ], [ -132.2185, 7.5254 ], [ -132.147, -0.4743 ], [ -138.3969, -0.5269 ], [ -138.3329, -8.5267 ], [ -144.5915, -8.5731 ], [ -144.4869, -22.5728 ], [ -165.8331, -22.6773 ], [ -165.8669, -11.6774 ], [ -180.0, -11.694694749373184 ], [ -180.0, 13.304506086806157 ], [ -165.938, 13.3225 ], [ -165.9409, 14.3225 ] ] ], [ [ [ 179.6037, 10.304 ], [ 179.6045, 13.304 ], [ 180.0, 13.304506086806157 ], [ 180.0, -11.694694749373184 ], [ 179.0968, -11.6958 ], [ 179.0986, -6.6958 ], [ 174.3423, -6.6917 ], [ 174.3505, -0.6917 ], [ 174.3657, 10.3083 ], [ 179.6037, 10.304 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Vol", "rank": 3, "name": "Volans" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.9372, -64.107 ], [ 102.7033, -64.1519 ], [ 136.0947, -64.499 ], [ 135.2437, -75.4955 ], [ 114.2147, -75.2899 ], [ 97.7707, -75.1 ], [ 98.4544, -70.1041 ], [ 98.9372, -64.107 ] ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Vul", "rank": 3, "name": "Vulpecula" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.6609, 21.2478 ], [ -75.7228, 25.6641 ], [ -69.8387, 25.7326 ], [ -69.8674, 27.7324 ], [ -63.7278, 27.8012 ], [ -63.7491, 29.3011 ], [ -44.9274, 29.4871 ], [ -44.9161, 28.4872 ], [ -37.3798, 28.5481 ], [ -37.338, 24.0482 ], [ -39.8483, 24.0289 ], [ -39.8116, 20.0291 ], [ -42.8212, 20.0046 ], [ -50.0923, 19.94 ], [ -50.1031, 20.9399 ], [ -54.866, 20.8937 ], [ -54.8746, 21.6437 ], [ -61.1397, 21.5787 ], [ -61.1143, 19.4955 ], [ -69.8787, 19.3983 ], [ -69.9037, 21.3148 ], [ -75.6609, 21.2478 ] ] ] ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,319 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "constellations.cn", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "id": 1, "name": "毕宿", "en": "Net", "pinyin": "Bi Xiu", "desig": "毕宿", "rank": 1, "display_ra": 64.9945, "display_dec": 15.8353, "display_scale": 9.6 }, "geometry": { "type": "Point", "coordinates": [ 64.9945, 15.8353 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 2, "name": "壁宿", "en": "Wall", "pinyin": "Bi Xiu", "desig": "壁宿", "rank": 1, "display_ra": 2.703, "display_dec": 22.137, "display_scale": 13.9 }, "geometry": { "type": "Point", "coordinates": [ 2.703, 22.137 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 3, "name": "参宿", "en": "Three Stars", "pinyin": "Shen Xiu", "desig": "参宿", "rank": 1, "display_ra": 83.7137, "display_dec": -1.1313, "display_scale": 17.1 }, "geometry": { "type": "Point", "coordinates": [ 83.7137, -1.1313 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 4, "name": "氐宿", "en": "Root", "pinyin": "Di Xiu", "desig": "氐宿", "rank": 1, "display_ra": -131.6994, "display_dec": -14.5873, "display_scale": 11.2 }, "geometry": { "type": "Point", "coordinates": [ -131.6994, -14.5873 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 5, "name": "斗宿", "en": "Dipper", "pinyin": "Dou Xiu", "desig": "斗宿", "rank": 1, "display_ra": -79.9121, "display_dec": -25.4695, "display_scale": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -79.9121, -25.4695 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 6, "name": "房宿", "en": "Room", "pinyin": "Fang Xiu", "desig": "房宿", "rank": 1, "display_ra": -119.7097, "display_dec": -24.5098, "display_scale": 9.4 }, "geometry": { "type": "Point", "coordinates": [ -119.7097, -24.5098 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 7, "name": "鬼宿", "en": "Ghosts", "pinyin": "Gui Xiu", "desig": "鬼宿", "rank": 1, "display_ra": 129.5351, "display_dec": 19.7815, "display_scale": 3.4 }, "geometry": { "type": "Point", "coordinates": [ 129.5351, 19.7815 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 8, "name": "箕宿", "en": "Winnowing Basket", "pinyin": "Ji Xiu", "desig": "箕宿", "rank": 1, "display_ra": -86.2525, "display_dec": -33.2949, "display_scale": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -86.2525, -33.2949 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 9, "name": "角宿", "en": "Horn", "pinyin": "Jiao Xiu", "desig": "角宿", "rank": 1, "display_ra": -157.5142, "display_dec": -5.8786, "display_scale": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -157.5142, -5.8786 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 10, "name": "井宿", "en": "Well", "pinyin": "Jing Xiu", "desig": "井宿", "rank": 1, "display_ra": 101.6213, "display_dec": 19.0134, "display_scale": 15.8 }, "geometry": { "type": "Point", "coordinates": [ 101.6213, 19.0134 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 11, "name": "亢宿", "en": "Neck", "pinyin": "Kang Xiu", "desig": "亢宿", "rank": 1, "display_ra": -144.8627, "display_dec": -7.7995, "display_scale": 11.1 }, "geometry": { "type": "Point", "coordinates": [ -144.8627, -7.7995 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 12, "name": "奎宿", "en": "Legs", "pinyin": "Kui Xiu", "desig": "奎宿", "rank": 1, "display_ra": 14.7505, "display_dec": 31.0568, "display_scale": 20.0 }, "geometry": { "type": "Point", "coordinates": [ 14.7505, 31.0568 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 13, "name": "柳宿", "en": "Willow", "pinyin": "Liu Xiu", "desig": "柳宿", "rank": 1, "display_ra": 134.0025, "display_dec": 4.3666, "display_scale": 9.2 }, "geometry": { "type": "Point", "coordinates": [ 134.0025, 4.3666 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 14, "name": "娄宿", "en": "Bond", "pinyin": "Lou Xiu", "desig": "娄宿", "rank": 1, "display_ra": 30.088, "display_dec": 21.3781, "display_scale": 4.2 }, "geometry": { "type": "Point", "coordinates": [ 30.088, 21.3781 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 15, "name": "昴宿", "en": "Hairy Head", "pinyin": "Mao Xiu", "desig": "昴宿", "rank": 1, "display_ra": 56.7548, "display_dec": 24.2514, "display_scale": 1.1 }, "geometry": { "type": "Point", "coordinates": [ 56.7548, 24.2514 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 16, "name": "牛宿", "en": "Ox", "pinyin": "Niu Xiu", "desig": "牛宿", "rank": 1, "display_ra": -54.7088, "display_dec": -15.5641, "display_scale": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -54.7088, -15.5641 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 17, "name": "女宿", "en": "Girl", "pinyin": "Nü Xiu", "desig": "女宿", "rank": 1, "display_ra": -47.4588, "display_dec": -7.2617, "display_scale": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -47.4588, -7.2617 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 18, "name": "室宿", "en": "Encampment", "pinyin": "Shi Xiu", "desig": "室宿", "rank": 1, "display_ra": -13.9331, "display_dec": 21.6441, "display_scale": 12.9 }, "geometry": { "type": "Point", "coordinates": [ -13.9331, 21.6441 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 19, "name": "太微右垣", "en": "Supreme Palace Right Wall", "pinyin": "Tai Wei You Yuan", "desig": "太微右垣", "rank": 2, "display_ra": 173.1005, "display_dec": 11.1442, "display_scale": 18.8 }, "geometry": { "type": "Point", "coordinates": [ 173.1005, 11.1442 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 20, "name": "太微左垣", "en": "Supreme Palace Left Wall", "pinyin": "Tai Wei Zuo Yuan", "desig": "太微左垣", "rank": 2, "display_ra": -168.7632, "display_dec": 8.04, "display_scale": 19.0 }, "geometry": { "type": "Point", "coordinates": [ -168.7632, 8.04 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 21, "name": "天市右垣", "en": "Heavenly Market Right Wall", "pinyin": "Tian Shi You Yuan", "desig": "天市右垣", "rank": 2, "display_ra": -118.5048, "display_dec": 5.4613, "display_scale": 32.1 }, "geometry": { "type": "Point", "coordinates": [ -118.5048, 5.4613 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 22, "name": "天市左垣", "en": "Heavenly Market Left Wall", "pinyin": "Tian Shi Zuo Yuan", "desig": "天市左垣", "rank": 2, "display_ra": -88.0265, "display_dec": 6.5188, "display_scale": 44.5 }, "geometry": { "type": "Point", "coordinates": [ -88.0265, 6.5188 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 23, "name": "危宿", "en": "Rooftop", "pinyin": "Wei Xiu", "desig": "危宿", "rank": 1, "display_ra": -30.7018, "display_dec": 4.7776, "display_scale": 10.2 }, "geometry": { "type": "Point", "coordinates": [ -30.7018, 4.7776 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 24, "name": "尾宿", "en": "Tail", "pinyin": "Wei Xiu", "desig": "尾宿", "rank": 1, "display_ra": -100.2815, "display_dec": -38.7662, "display_scale": 14.4 }, "geometry": { "type": "Point", "coordinates": [ -100.2815, -38.7662 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 25, "name": "胃宿", "en": "Stomach", "pinyin": "Wei Xiu", "desig": "胃宿", "rank": 1, "display_ra": 41.6795, "display_dec": 28.2538, "display_scale": 2.0 }, "geometry": { "type": "Point", "coordinates": [ 41.6795, 28.2538 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 26, "name": "心宿", "en": "Heart", "pinyin": "Xin Xiu", "desig": "心宿", "rank": 1, "display_ra": -112.8661, "display_dec": -26.9044, "display_scale": 3.7 }, "geometry": { "type": "Point", "coordinates": [ -112.8661, -26.9044 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 27, "name": "星宿", "en": "Star", "pinyin": "Xing Xiu", "desig": "星宿", "rank": 1, "display_ra": 142.4536, "display_dec": -6.5588, "display_scale": 10.8 }, "geometry": { "type": "Point", "coordinates": [ 142.4536, -6.5588 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 28, "name": "虚宿", "en": "Emptiness", "pinyin": "Xu Xiu", "desig": "虚宿", "rank": 1, "display_ra": -39.0771, "display_dec": -0.1617, "display_scale": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -39.0771, -0.1617 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 29, "name": "翼宿", "en": "Wings", "pinyin": "Yi Xiu", "desig": "翼宿", "rank": 1, "display_ra": 170.7051, "display_dec": -18.5479, "display_scale": 17.5 }, "geometry": { "type": "Point", "coordinates": [ 170.7051, -18.5479 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 30, "name": "张宿", "en": "Extended Net", "pinyin": "Zhang Xiu", "desig": "张宿", "rank": 1, "display_ra": 152.3611, "display_dec": -15.2277, "display_scale": 14.6 }, "geometry": { "type": "Point", "coordinates": [ 152.3611, -15.2277 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 31, "name": "轸宿", "en": "Chariot", "pinyin": "Zhen Xiu", "desig": "轸宿", "rank": 1, "display_ra": -174.6499, "display_dec": -20.4624, "display_scale": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -174.6499, -20.4624 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 32, "name": "紫微右垣", "en": "Purple Forbidden Right Wall", "pinyin": "Zi Wei You Yuan", "desig": "紫微右垣", "rank": 2, "display_ra": 130.5471, "display_dec": 67.1031, "display_scale": 161.1 }, "geometry": { "type": "Point", "coordinates": [ 130.5471, 67.1031 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 33, "name": "紫微左垣", "en": "Purple Forbidden Left Wall", "pinyin": "Zi Wei Zuo Yuan", "desig": "紫微左垣", "rank": 2, "display_ra": -58.4128, "display_dec": 66.9764, "display_scale": 16.8 }, "geometry": { "type": "Point", "coordinates": [ -58.4128, 66.9764 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 34, "name": "觜宿", "en": "Turtle Beak", "pinyin": "Zi Xiu", "desig": "觜宿", "rank": 1, "display_ra": 83.9659, "display_dec": 9.6124, "display_scale": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 83.9659, 9.6124 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 35, "name": "八谷", "en": "Eight Kinds of Crops", "pinyin": "Ba Gu", "desig": "八谷", "rank": 3, "display_ra": 82.1018, "display_dec": 57.1444, "display_scale": 15.6 }, "geometry": { "type": "Point", "coordinates": [ 82.1018, 57.1444 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 36, "name": "八魁", "en": "Net for Catching Birds", "pinyin": "Ba Kui", "desig": "八魁", "rank": 3, "display_ra": -357.3479, "display_dec": -14.7212, "display_scale": 8.4 }, "geometry": { "type": "Point", "coordinates": [ 2.6521, -14.7212 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 37, "name": "败瓜", "en": "Rotten Gourd", "pinyin": "Bai Gua", "desig": "败瓜", "rank": 3, "display_ra": -50.9572, "display_dec": 11.7007, "display_scale": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -50.9572, 11.7007 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 38, "name": "败臼", "en": "Decayed Mortar", "pinyin": "Bai Jiu", "desig": "败臼", "rank": 3, "display_ra": -24.1932, "display_dec": -34.4522, "display_scale": 14.6 }, "geometry": { "type": "Point", "coordinates": [ -24.1932, -34.4522 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 39, "name": "北斗", "en": "Northern Dipper", "pinyin": "Bei Dou", "desig": "北斗", "rank": 3, "display_ra": -173.8272, "display_dec": 55.5322, "display_scale": 41.4 }, "geometry": { "type": "Point", "coordinates": [ -173.8272, 55.5322 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 40, "name": "北河", "en": "North River", "pinyin": "Bei He", "desig": "北河", "rank": 3, "display_ra": 114.3035, "display_dec": 29.9573, "display_scale": 4.1 }, "geometry": { "type": "Point", "coordinates": [ 114.3035, 29.9573 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 41, "name": "北极", "en": "Northern Pole", "pinyin": "Bei Ji", "desig": "北极", "rank": 3, "display_ra": -148.7555, "display_dec": 77.6234, "display_scale": 37.9 }, "geometry": { "type": "Point", "coordinates": [ -148.7555, 77.6234 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 42, "name": "北落师门", "en": "North Gate of the Military Camp", "pinyin": "Bei Luo Shi Men", "desig": "北落师门", "rank": 3, "display_ra": -15.5873, "display_dec": -29.6222, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -15.5873, -29.6222 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 43, "name": "鳖", "en": "River Turtle", "pinyin": "Bie", "desig": "鳖", "rank": 3, "display_ra": -77.8746, "display_dec": -41.516, "display_scale": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -77.8746, -41.516 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 44, "name": "波斯", "en": "Persia", "pinyin": "Bo Si", "desig": "波斯", "rank": 3, "display_ra": -45.8709, "display_dec": -51.5875, "display_scale": 31.9 }, "geometry": { "type": "Point", "coordinates": [ -45.8709, -51.5875 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 45, "name": "帛度", "en": "Textile Ruler", "pinyin": "Bo Du", "desig": "帛度", "rank": 3, "display_ra": -88.7169, "display_dec": 21.2052, "display_scale": 1.8 }, "geometry": { "type": "Point", "coordinates": [ -88.7169, 21.2052 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 46, "name": "参旗", "en": "Banner of Three Stars", "pinyin": "Can Qi", "desig": "参旗", "rank": 3, "display_ra": 73.5486, "display_dec": 7.9823, "display_scale": 12.5 }, "geometry": { "type": "Point", "coordinates": [ 73.5486, 7.9823 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 47, "name": "厕", "en": "Toilet", "pinyin": "Ce", "desig": "厕", "rank": 3, "display_ra": 84.9459, "display_dec": -20.1353, "display_scale": 5.8 }, "geometry": { "type": "Point", "coordinates": [ 84.9459, -20.1353 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 48, "name": "策", "en": "Whip", "pinyin": "Ce", "desig": "策", "rank": 3, "display_ra": 14.1772, "display_dec": 60.7167, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 14.1772, 60.7167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 49, "name": "常陈", "en": "Royal Guards", "pinyin": "Chang Chen", "desig": "常陈", "rank": 3, "display_ra": -172.7324, "display_dec": 40.682, "display_scale": 13.5 }, "geometry": { "type": "Point", "coordinates": [ -172.7324, 40.682 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 50, "name": "车府", "en": "Big Yard for Chariots", "pinyin": "Che Fu", "desig": "车府", "rank": 3, "display_ra": -31.0175, "display_dec": 43.9673, "display_scale": 28.1 }, "geometry": { "type": "Point", "coordinates": [ -31.0175, 43.9673 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 51, "name": "车骑", "en": "Chariots and Cavalry", "pinyin": "Che Qi", "desig": "车骑", "rank": 3, "display_ra": -136.8872, "display_dec": -50.7625, "display_scale": 9.9 }, "geometry": { "type": "Point", "coordinates": [ -136.8872, -50.7625 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 52, "name": "车肆", "en": "Commodity Market", "pinyin": "Che Si", "desig": "车肆", "rank": 3, "display_ra": -110.2954, "display_dec": -9.5773, "display_scale": 5.5 }, "geometry": { "type": "Point", "coordinates": [ -110.2954, -9.5773 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 53, "name": "刍藁", "en": "Hay", "pinyin": "Chu Gao", "desig": "刍藁", "rank": 3, "display_ra": 37.0685, "display_dec": -7.5352, "display_scale": 9.5 }, "geometry": { "type": "Point", "coordinates": [ 37.0685, -7.5352 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 54, "name": "杵(箕宿)", "en": "Pestle (In Winnowing Basket Mansion)", "pinyin": "Chu(Ji Xiu)", "desig": "杵(箕宿)", "rank": 3, "display_ra": -97.38, "display_dec": -51.0178, "display_scale": 9.0 }, "geometry": { "type": "Point", "coordinates": [ -97.38, -51.0178 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 55, "name": "杵(危宿)", "en": "Pestle (In Rooftop Mansion)", "pinyin": "Chu(Wei Xiu)", "desig": "杵(危宿)", "rank": 3, "display_ra": -27.3066, "display_dec": 33.3564, "display_scale": 8.8 }, "geometry": { "type": "Point", "coordinates": [ -27.3066, 33.3564 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 56, "name": "长沙(附官)", "en": "Changsha (Vassal of Chariot)", "pinyin": "Chang Sha", "desig": "长沙(附官)", "rank": 3, "display_ra": -174.8598, "display_dec": -22.2159, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -174.8598, -22.2159 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 57, "name": "传舍", "en": "Guest House", "pinyin": "Chuan She", "desig": "传舍", "rank": 3, "display_ra": -335.2605, "display_dec": 61.6293, "display_scale": 12.4 }, "geometry": { "type": "Point", "coordinates": [ 24.7395, 61.6293 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 58, "name": "从官(房宿)", "en": "Retinue (In Room Mansion)", "pinyin": "Cong Guan(Fang Xiu)", "desig": "从官(房宿)", "rank": 3, "display_ra": -123.2947, "display_dec": -34.1688, "display_scale": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -123.2947, -34.1688 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 59, "name": "从官(太微垣)", "en": "Retinue (In Supreme Palace Enclosure)", "pinyin": "Cong Guan(Tai Wei Yuan)", "desig": "从官(太微垣)", "rank": 3, "display_ra": 175.1961, "display_dec": 21.3527, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 175.1961, 21.3527 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 60, "name": "大角", "en": "Great Horn", "pinyin": "Da Jiao", "desig": "大角", "rank": 3, "display_ra": -146.0847, "display_dec": 19.1824, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -146.0847, 19.1824 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 61, "name": "大理", "en": "Chief Judge", "pinyin": "Da Li", "desig": "大理", "rank": 3, "display_ra": -176.9502, "display_dec": 77.6162, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -176.9502, 77.6162 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 62, "name": "大陵", "en": "Mausoleum", "pinyin": "Da Ling", "desig": "大陵", "rank": 3, "display_ra": 41.4817, "display_dec": 47.0822, "display_scale": 17.5 }, "geometry": { "type": "Point", "coordinates": [ 41.4817, 47.0822 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 64, "name": "帝席", "en": "Mattress of the Emperor", "pinyin": "Di Xi", "desig": "帝席", "rank": 3, "display_ra": -149.1289, "display_dec": 26.2919, "display_scale": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -149.1289, 26.2919 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 65, "name": "帝座", "en": "Emperor's Seat", "pinyin": "Di Zuo", "desig": "帝座", "rank": 3, "display_ra": -101.3381, "display_dec": 14.3903, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -101.3381, 14.3903 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 66, "name": "东咸", "en": "Eastern Door", "pinyin": "Dong Xian", "desig": "东咸", "rank": 3, "display_ra": -112.97, "display_dec": -19.0395, "display_scale": 4.9 }, "geometry": { "type": "Point", "coordinates": [ -112.97, -19.0395 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 67, "name": "斗", "en": "Dipper for Liquids", "pinyin": "Dou", "desig": "斗", "rank": 3, "display_ra": -113.7289, "display_dec": 10.5703, "display_scale": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -113.7289, 10.5703 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 68, "name": "顿顽", "en": "Trials", "pinyin": "Dun Wan", "desig": "顿顽", "rank": 3, "display_ra": -130.4465, "display_dec": -33.8902, "display_scale": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -130.4465, -33.8902 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 69, "name": "伐(附官)", "en": "Send Armed Forces To Suppress (Vassal of Three Stars)", "pinyin": "Fa", "desig": "伐(附官)", "rank": 3, "display_ra": 83.9494, "display_dec": -3.5559, "display_scale": 4.7 }, "geometry": { "type": "Point", "coordinates": [ 83.9494, -3.5559 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 70, "name": "罚", "en": "Punishment", "pinyin": "Fa", "desig": "罚", "rank": 3, "display_ra": -118.0065, "display_dec": -12.4514, "display_scale": 8.2 }, "geometry": { "type": "Point", "coordinates": [ -118.0065, -12.4514 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 71, "name": "飞鱼", "en": "Flying Fish", "pinyin": "Fei Yu", "desig": "飞鱼", "rank": 3, "display_ra": 121.3993, "display_dec": -69.3715, "display_scale": 28.4 }, "geometry": { "type": "Point", "coordinates": [ 121.3993, -69.3715 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 72, "name": "坟墓(附官)", "en": "Tomb (Vassal of Rooftop)", "pinyin": "Fen Mu", "desig": "坟墓(附官)", "rank": 3, "display_ra": -24.8574, "display_dec": -0.005, "display_scale": 7.4 }, "geometry": { "type": "Point", "coordinates": [ -24.8574, -0.005 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 73, "name": "𫓧钺", "en": "Axe", "pinyin": "Fu Yue", "desig": "𫓧钺", "rank": 3, "display_ra": -3.3837, "display_dec": -18.4681, "display_scale": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -3.3837, -18.4681 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 74, "name": "𫓧锧", "en": "Sickle", "pinyin": "Fu Zhi", "desig": "𫓧锧", "rank": 3, "display_ra": 26.201, "display_dec": -21.8023, "display_scale": 7.6 }, "geometry": { "type": "Point", "coordinates": [ 26.201, -21.8023 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 75, "name": "扶筐", "en": "Basket for Mulberry Leaves", "pinyin": "Fu Kuang", "desig": "扶筐", "rank": 3, "display_ra": -78.8963, "display_dec": 56.3926, "display_scale": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -78.8963, 56.3926 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 76, "name": "附白", "en": "White Patched Nearby", "pinyin": "Fu Bai", "desig": "附白", "rank": 3, "display_ra": 49.7142, "display_dec": -74.6529, "display_scale": 14.2 }, "geometry": { "type": "Point", "coordinates": [ 49.7142, -74.6529 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 77, "name": "附路", "en": "Auxiliary Road", "pinyin": "Fu Lu", "desig": "附路", "rank": 3, "display_ra": 9.2429, "display_dec": 53.8969, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 9.2429, 53.8969 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 78, "name": "傅说", "en": "Fu Yue", "pinyin": "Fu Yue", "desig": "傅说", "rank": 3, "display_ra": -92.5355, "display_dec": -37.0433, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -92.5355, -37.0433 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 79, "name": "盖屋", "en": "Roofing", "pinyin": "Gai Wu", "desig": "盖屋", "rank": 3, "display_ra": -28.9869, "display_dec": -1.5308, "display_scale": 1.2 }, "geometry": { "type": "Point", "coordinates": [ -28.9869, -1.5308 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 80, "name": "杠(附官)", "en": "Canopy Support (Vassal of Canopy of the Emperor)", "pinyin": "Gang", "desig": "杠(附官)", "rank": 3, "display_ra": 40.1985, "display_dec": 73.1899, "display_scale": 34.8 }, "geometry": { "type": "Point", "coordinates": [ 40.1985, 73.1899 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 81, "name": "阁道", "en": "Flying Corridor", "pinyin": "Ge Dao", "desig": "阁道", "rank": 3, "display_ra": 24.2239, "display_dec": 57.8435, "display_scale": 26.1 }, "geometry": { "type": "Point", "coordinates": [ 24.2239, 57.8435 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 82, "name": "梗河", "en": "Celestial Lance", "pinyin": "Geng He", "desig": "梗河", "rank": 3, "display_ra": -140.3979, "display_dec": 28.7228, "display_scale": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -140.3979, 28.7228 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 83, "name": "勾陈", "en": "Curved Array", "pinyin": "Gou Chen", "desig": "勾陈", "rank": 3, "display_ra": -43.0154, "display_dec": 83.5293, "display_scale": 11.5 }, "geometry": { "type": "Point", "coordinates": [ -43.0154, 83.5293 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 84, "name": "钩钤(附官)", "en": "Lock (Vassal of Room)", "pinyin": "Gou Qian", "desig": "钩钤(附官)", "rank": 3, "display_ra": -118.3947, "display_dec": -20.3371, "display_scale": 1.1 }, "geometry": { "type": "Point", "coordinates": [ -118.3947, -20.3371 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 85, "name": "狗", "en": "Dog", "pinyin": "Gou", "desig": "狗", "rank": 3, "display_ra": -67.2522, "display_dec": -24.6961, "display_scale": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -67.2522, -24.6961 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 86, "name": "狗国", "en": "Territory of Dog", "pinyin": "Gou Guo", "desig": "狗国", "rank": 3, "display_ra": -60.1879, "display_dec": -26.9528, "display_scale": 1.7 }, "geometry": { "type": "Point", "coordinates": [ -60.1879, -26.9528 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 87, "name": "贯索", "en": "Coiled Thong", "pinyin": "Guan Suo", "desig": "贯索", "rank": 3, "display_ra": -123.841, "display_dec": 29.686, "display_scale": 8.4 }, "geometry": { "type": "Point", "coordinates": [ -123.841, 29.686 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 88, "name": "爟", "en": "Beacon Fire", "pinyin": "Guan", "desig": "爟", "rank": 3, "display_ra": 124.6144, "display_dec": 26.8394, "display_scale": 5.6 }, "geometry": { "type": "Point", "coordinates": [ 124.6144, 26.8394 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 89, "name": "龟", "en": "Tortoise", "pinyin": "Gui", "desig": "龟", "rank": 3, "display_ra": -102.3895, "display_dec": -56.9221, "display_scale": 10.3 }, "geometry": { "type": "Point", "coordinates": [ -102.3895, -56.9221 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 90, "name": "海山", "en": "Sea and Mountain", "pinyin": "Hai Shan", "desig": "海山", "rank": 3, "display_ra": 166.6857, "display_dec": -62.7341, "display_scale": 19.4 }, "geometry": { "type": "Point", "coordinates": [ 166.6857, -62.7341 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 91, "name": "海石", "en": "Sea Rock", "pinyin": "Hai Shi", "desig": "海石", "rank": 3, "display_ra": 136.202, "display_dec": -62.1509, "display_scale": 21.1 }, "geometry": { "type": "Point", "coordinates": [ 136.202, -62.1509 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 93, "name": "河鼓", "en": "Drum at the River", "pinyin": "He Gu", "desig": "河鼓", "rank": 3, "display_ra": -62.3034, "display_dec": 8.5101, "display_scale": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -62.3034, 8.5101 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 94, "name": "鹤", "en": "Crane", "pinyin": "He", "desig": "鹤", "rank": 3, "display_ra": -19.2921, "display_dec": -48.6838, "display_scale": 19.1 }, "geometry": { "type": "Point", "coordinates": [ -19.2921, -48.6838 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 95, "name": "衡", "en": "Railings", "pinyin": "Heng", "desig": "衡", "rank": 3, "display_ra": -150.5561, "display_dec": -41.8266, "display_scale": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -150.5561, -41.8266 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 96, "name": "候", "en": "Astrologer", "pinyin": "Hou", "desig": "候", "rank": 3, "display_ra": -96.2664, "display_dec": 12.56, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -96.2664, 12.56 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 97, "name": "弧矢", "en": "Bow and Arrow", "pinyin": "Hu Shi", "desig": "弧矢", "rank": 3, "display_ra": 110.9387, "display_dec": -31.9529, "display_scale": 17.0 }, "geometry": { "type": "Point", "coordinates": [ 110.9387, -31.9529 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 98, "name": "斛", "en": "Dipper for Solids", "pinyin": "Hu", "desig": "斛", "rank": 3, "display_ra": -107.0625, "display_dec": 8.7066, "display_scale": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -107.0625, 8.7066 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 99, "name": "虎贲", "en": "Emperor's Bodyguard", "pinyin": "Hu Ben", "desig": "虎贲", "rank": 3, "display_ra": 168.801, "display_dec": 23.0955, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 168.801, 23.0955 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 100, "name": "瓠瓜", "en": "Good Gourd", "pinyin": "Hu Gua", "desig": "瓠瓜", "rank": 3, "display_ra": -49.7541, "display_dec": 15.3597, "display_scale": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -49.7541, 15.3597 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 101, "name": "华盖", "en": "Canopy of the Emperor", "pinyin": "Hua Gai", "desig": "华盖", "rank": 3, "display_ra": 23.332, "display_dec": 70.5415, "display_scale": 11.3 }, "geometry": { "type": "Point", "coordinates": [ 23.332, 70.5415 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 102, "name": "宦者", "en": "Eunuch Official", "pinyin": "Huan Zhe", "desig": "宦者", "rank": 3, "display_ra": -103.0507, "display_dec": 12.3386, "display_scale": 3.5 }, "geometry": { "type": "Point", "coordinates": [ -103.0507, 12.3386 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 103, "name": "火鸟", "en": "Firebird", "pinyin": "Huo Niao", "desig": "火鸟", "rank": 3, "display_ra": -352.3329, "display_dec": -43.3109, "display_scale": 11.0 }, "geometry": { "type": "Point", "coordinates": [ 7.6671, -43.3109 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 104, "name": "积尸(鬼宿)", "en": "Cumulative Corpses", "pinyin": "Ji Shi(Gui Xiu)", "desig": "积尸(鬼宿)", "rank": 3, "display_ra": 130.4587, "display_dec": 19.8742, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 130.4587, 19.8742 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 105, "name": "积尸(胃宿)", "en": "Heap of Corpses", "pinyin": "Ji Shi(Wei Xiu)", "desig": "积尸(胃宿)", "rank": 3, "display_ra": 44.6903, "display_dec": 39.6627, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 44.6903, 39.6627 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 106, "name": "积水(胃宿)", "en": "Stored water", "pinyin": "Ji Shui(Wei Xiu)", "desig": "积水(胃宿)", "rank": 3, "display_ra": 61.646, "display_dec": 50.3513, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 61.646, 50.3513 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 107, "name": "积薪", "en": "Pile of Firewood", "pinyin": "Ji Xin", "desig": "积薪", "rank": 3, "display_ra": 116.1119, "display_dec": 24.398, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 116.1119, 24.398 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 108, "name": "积卒", "en": "Group of Soldiers", "pinyin": "Ji Zu", "desig": "积卒", "rank": 3, "display_ra": -119.1607, "display_dec": -37.5995, "display_scale": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -119.1607, -37.5995 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 109, "name": "夹白", "en": "White Patches Attached", "pinyin": "Jia Bai", "desig": "夹白", "rank": 3, "display_ra": 71.0228, "display_dec": -64.8296, "display_scale": 14.8 }, "geometry": { "type": "Point", "coordinates": [ 71.0228, -64.8296 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 110, "name": "建", "en": "Establishment", "pinyin": "Jian", "desig": "建", "rank": 3, "display_ra": -72.5679, "display_dec": -18.8482, "display_scale": 6.0 }, "geometry": { "type": "Point", "coordinates": [ -72.5679, -18.8482 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 111, "name": "渐台", "en": "Clepsydra Terrace", "pinyin": "Jian Tai", "desig": "渐台", "rank": 3, "display_ra": -75.3273, "display_dec": 34.7941, "display_scale": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -75.3273, 34.7941 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 112, "name": "键闭", "en": "Door Bolt", "pinyin": "Jian Bi", "desig": "键闭", "rank": 3, "display_ra": -117.0011, "display_dec": -19.4607, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -117.0011, -19.4607 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 113, "name": "金鱼", "en": "Goldfish", "pinyin": "Jin Yu", "desig": "金鱼", "rank": 3, "display_ra": 78.0955, "display_dec": -60.165, "display_scale": 28.2 }, "geometry": { "type": "Point", "coordinates": [ 78.0955, -60.165 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 114, "name": "进贤", "en": "Recommending Virtuous Men", "pinyin": "Jin Xian", "desig": "进贤", "rank": 3, "display_ra": -165.0853, "display_dec": -3.8119, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -165.0853, -3.8119 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 115, "name": "积水(井宿)", "en": "Accumulated Water", "pinyin": "Ji Shui(Jin Xiu)", "desig": "积水(井宿)", "rank": 3, "display_ra": 110.5109, "display_dec": 36.7606, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 110.5109, 36.7606 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 116, "name": "九坎", "en": "Nine Water Wells", "pinyin": "Jiu Kan", "desig": "九坎", "rank": 3, "display_ra": -41.9429, "display_dec": -40.2694, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -41.9429, -40.2694 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 117, "name": "九卿", "en": "Nine Senior Officers", "pinyin": "Jiu Qing", "desig": "九卿", "rank": 3, "display_ra": -169.6569, "display_dec": 8.9545, "display_scale": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -169.6569, 8.9545 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 118, "name": "九斿", "en": "Imperial Military Flag", "pinyin": "Jiu Liu", "desig": "九斿", "rank": 3, "display_ra": 72.4972, "display_dec": -10.8984, "display_scale": 23.8 }, "geometry": { "type": "Point", "coordinates": [ 72.4972, -10.8984 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 119, "name": "九州殊口", "en": "Interpreters of Nine Dialects", "pinyin": "Jiu Zhou Shu Kou", "desig": "九州殊口", "rank": 3, "display_ra": 66.9943, "display_dec": -6.8044, "display_scale": 8.1 }, "geometry": { "type": "Point", "coordinates": [ 66.9943, -6.8044 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 120, "name": "酒旗", "en": "Banner of Wine Shop", "pinyin": "Jiu Qi", "desig": "酒旗", "rank": 3, "display_ra": 144.0236, "display_dec": 11.5392, "display_scale": 5.0 }, "geometry": { "type": "Point", "coordinates": [ 144.0236, 11.5392 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 121, "name": "臼", "en": "Mortar", "pinyin": "Jiu", "desig": "臼", "rank": 3, "display_ra": -29.3168, "display_dec": 27.0439, "display_scale": 9.3 }, "geometry": { "type": "Point", "coordinates": [ -29.3168, 27.0439 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 122, "name": "卷舌", "en": "Rolled Tongue", "pinyin": "Juan She", "desig": "卷舌", "rank": 3, "display_ra": 57.6679, "display_dec": 37.231, "display_scale": 10.7 }, "geometry": { "type": "Point", "coordinates": [ 57.6679, 37.231 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 123, "name": "军井", "en": "Military Well", "pinyin": "Jun Jing", "desig": "军井", "rank": 3, "display_ra": 79.0353, "display_dec": -12.523, "display_scale": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 79.0353, -12.523 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 124, "name": "军南门", "en": "Southern Military Gate", "pinyin": "Jun Nan Men", "desig": "军南门", "rank": 3, "display_ra": 17.3755, "display_dec": 47.2418, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 17.3755, 47.2418 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 125, "name": "军市", "en": "Market for Soldiers", "pinyin": "Jun Shi", "desig": "军市", "rank": 3, "display_ra": 99.7182, "display_dec": -21.0701, "display_scale": 8.1 }, "geometry": { "type": "Point", "coordinates": [ 99.7182, -21.0701 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 126, "name": "糠", "en": "Chaff", "pinyin": "Kang", "desig": "糠", "rank": 3, "display_ra": -98.1614, "display_dec": -29.867, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -98.1614, -29.867 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 127, "name": "亢池", "en": "Boats and Lake", "pinyin": "Kang Chi", "desig": "亢池", "rank": 3, "display_ra": -146.1904, "display_dec": 14.6332, "display_scale": 3.3 }, "geometry": { "type": "Point", "coordinates": [ -146.1904, 14.6332 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 128, "name": "孔雀", "en": "Peafowl", "pinyin": "Kong Que", "desig": "孔雀", "rank": 3, "display_ra": -65.9779, "display_dec": -64.8228, "display_scale": 55.2 }, "geometry": { "type": "Point", "coordinates": [ -65.9779, -64.8228 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 129, "name": "哭", "en": "Crying", "pinyin": "Ku", "desig": "哭", "rank": 3, "display_ra": -29.5099, "display_dec": -12.5584, "display_scale": 4.3 }, "geometry": { "type": "Point", "coordinates": [ -29.5099, -12.5584 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 130, "name": "库楼", "en": "Arsenal", "pinyin": "Ku Lou", "desig": "库楼", "rank": 3, "display_ra": -157.517, "display_dec": -42.3407, "display_scale": 32.8 }, "geometry": { "type": "Point", "coordinates": [ -157.517, -42.3407 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 131, "name": "郎将", "en": "Captain of the Bodyguards", "pinyin": "Lang Jiang", "desig": "郎将", "rank": 3, "display_ra": -167.0753, "display_dec": 27.5407, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -167.0753, 27.5407 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 132, "name": "郎位", "en": "Officers of the Imperial Guard", "pinyin": "Lang Wei", "desig": "郎位", "rank": 3, "display_ra": -174.5751, "display_dec": 24.4053, "display_scale": 8.7 }, "geometry": { "type": "Point", "coordinates": [ -174.5751, 24.4053 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 133, "name": "老人", "en": "Old Man", "pinyin": "Lao Ren", "desig": "老人", "rank": 3, "display_ra": 95.988, "display_dec": -52.6957, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 95.988, -52.6957 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 134, "name": "雷电", "en": "Thunder and Lightning", "pinyin": "Lei Dian", "desig": "雷电", "rank": 3, "display_ra": -13.6729, "display_dec": 11.085, "display_scale": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -13.6729, 11.085 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 135, "name": "垒壁阵", "en": "Line of Ramparts", "pinyin": "Lei Bi Zhen", "desig": "垒壁阵", "rank": 3, "display_ra": -17.198, "display_dec": -11.2467, "display_scale": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -17.198, -11.2467 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 136, "name": "离宫(附官)", "en": "Resting Palace (Vassal of Encampment)", "pinyin": "Li Gong", "desig": "离宫(附官)", "rank": 3, "display_ra": -14.1079, "display_dec": 26.8127, "display_scale": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -14.1079, 26.8127 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 137, "name": "离瑜", "en": "Jade Ornament on Ladies' Wear", "pinyin": "Li Yu", "desig": "离瑜", "rank": 3, "display_ra": -39.125, "display_dec": -31.7055, "display_scale": 2.8 }, "geometry": { "type": "Point", "coordinates": [ -39.125, -31.7055 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 138, "name": "离珠", "en": "Pearls on Ladies' Wear", "pinyin": "Li Zhu", "desig": "离珠", "rank": 3, "display_ra": -51.3669, "display_dec": -1.1995, "display_scale": 3.4 }, "geometry": { "type": "Point", "coordinates": [ -51.3669, -1.1995 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 139, "name": "砺石", "en": "Whetstone", "pinyin": "Li Shi", "desig": "砺石", "rank": 3, "display_ra": 63.6988, "display_dec": 27.3153, "display_scale": 3.9 }, "geometry": { "type": "Point", "coordinates": [ 63.6988, 27.3153 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 140, "name": "列肆", "en": "Jewel Market", "pinyin": "Lie Si", "desig": "列肆", "rank": 3, "display_ra": -113.3768, "display_dec": 1.5065, "display_scale": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -113.3768, 1.5065 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 141, "name": "灵台", "en": "Astronomical Observatory", "pinyin": "Ling Tai", "desig": "灵台", "rank": 3, "display_ra": 165.6973, "display_dec": 5.4768, "display_scale": 3.7 }, "geometry": { "type": "Point", "coordinates": [ 165.6973, 5.4768 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 142, "name": "六甲", "en": "Six Jia", "pinyin": "Liu Jia", "desig": "六甲", "rank": 3, "display_ra": 98.1412, "display_dec": 79.6945, "display_scale": 46.1 }, "geometry": { "type": "Point", "coordinates": [ 98.1412, 79.6945 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 143, "name": "罗堰", "en": "Network of Dykes", "pinyin": "Luo Yan", "desig": "罗堰", "rank": 3, "display_ra": -49.3202, "display_dec": -18.2344, "display_scale": 6.6 }, "geometry": { "type": "Point", "coordinates": [ -49.3202, -18.2344 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 144, "name": "马腹", "en": "Horse's Abdomen", "pinyin": "Ma Fu", "desig": "马腹", "rank": 3, "display_ra": -154.4213, "display_dec": -58.0868, "display_scale": 10.8 }, "geometry": { "type": "Point", "coordinates": [ -154.4213, -58.0868 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 145, "name": "马尾", "en": "Horse's Tail", "pinyin": "Ma Wei", "desig": "马尾", "rank": 3, "display_ra": -175.639, "display_dec": -51.5454, "display_scale": 4.5 }, "geometry": { "type": "Point", "coordinates": [ -175.639, -51.5454 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 146, "name": "蜜蜂", "en": "Bee", "pinyin": "Mi Feng", "desig": "蜜蜂", "rank": 3, "display_ra": -168.1577, "display_dec": -70.1205, "display_scale": 7.5 }, "geometry": { "type": "Point", "coordinates": [ -168.1577, -70.1205 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 147, "name": "明堂", "en": "The Hall of Glory", "pinyin": "Ming Tang", "desig": "明堂", "rank": 3, "display_ra": 173.1108, "display_dec": -0.0736, "display_scale": 5.9 }, "geometry": { "type": "Point", "coordinates": [ 173.1108, -0.0736 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 148, "name": "南船", "en": "Southern Boat", "pinyin": "Nan Chuan", "desig": "南船", "rank": 3, "display_ra": 149.5196, "display_dec": -65.6851, "display_scale": 22.4 }, "geometry": { "type": "Point", "coordinates": [ 149.5196, -65.6851 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 149, "name": "南河", "en": "South River", "pinyin": "Nan He", "desig": "南河", "rank": 3, "display_ra": 113.1188, "display_dec": 7.2506, "display_scale": 4.1 }, "geometry": { "type": "Point", "coordinates": [ 113.1188, 7.2506 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 151, "name": "南门", "en": "Southern Gate", "pinyin": "Nan Men", "desig": "南门", "rank": 3, "display_ra": -147.563, "display_dec": -57.1502, "display_scale": 14.9 }, "geometry": { "type": "Point", "coordinates": [ -147.563, -57.1502 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 152, "name": "内厨", "en": "Inner Kitchen", "pinyin": "Nei Chu", "desig": "内厨", "rank": 3, "display_ra": -167.1189, "display_dec": 66.1144, "display_scale": 2.0 }, "geometry": { "type": "Point", "coordinates": [ -167.1189, 66.1144 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 153, "name": "内阶", "en": "Inner Steps", "pinyin": "Nei Jie", "desig": "内阶", "rank": 3, "display_ra": 135.2241, "display_dec": 60.6726, "display_scale": 15.3 }, "geometry": { "type": "Point", "coordinates": [ 135.2241, 60.6726 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 154, "name": "内平", "en": "High Judge", "pinyin": "Nei Ping", "desig": "内平", "rank": 3, "display_ra": 149.7273, "display_dec": 33.3564, "display_scale": 8.1 }, "geometry": { "type": "Point", "coordinates": [ 149.7273, 33.3564 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 155, "name": "内屏", "en": "Inner Screen", "pinyin": "Nei Ping", "desig": "内屏", "rank": 3, "display_ra": 178.8116, "display_dec": 7.6312, "display_scale": 5.0 }, "geometry": { "type": "Point", "coordinates": [ 178.8116, 7.6312 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 156, "name": "辇道", "en": "Imperial Passageway", "pinyin": "Nian Dao", "desig": "辇道", "rank": 3, "display_ra": -69.7798, "display_dec": 38.8369, "display_scale": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -69.7798, 38.8369 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 157, "name": "鸟喙", "en": "Bird's Beak", "pinyin": "Niao Hui", "desig": "鸟喙", "rank": 3, "display_ra": -7.3782, "display_dec": -62.9183, "display_scale": 5.3 }, "geometry": { "type": "Point", "coordinates": [ -7.3782, -62.9183 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 158, "name": "农丈人", "en": "Peasant", "pinyin": "Nong Zhang Ren", "desig": "农丈人", "rank": 3, "display_ra": -78.9193, "display_dec": -35.642, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -78.9193, -35.642 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 159, "name": "女床", "en": "Woman's Bed", "pinyin": "Nü Chuang", "desig": "女床", "rank": 3, "display_ra": -100.1588, "display_dec": 37.0503, "display_scale": 2.2 }, "geometry": { "type": "Point", "coordinates": [ -100.1588, 37.0503 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 160, "name": "女史", "en": "Female Protocol", "pinyin": "Nü Shi", "desig": "女史", "rank": 3, "display_ra": -91.2035, "display_dec": 72.0051, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -91.2035, 72.0051 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 161, "name": "霹雳", "en": "Thunderbolt", "pinyin": "Pi Li", "desig": "霹雳", "rank": 3, "display_ra": -7.1014, "display_dec": 5.0728, "display_scale": 13.9 }, "geometry": { "type": "Point", "coordinates": [ -7.1014, 5.0728 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 162, "name": "平", "en": "Judging", "pinyin": "Ping", "desig": "平", "rank": 3, "display_ra": -154.3383, "display_dec": -24.927, "display_scale": 11.9 }, "geometry": { "type": "Point", "coordinates": [ -154.3383, -24.927 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 163, "name": "平道", "en": "Flat Road", "pinyin": "Ping Dao", "desig": "平道", "rank": 3, "display_ra": -158.5546, "display_dec": -7.121, "display_scale": 7.9 }, "geometry": { "type": "Point", "coordinates": [ -158.5546, -7.121 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 164, "name": "屏", "en": "Screen", "pinyin": "Ping", "desig": "屏", "rank": 3, "display_ra": 77.2991, "display_dec": -19.2882, "display_scale": 6.2 }, "geometry": { "type": "Point", "coordinates": [ 77.2991, -19.2882 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 165, "name": "七公", "en": "Seven Excellencies", "pinyin": "Qi Gong", "desig": "七公", "rank": 3, "display_ra": -120.7187, "display_dec": 41.1216, "display_scale": 20.8 }, "geometry": { "type": "Point", "coordinates": [ -120.7187, 41.1216 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 167, "name": "骑官", "en": "Imperial Guards", "pinyin": "Qi Guan", "desig": "骑官", "rank": 3, "display_ra": -132.8662, "display_dec": -44.2614, "display_scale": 13.3 }, "geometry": { "type": "Point", "coordinates": [ -132.8662, -44.2614 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 168, "name": "骑阵将军", "en": "Chariots and Cavalry General", "pinyin": "Qi Zhen Jiang Jun", "desig": "骑阵将军", "rank": 3, "display_ra": -132.0164, "display_dec": -48.7378, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -132.0164, -48.7378 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 169, "name": "泣", "en": "Weeping", "pinyin": "Qi", "desig": "泣", "rank": 3, "display_ra": -25.3709, "display_dec": -7.8022, "display_scale": 0.8 }, "geometry": { "type": "Point", "coordinates": [ -25.3709, -7.8022 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 171, "name": "青丘", "en": "Green Hill", "pinyin": "Qing Qiu", "desig": "青丘", "rank": 3, "display_ra": 175.9928, "display_dec": -31.6109, "display_scale": 6.3 }, "geometry": { "type": "Point", "coordinates": [ 175.9928, -31.6109 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 172, "name": "阙丘", "en": "Palace Gate", "pinyin": "Que Qiu", "desig": "阙丘", "rank": 3, "display_ra": 104.9068, "display_dec": 1.0552, "display_scale": 5.9 }, "geometry": { "type": "Point", "coordinates": [ 104.9068, 1.0552 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 173, "name": "人", "en": "Humans", "pinyin": "Ren", "desig": "人", "rank": 3, "display_ra": -36.4801, "display_dec": 20.4944, "display_scale": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -36.4801, 20.4944 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 174, "name": "日", "en": "Solar Star", "pinyin": "Ri", "desig": "日", "rank": 3, "display_ra": -124.5133, "display_dec": -19.6788, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -124.5133, -19.6788 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 175, "name": "三公(太微垣)", "en": "Three Excellencies (In Supreme Palace Enclosure)", "pinyin": "San Gong(Tai Wei Yuan)", "desig": "三公(太微垣)", "rank": 3, "display_ra": -168.7739, "display_dec": 5.1897, "display_scale": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -168.7739, 5.1897 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 176, "name": "三公(紫微垣)", "en": "Three Excellencies (In Purple Forbidden Enclosure)", "pinyin": "San gong(Zi Wei Yuan)", "desig": "三公(紫微垣)", "rank": 3, "display_ra": -158.413, "display_dec": 49.3491, "display_scale": 4.1 }, "geometry": { "type": "Point", "coordinates": [ -158.413, 49.3491 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 177, "name": "三角形", "en": "Triangle", "pinyin": "San Jiao Xing", "desig": "三角形", "rank": 3, "display_ra": -119.0532, "display_dec": -66.2292, "display_scale": 22.4 }, "geometry": { "type": "Point", "coordinates": [ -119.0532, -66.2292 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 178, "name": "三师", "en": "Three Top Instructors", "pinyin": "San Shi", "desig": "三师", "rank": 3, "display_ra": 136.3671, "display_dec": 67.2514, "display_scale": 1.5 }, "geometry": { "type": "Point", "coordinates": [ 136.3671, 67.2514 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 179, "name": "三台", "en": "Three Steps", "pinyin": "San Tai", "desig": "三台", "rank": 3, "display_ra": 152.2108, "display_dec": 39.7863, "display_scale": 34.8 }, "geometry": { "type": "Point", "coordinates": [ 152.2108, 39.7863 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 180, "name": "尚书", "en": "Royal Secretary", "pinyin": "Shang Shu", "desig": "尚书", "rank": 3, "display_ra": -105.7779, "display_dec": 66.8492, "display_scale": 17.5 }, "geometry": { "type": "Point", "coordinates": [ -105.7779, 66.8492 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 181, "name": "少微", "en": "Junior Officers", "pinyin": "Shao Wei", "desig": "少微", "rank": 3, "display_ra": 163.8122, "display_dec": 22.2143, "display_scale": 6.6 }, "geometry": { "type": "Point", "coordinates": [ 163.8122, 22.2143 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 182, "name": "蛇腹", "en": "Snake's Abdomen", "pinyin": "She Fu", "desig": "蛇腹", "rank": 3, "display_ra": 35.06, "display_dec": -68.138, "display_scale": 12.7 }, "geometry": { "type": "Point", "coordinates": [ 35.06, -68.138 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 183, "name": "蛇首", "en": "Snake's Head", "pinyin": "She Shou", "desig": "蛇首", "rank": 3, "display_ra": 42.8712, "display_dec": -63.1884, "display_scale": 26.4 }, "geometry": { "type": "Point", "coordinates": [ 42.8712, -63.1884 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 184, "name": "蛇尾", "en": "Snake's Tail", "pinyin": "She Wei", "desig": "蛇尾", "rank": 3, "display_ra": -18.6914, "display_dec": -77.2677, "display_scale": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -18.6914, -77.2677 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 185, "name": "神宫(附官)", "en": "Changing Room (Vassal of Tail)", "pinyin": "Shen Gong", "desig": "神宫(附官)", "rank": 3, "display_ra": -106.4923, "display_dec": -41.8064, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -106.4923, -41.8064 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 186, "name": "十二国", "en": "Twelve States", "pinyin": "Shi Er Guo", "desig": "十二国", "rank": 3, "display_ra": -40.5276, "display_dec": -18.6956, "display_scale": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -40.5276, -18.6956 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 187, "name": "十字架", "en": "Cross", "pinyin": "Shi Zi Jia", "desig": "十字架", "rank": 3, "display_ra": -172.1417, "display_dec": -60.1061, "display_scale": 8.1 }, "geometry": { "type": "Point", "coordinates": [ -172.1417, -60.1061 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 188, "name": "屎", "en": "Excrement", "pinyin": "Shi", "desig": "屎", "rank": 3, "display_ra": 86.4996, "display_dec": -32.3064, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 86.4996, -32.3064 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 189, "name": "市楼", "en": "Municipal Office", "pinyin": "Shi Lou", "desig": "市楼", "rank": 3, "display_ra": -94.5113, "display_dec": -9.9774, "display_scale": 10.6 }, "geometry": { "type": "Point", "coordinates": [ -94.5113, -9.9774 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 190, "name": "势", "en": "Eunuch", "pinyin": "Shi", "desig": "势", "rank": 3, "display_ra": 160.646, "display_dec": 32.8355, "display_scale": 5.4 }, "geometry": { "type": "Point", "coordinates": [ 160.646, 32.8355 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 191, "name": "水府", "en": "Official for Irrigation", "pinyin": "Shui Fu", "desig": "水府", "rank": 3, "display_ra": 92.8739, "display_dec": 15.176, "display_scale": 2.0 }, "geometry": { "type": "Point", "coordinates": [ 92.8739, 15.176 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 192, "name": "水委", "en": "Crooked Running Water", "pinyin": "Shui Wei", "desig": "水委", "rank": 3, "display_ra": 17.6335, "display_dec": -56.3544, "display_scale": 13.6 }, "geometry": { "type": "Point", "coordinates": [ 17.6335, -56.3544 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 193, "name": "水位", "en": "Water Level", "pinyin": "Shui Wei", "desig": "水位", "rank": 3, "display_ra": 117.7511, "display_dec": 14.2081, "display_scale": 10.6 }, "geometry": { "type": "Point", "coordinates": [ 117.7511, 14.2081 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 194, "name": "司非", "en": "Deified Judge of Right and Wrong", "pinyin": "Si Fei", "desig": "司非", "rank": 3, "display_ra": -41.8972, "display_dec": 10.0693, "display_scale": 1.0 }, "geometry": { "type": "Point", "coordinates": [ -41.8972, 10.0693 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 195, "name": "司怪", "en": "Deity in Charge of Monsters", "pinyin": "Si Guai", "desig": "司怪", "rank": 3, "display_ra": 89.813, "display_dec": 23.0462, "display_scale": 5.8 }, "geometry": { "type": "Point", "coordinates": [ 89.813, 23.0462 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 196, "name": "司禄", "en": "Deified Judge of Rank", "pinyin": "Si Lu", "desig": "司禄", "rank": 3, "display_ra": -34.1516, "display_dec": 2.4649, "display_scale": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -34.1516, 2.4649 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 197, "name": "司命", "en": "Deified Judge of Life", "pinyin": "Si Ming", "desig": "司命", "rank": 3, "display_ra": -34.7883, "display_dec": 0.6171, "display_scale": 1.3 }, "geometry": { "type": "Point", "coordinates": [ -34.7883, 0.6171 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 198, "name": "司危", "en": "Deified Judge of Disaster and Good Fortune", "pinyin": "Si wei", "desig": "司危", "rank": 3, "display_ra": -39.5032, "display_dec": 7.0828, "display_scale": 0.5 }, "geometry": { "type": "Point", "coordinates": [ -39.5032, 7.0828 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 199, "name": "四渎", "en": "Four Channels", "pinyin": "Si Du", "desig": "四渎", "rank": 3, "display_ra": 100.9253, "display_dec": 7.7724, "display_scale": 10.0 }, "geometry": { "type": "Point", "coordinates": [ 100.9253, 7.7724 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 200, "name": "四辅", "en": "Four Advisors", "pinyin": "Si Fu", "desig": "四辅", "rank": 3, "display_ra": 169.27, "display_dec": 84.0729, "display_scale": 23.7 }, "geometry": { "type": "Point", "coordinates": [ 169.27, 84.0729 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 201, "name": "孙", "en": "Grandson", "pinyin": "Sun", "desig": "孙", "rank": 3, "display_ra": 93.01, "display_dec": -36.1967, "display_scale": 2.3 }, "geometry": { "type": "Point", "coordinates": [ 93.01, -36.1967 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 202, "name": "太阳守", "en": "Guard of the Sun", "pinyin": "Tai Yang Shou", "desig": "太阳守", "rank": 3, "display_ra": 176.5126, "display_dec": 47.7794, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 176.5126, 47.7794 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 203, "name": "太乙", "en": "First Great One", "pinyin": "Tai Yi", "desig": "太乙", "rank": 3, "display_ra": -154.6254, "display_dec": 64.8224, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -154.6254, 64.8224 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 204, "name": "太子", "en": "Crown Prince", "pinyin": "Tai Zi", "desig": "太子", "rank": 3, "display_ra": 176.9964, "display_dec": 20.2189, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 176.9964, 20.2189 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 205, "name": "太尊", "en": "Royals", "pinyin": "Tai Zun", "desig": "太尊", "rank": 3, "display_ra": 167.4159, "display_dec": 44.4985, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 167.4159, 44.4985 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 206, "name": "螣蛇", "en": "Flying Serpent", "pinyin": "Teng She", "desig": "螣蛇", "rank": 3, "display_ra": -20.4946, "display_dec": 50.96, "display_scale": 40.5 }, "geometry": { "type": "Point", "coordinates": [ -20.4946, 50.96 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 207, "name": "天阿", "en": "Celestial Concave", "pinyin": "Tian E", "desig": "天阿", "rank": 3, "display_ra": 50.5496, "display_dec": 27.6076, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 50.5496, 27.6076 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 208, "name": "天棓", "en": "Celestial Flail", "pinyin": "Tian Bang", "desig": "天棓", "rank": 3, "display_ra": -94.1201, "display_dec": 51.4395, "display_scale": 10.9 }, "geometry": { "type": "Point", "coordinates": [ -94.1201, 51.4395 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 209, "name": "天弁", "en": "Market Officer", "pinyin": "Tian Bian", "desig": "天弁", "rank": 3, "display_ra": -77.318, "display_dec": -6.3757, "display_scale": 7.8 }, "geometry": { "type": "Point", "coordinates": [ -77.318, -6.3757 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 210, "name": "天仓", "en": "Square Celestial Granary", "pinyin": "Tian Cang", "desig": "天仓", "rank": 3, "display_ra": 17.3998, "display_dec": -14.5039, "display_scale": 25.1 }, "geometry": { "type": "Point", "coordinates": [ 17.3998, -14.5039 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 211, "name": "天谗", "en": "Celestial Slander", "pinyin": "Tian Chan", "desig": "天谗", "rank": 3, "display_ra": 57.3862, "display_dec": 33.0914, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 57.3862, 33.0914 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 212, "name": "天厨", "en": "Celestial Kitchen", "pinyin": "Tian Chu", "desig": "天厨", "rank": 3, "display_ra": -65.5783, "display_dec": 67.5445, "display_scale": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -65.5783, 67.5445 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 213, "name": "天船", "en": "Celestial Boat", "pinyin": "Tian Chuan", "desig": "天船", "rank": 3, "display_ra": 53.7397, "display_dec": 51.804, "display_scale": 22.1 }, "geometry": { "type": "Point", "coordinates": [ 53.7397, 51.804 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 214, "name": "天床", "en": "Celestial Bed", "pinyin": "Tian Chuang", "desig": "天床", "rank": 3, "display_ra": -131.9388, "display_dec": 67.2829, "display_scale": 30.1 }, "geometry": { "type": "Point", "coordinates": [ -131.9388, 67.2829 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 215, "name": "天大将军", "en": "Great General of Heaven", "pinyin": "Tian Da Jiang Jun", "desig": "天大将军", "rank": 3, "display_ra": 28.427, "display_dec": 42.268, "display_scale": 16.8 }, "geometry": { "type": "Point", "coordinates": [ 28.427, 42.268 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 216, "name": "天桴", "en": "Celestial Drumstick", "pinyin": "Tian Fu", "desig": "天桴", "rank": 3, "display_ra": -59.5278, "display_dec": 0.0921, "display_scale": 4.7 }, "geometry": { "type": "Point", "coordinates": [ -59.5278, 0.0921 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 217, "name": "天辐", "en": "Celestial Spokes", "pinyin": "Tian Fu", "desig": "天辐", "rank": 3, "display_ra": -125.54, "display_dec": -28.9564, "display_scale": 1.6 }, "geometry": { "type": "Point", "coordinates": [ -125.54, -28.9564 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 218, "name": "天纲", "en": "Materials for Making Tents", "pinyin": "Tian Gang", "desig": "天纲", "rank": 3, "display_ra": -16.0129, "display_dec": -32.5396, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -16.0129, -32.5396 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 219, "name": "天高", "en": "Celestial High Terrace", "pinyin": "Tian Gao", "desig": "天高", "rank": 3, "display_ra": 76.3314, "display_dec": 20.4682, "display_scale": 7.0 }, "geometry": { "type": "Point", "coordinates": [ 76.3314, 20.4682 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 220, "name": "天钩", "en": "Celestial Hook", "pinyin": "Tian Gou", "desig": "天钩", "rank": 3, "display_ra": -33.3999, "display_dec": 64.9751, "display_scale": 46.1 }, "geometry": { "type": "Point", "coordinates": [ -33.3999, 64.9751 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 221, "name": "天狗", "en": "Celestial Dog", "pinyin": "Tian Gou", "desig": "天狗", "rank": 3, "display_ra": 131.6463, "display_dec": -35.3355, "display_scale": 15.3 }, "geometry": { "type": "Point", "coordinates": [ 131.6463, -35.3355 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 222, "name": "天关", "en": "Celestial Pass", "pinyin": "Tian Guan", "desig": "天关", "rank": 3, "display_ra": 84.4112, "display_dec": 21.1425, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 84.4112, 21.1425 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 223, "name": "天皇大帝", "en": "Great Emperor of Heaven", "pinyin": "Tian Huang Da Di", "desig": "天皇大帝", "rank": 3, "display_ra": -26.7058, "display_dec": 86.108, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -26.7058, 86.108 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 224, "name": "天潢", "en": "Celestial Pier", "pinyin": "Tian Huang", "desig": "天潢", "rank": 3, "display_ra": 80.1346, "display_dec": 35.5861, "display_scale": 5.8 }, "geometry": { "type": "Point", "coordinates": [ 80.1346, 35.5861 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 225, "name": "天溷", "en": "Celestial Pigsty", "pinyin": "Tian Hun", "desig": "天溷", "rank": 3, "display_ra": 12.5269, "display_dec": -10.8107, "display_scale": 4.1 }, "geometry": { "type": "Point", "coordinates": [ 12.5269, -10.8107 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 226, "name": "天鸡", "en": "Celestial Cock", "pinyin": "Tian Ji", "desig": "天鸡", "rank": 3, "display_ra": -63.8899, "display_dec": -17.9425, "display_scale": 3.6 }, "geometry": { "type": "Point", "coordinates": [ -63.8899, -17.9425 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 227, "name": "天记", "en": "Judge for Estimating the Age of Animals", "pinyin": "Tian Ji", "desig": "天记", "rank": 3, "display_ra": 136.999, "display_dec": -43.4326, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 136.999, -43.4326 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 228, "name": "天纪", "en": "Celestial Discipline", "pinyin": "Tian Ji", "desig": "天纪", "rank": 3, "display_ra": -102.7062, "display_dec": 34.0179, "display_scale": 23.5 }, "geometry": { "type": "Point", "coordinates": [ -102.7062, 34.0179 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 229, "name": "天江", "en": "Celestial River", "pinyin": "Tian Jiang", "desig": "天江", "rank": 3, "display_ra": -99.924, "display_dec": -25.5798, "display_scale": 3.0 }, "geometry": { "type": "Point", "coordinates": [ -99.924, -25.5798 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 230, "name": "天街", "en": "Celestial Street", "pinyin": "Tian Jie", "desig": "天街", "rank": 3, "display_ra": 65.3348, "display_dec": 21.3893, "display_scale": 2.0 }, "geometry": { "type": "Point", "coordinates": [ 65.3348, 21.3893 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 231, "name": "天节", "en": "Celestial Tally", "pinyin": "Tian Jie", "desig": "天节", "rank": 3, "display_ra": 67.5023, "display_dec": 12.1527, "display_scale": 5.4 }, "geometry": { "type": "Point", "coordinates": [ 67.5023, 12.1527 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 232, "name": "天津", "en": "Celestial Ford", "pinyin": "Tian Jin", "desig": "天津", "rank": 3, "display_ra": -52.1384, "display_dec": 38.5213, "display_scale": 23.2 }, "geometry": { "type": "Point", "coordinates": [ -52.1384, 38.5213 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 233, "name": "天厩", "en": "Celestial Stable", "pinyin": "Tian Jiu", "desig": "天厩", "rank": 3, "display_ra": 4.7766, "display_dec": 37.7334, "display_scale": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 4.7766, 37.7334 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 234, "name": "天狼", "en": "Celestial Wolf", "pinyin": "Tian Lang", "desig": "天狼", "rank": 3, "display_ra": 101.2872, "display_dec": -16.7161, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 101.2872, -16.7161 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 235, "name": "天牢", "en": "Celestial Prison", "pinyin": "Tian Lao", "desig": "天牢", "rank": 3, "display_ra": 168.0623, "display_dec": 41.3474, "display_scale": 9.1 }, "geometry": { "type": "Point", "coordinates": [ 168.0623, 41.3474 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 236, "name": "天垒城", "en": "Celestial Ramparts", "pinyin": "Tian Lei Cheng", "desig": "天垒城", "rank": 3, "display_ra": -39.1731, "display_dec": -11.5128, "display_scale": 11.7 }, "geometry": { "type": "Point", "coordinates": [ -39.1731, -11.5128 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 237, "name": "天理", "en": "Judge for Nobility", "pinyin": "Tian Li", "desig": "天理", "rank": 3, "display_ra": 174.1505, "display_dec": 58.6999, "display_scale": 10.1 }, "geometry": { "type": "Point", "coordinates": [ 174.1505, 58.6999 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 238, "name": "天廪", "en": "Celestial Foodstuff", "pinyin": "Tian Lin", "desig": "天廪", "rank": 3, "display_ra": 51.9608, "display_dec": 10.9828, "display_scale": 3.9 }, "geometry": { "type": "Point", "coordinates": [ 51.9608, 10.9828 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 239, "name": "天门", "en": "Celestial Gate", "pinyin": "Tian Men", "desig": "天门", "rank": 3, "display_ra": -160.061, "display_dec": -16.0861, "display_scale": 3.8 }, "geometry": { "type": "Point", "coordinates": [ -160.061, -16.0861 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 240, "name": "天钱", "en": "Celestial Money", "pinyin": "Tian Qian", "desig": "天钱", "rank": 3, "display_ra": -30.6133, "display_dec": -31.4711, "display_scale": 6.3 }, "geometry": { "type": "Point", "coordinates": [ -30.6133, -31.4711 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 241, "name": "天枪", "en": "Celestial Spear", "pinyin": "Tian Qiang", "desig": "天枪", "rank": 3, "display_ra": -145.1674, "display_dec": 51.609, "display_scale": 2.9 }, "geometry": { "type": "Point", "coordinates": [ -145.1674, 51.609 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 242, "name": "天囷", "en": "Circular Celestial Granary", "pinyin": "Tian Qun", "desig": "天囷", "rank": 3, "display_ra": 41.5888, "display_dec": 3.8603, "display_scale": 17.4 }, "geometry": { "type": "Point", "coordinates": [ 41.5888, 3.8603 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 243, "name": "天乳", "en": "Celestial Milk", "pinyin": "Tian Ru", "desig": "天乳", "rank": 3, "display_ra": -122.595, "display_dec": -3.4302, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -122.595, -3.4302 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 244, "name": "天社", "en": "Celestial Earth God's Temple", "pinyin": "Tian She", "desig": "天社", "rank": 3, "display_ra": 132.5943, "display_dec": -51.8415, "display_scale": 20.4 }, "geometry": { "type": "Point", "coordinates": [ 132.5943, -51.8415 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 245, "name": "天田(角宿)", "en": "Celestial Farmland (In Horn Mansion)", "pinyin": "Tian Tian(Jiao Xiu)", "desig": "天田(角宿)", "rank": 3, "display_ra": -153.0277, "display_dec": 2.6018, "display_scale": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -153.0277, 2.6018 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 246, "name": "天田(牛宿)", "en": "Celestial Farmland (In Ox Mansion)", "pinyin": "Tian Tian(Niu Xiu)", "desig": "天田(牛宿)", "rank": 3, "display_ra": -45.077, "display_dec": -26.3126, "display_scale": 6.8 }, "geometry": { "type": "Point", "coordinates": [ -45.077, -26.3126 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 247, "name": "天相", "en": "Celestial Premier", "pinyin": "Tian Xiang", "desig": "天相", "rank": 3, "display_ra": 153.4695, "display_dec": -8.2385, "display_scale": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 153.4695, -8.2385 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 248, "name": "天乙", "en": "Celestial Great One", "pinyin": "Tian Yi", "desig": "天乙", "rank": 3, "display_ra": -152.1419, "display_dec": 64.7233, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -152.1419, 64.7233 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 249, "name": "天阴", "en": "Celestial Yin Force", "pinyin": "Tian Yin", "desig": "天阴", "rank": 3, "display_ra": 50.0091, "display_dec": 21.2653, "display_scale": 4.2 }, "geometry": { "type": "Point", "coordinates": [ 50.0091, 21.2653 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 250, "name": "天庾", "en": "Ricks of Grain", "pinyin": "Tian Yu", "desig": "天庾", "rank": 3, "display_ra": 36.6976, "display_dec": -30.3191, "display_scale": 11.1 }, "geometry": { "type": "Point", "coordinates": [ 36.6976, -30.3191 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 251, "name": "天渊", "en": "Celestial Spring", "pinyin": "Tian Yuan", "desig": "天渊", "rank": 3, "display_ra": -69.1844, "display_dec": -42.7078, "display_scale": 4.2 }, "geometry": { "type": "Point", "coordinates": [ -69.1844, -42.7078 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 252, "name": "天园", "en": "Celestial Orchard", "pinyin": "Tian Yuan", "desig": "天园", "rank": 3, "display_ra": 45.8503, "display_dec": -40.6877, "display_scale": 46.1 }, "geometry": { "type": "Point", "coordinates": [ 45.8503, -40.6877 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 253, "name": "天苑", "en": "Celestial Meadows", "pinyin": "Tian Yuan", "desig": "天苑", "rank": 3, "display_ra": 50.5059, "display_dec": -16.7159, "display_scale": 19.0 }, "geometry": { "type": "Point", "coordinates": [ 50.5059, -16.7159 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 254, "name": "天籥", "en": "Celestial Keyhole", "pinyin": "Tian Yue", "desig": "天籥", "rank": 3, "display_ra": -94.2104, "display_dec": -24.757, "display_scale": 6.1 }, "geometry": { "type": "Point", "coordinates": [ -94.2104, -24.757 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 255, "name": "天柱", "en": "Celestial Pillar", "pinyin": "Tian Zhu", "desig": "天柱", "rank": 3, "display_ra": -66.8066, "display_dec": 79.5063, "display_scale": 46.4 }, "geometry": { "type": "Point", "coordinates": [ -66.8066, 79.5063 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 256, "name": "天樽", "en": "Celestial Wine Cup", "pinyin": "Tian Zun", "desig": "天樽", "rank": 3, "display_ra": 108.2361, "display_dec": 23.5164, "display_scale": 5.3 }, "geometry": { "type": "Point", "coordinates": [ 108.2361, 23.5164 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 257, "name": "屠肆", "en": "Butcher's Shops", "pinyin": "Tu Si", "desig": "屠肆", "rank": 3, "display_ra": -86.2838, "display_dec": 21.9944, "display_scale": 4.4 }, "geometry": { "type": "Point", "coordinates": [ -86.2838, 21.9944 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 258, "name": "土公", "en": "Official for Earthworks and Buildings", "pinyin": "Tu Gong", "desig": "土公", "rank": 3, "display_ra": 3.5242, "display_dec": 8.0883, "display_scale": 5.8 }, "geometry": { "type": "Point", "coordinates": [ 3.5242, 8.0883 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 259, "name": "土公吏", "en": "Official for Materials Supply", "pinyin": "Tu Gong Li", "desig": "土公吏", "rank": 3, "display_ra": -23.6686, "display_dec": 10.6671, "display_scale": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -23.6686, 10.6671 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 260, "name": "土司空", "en": "Master of Constructions", "pinyin": "Tu Si Kong", "desig": "土司空", "rank": 3, "display_ra": 10.8974, "display_dec": -17.9866, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 10.8974, -17.9866 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 261, "name": "外厨", "en": "Outer Kitchen", "pinyin": "Wai Chu", "desig": "外厨", "rank": 3, "display_ra": 129.4769, "display_dec": -4.5653, "display_scale": 5.7 }, "geometry": { "type": "Point", "coordinates": [ 129.4769, -4.5653 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 262, "name": "外屏", "en": "Outer Fence", "pinyin": "Wai Ping", "desig": "外屏", "rank": 3, "display_ra": 21.3412, "display_dec": 5.327, "display_scale": 18.3 }, "geometry": { "type": "Point", "coordinates": [ 21.3412, 5.327 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 263, "name": "王良", "en": "Wang Liang", "pinyin": "Wang Liang", "desig": "王良", "rank": 3, "display_ra": 7.2854, "display_dec": 58.7271, "display_scale": 10.0 }, "geometry": { "type": "Point", "coordinates": [ 7.2854, 58.7271 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 265, "name": "文昌", "en": "Administrative Center", "pinyin": "Wen Chang", "desig": "文昌", "rank": 3, "display_ra": 142.6221, "display_dec": 55.3217, "display_scale": 10.8 }, "geometry": { "type": "Point", "coordinates": [ 142.6221, 55.3217 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 266, "name": "五车", "en": "Five Chariots", "pinyin": "Wu Che", "desig": "五车", "rank": 3, "display_ra": 82.0894, "display_dec": 37.3028, "display_scale": 17.4 }, "geometry": { "type": "Point", "coordinates": [ 82.0894, 37.3028 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 267, "name": "五帝内座", "en": "Interior Seats of the Five Emperors", "pinyin": "Wu Di Nei Zuo", "desig": "五帝内座", "rank": 3, "display_ra": 46.8962, "display_dec": 79.3649, "display_scale": 31.2 }, "geometry": { "type": "Point", "coordinates": [ 46.8962, 79.3649 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 268, "name": "五帝座", "en": "Seats of the Five Emperors", "pinyin": "Wu Di Zuo", "desig": "五帝座", "rank": 3, "display_ra": 177.6083, "display_dec": 14.261, "display_scale": 4.0 }, "geometry": { "type": "Point", "coordinates": [ 177.6083, 14.261 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 269, "name": "五诸侯(井宿)", "en": "Five Feudal Kings", "pinyin": "Wu Zhu Hou(JingXiu)", "desig": "五诸侯(井宿)", "rank": 3, "display_ra": 110.7857, "display_dec": 30.3636, "display_scale": 15.2 }, "geometry": { "type": "Point", "coordinates": [ 110.7857, 30.3636 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 270, "name": "五诸侯(太微垣)", "en": "Five Lords", "pinyin": "Wu Zhu Hou(Tai Wei Yuan)", "desig": "五诸侯(太微垣)", "rank": 3, "display_ra": -169.7053, "display_dec": 18.0263, "display_scale": 12.6 }, "geometry": { "type": "Point", "coordinates": [ -169.7053, 18.0263 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 271, "name": "西咸", "en": "Western Door", "pinyin": "Xi Xian", "desig": "西咸", "rank": 3, "display_ra": -121.4458, "display_dec": -14.0514, "display_scale": 5.4 }, "geometry": { "type": "Point", "coordinates": [ -121.4458, -14.0514 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 272, "name": "奚仲", "en": "Xi Zhong", "pinyin": "Xi Zhong", "desig": "奚仲", "rank": 3, "display_ra": -67.6352, "display_dec": 51.7948, "display_scale": 6.2 }, "geometry": { "type": "Point", "coordinates": [ -67.6352, 51.7948 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 273, "name": "咸池", "en": "Pool of Harmony", "pinyin": "Xian Chi", "desig": "咸池", "rank": 3, "display_ra": 81.2366, "display_dec": 40.8153, "display_scale": 2.9 }, "geometry": { "type": "Point", "coordinates": [ 81.2366, 40.8153 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 274, "name": "相", "en": "Prime Minister", "pinyin": "Xiang", "desig": "相", "rank": 3, "display_ra": -173.9938, "display_dec": 51.5623, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -173.9938, 51.5623 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 275, "name": "小斗", "en": "Little Dipper", "pinyin": "Xiao Dou", "desig": "小斗", "rank": 3, "display_ra": 149.3022, "display_dec": -79.2129, "display_scale": 70.6 }, "geometry": { "type": "Point", "coordinates": [ 149.3022, -79.2129 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 276, "name": "幸臣", "en": "Officer of Honour", "pinyin": "Xing Chen", "desig": "幸臣", "rank": 3, "display_ra": -179.9804, "display_dec": 19.4194, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -179.9804, 19.4194 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 277, "name": "虚梁", "en": "Temple", "pinyin": "Xu Liang", "desig": "虚梁", "rank": 3, "display_ra": -20.7006, "display_dec": -4.8077, "display_scale": 10.0 }, "geometry": { "type": "Point", "coordinates": [ -20.7006, -4.8077 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 278, "name": "轩辕", "en": "Xuanyuan", "pinyin": "Xuan Yuan", "desig": "轩辕", "rank": 3, "display_ra": 146.6814, "display_dec": 25.5448, "display_scale": 32.5 }, "geometry": { "type": "Point", "coordinates": [ 146.6814, 25.5448 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 279, "name": "玄戈", "en": "Sombre Lance", "pinyin": "Xuan Ge", "desig": "玄戈", "rank": 3, "display_ra": -145.9041, "display_dec": 46.0883, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -145.9041, 46.0883 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 280, "name": "钺(附官)", "en": "Battle Axe (Vassal of Well)", "pinyin": "Yue", "desig": "钺(附官)", "rank": 3, "display_ra": 93.7194, "display_dec": 22.5068, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 93.7194, 22.5068 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 281, "name": "阳门", "en": "Gate of Yang", "pinyin": "Yang Men", "desig": "阳门", "rank": 3, "display_ra": -139.2978, "display_dec": -36.4836, "display_scale": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -139.2978, -36.4836 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 282, "name": "野鸡", "en": "Wild Cockerel", "pinyin": "Ye Ji", "desig": "野鸡", "rank": 3, "display_ra": 99.171, "display_dec": -19.2559, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 99.171, -19.2559 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 283, "name": "谒者", "en": "Usher to the Court", "pinyin": "Ye Zhe", "desig": "谒者", "rank": 3, "display_ra": -174.9126, "display_dec": 3.3126, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -174.9126, 3.3126 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 284, "name": "异雀", "en": "Exotic Bird", "pinyin": "Yi Que", "desig": "异雀", "rank": 3, "display_ra": -122.4588, "display_dec": -75.7193, "display_scale": 46.0 }, "geometry": { "type": "Point", "coordinates": [ -122.4588, -75.7193 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 285, "name": "阴德", "en": "Hidden Virtue", "pinyin": "Yin De", "desig": "阴德", "rank": 3, "display_ra": 158.6644, "display_dec": 74.7737, "display_scale": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 158.6644, 74.7737 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 286, "name": "右更", "en": "Official in Charge of Pasturing", "pinyin": "You Geng", "desig": "右更", "rank": 3, "display_ra": 23.9561, "display_dec": 14.165, "display_scale": 10.0 }, "geometry": { "type": "Point", "coordinates": [ 23.9561, 14.165 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 287, "name": "右旗", "en": "Right Flag", "pinyin": "You Qi", "desig": "右旗", "rank": 3, "display_ra": -65.0455, "display_dec": -0.5976, "display_scale": 16.0 }, "geometry": { "type": "Point", "coordinates": [ -65.0455, -0.5976 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 288, "name": "右摄提", "en": "Right Conductor", "pinyin": "You She Ti", "desig": "右摄提", "rank": 3, "display_ra": -152.2566, "display_dec": 17.0978, "display_scale": 2.6 }, "geometry": { "type": "Point", "coordinates": [ -152.2566, 17.0978 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 289, "name": "鱼", "en": "Fish", "pinyin": "Yu", "desig": "鱼", "rank": 3, "display_ra": -91.5218, "display_dec": -34.7527, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -91.5218, -34.7527 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 290, "name": "羽林军", "en": "Palace Guard", "pinyin": "Yu Lin Jun", "desig": "羽林军", "rank": 3, "display_ra": -19.807, "display_dec": -18.615, "display_scale": 21.8 }, "geometry": { "type": "Point", "coordinates": [ -19.807, -18.615 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 291, "name": "玉井", "en": "Jade Well", "pinyin": "Yu Jing", "desig": "玉井", "rank": 3, "display_ra": 77.3807, "display_dec": -6.9202, "display_scale": 4.0 }, "geometry": { "type": "Point", "coordinates": [ 77.3807, -6.9202 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 292, "name": "御女", "en": "Maids-in-waiting", "pinyin": "Yu Nü", "desig": "御女", "rank": 3, "display_ra": -83.9703, "display_dec": 74.0834, "display_scale": 25.7 }, "geometry": { "type": "Point", "coordinates": [ -83.9703, 74.0834 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 293, "name": "月", "en": "Lunar Star", "pinyin": "Yue", "desig": "月", "rank": 3, "display_ra": 61.1738, "display_dec": 22.0819, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 61.1738, 22.0819 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 294, "name": "附耳(附官)", "en": "Whisper (Vassal of Net)", "pinyin": "Fu Er", "desig": "附耳(附官)", "rank": 3, "display_ra": 69.8188, "display_dec": 15.918, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ 69.8188, 15.918 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 295, "name": "云雨", "en": "Cloud and Rain", "pinyin": "Yun Yu", "desig": "云雨", "rank": 3, "display_ra": -5.4512, "display_dec": 0.3721, "display_scale": 5.6 }, "geometry": { "type": "Point", "coordinates": [ -5.4512, 0.3721 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 296, "name": "造父", "en": "Zaofu", "pinyin": "Zao Fu", "desig": "造父", "rank": 3, "display_ra": -28.4152, "display_dec": 59.6611, "display_scale": 11.4 }, "geometry": { "type": "Point", "coordinates": [ -28.4152, 59.6611 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 297, "name": "长垣", "en": "Long Wall", "pinyin": "Chang Yuan", "desig": "长垣", "rank": 3, "display_ra": 160.1817, "display_dec": 10.5742, "display_scale": 7.2 }, "geometry": { "type": "Point", "coordinates": [ 160.1817, 10.5742 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 298, "name": "丈人", "en": "Grandfather", "pinyin": "Zhang Ren", "desig": "丈人", "rank": 3, "display_ra": 83.8577, "display_dec": -34.7723, "display_scale": 2.1 }, "geometry": { "type": "Point", "coordinates": [ 83.8577, -34.7723 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 299, "name": "招摇", "en": "Twinkling Indicator", "pinyin": "Zhao Yao", "desig": "招摇", "rank": 3, "display_ra": -141.9805, "display_dec": 38.3083, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -141.9805, 38.3083 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 300, "name": "辅(附官)", "en": "Assistant (Vassal of Northern Dipper)", "pinyin": "Fu", "desig": "辅(附官)", "rank": 3, "display_ra": -158.6936, "display_dec": 54.988, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -158.6936, 54.988 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 301, "name": "折威", "en": "Executions", "pinyin": "Zhe Wei", "desig": "折威", "rank": 3, "display_ra": -140.3953, "display_dec": -25.9517, "display_scale": 12.8 }, "geometry": { "type": "Point", "coordinates": [ -140.3953, -25.9517 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 302, "name": "阵车", "en": "Battle Chariots", "pinyin": "Zhen Che", "desig": "阵车", "rank": 3, "display_ra": -133.9851, "display_dec": -29.0545, "display_scale": 6.9 }, "geometry": { "type": "Point", "coordinates": [ -133.9851, -29.0545 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 303, "name": "右辖(附官)", "en": "Right linchpin (Vassal of Chariot)", "pinyin": "You Xia", "desig": "右辖(附官)", "rank": 3, "display_ra": -177.8966, "display_dec": -24.7289, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -177.8966, -24.7289 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 304, "name": "织女", "en": "Weaving Girl", "pinyin": "Zhi Nü", "desig": "织女", "rank": 3, "display_ra": -79.7861, "display_dec": 38.6376, "display_scale": 2.1 }, "geometry": { "type": "Point", "coordinates": [ -79.7861, 38.6376 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 305, "name": "左辖(附官)", "en": "Left linchpin (Vassal of Chariot)", "pinyin": "Zuo Xia", "desig": "左辖(附官)", "rank": 3, "display_ra": -171.9824, "display_dec": -16.196, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -171.9824, -16.196 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 306, "name": "周鼎", "en": "Tripod of the Zhou", "pinyin": "Zhou Ding", "desig": "周鼎", "rank": 3, "display_ra": -163.4815, "display_dec": 29.2049, "display_scale": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -163.4815, 29.2049 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 307, "name": "诸王", "en": "Feudal Kings", "pinyin": "Zhu Wang", "desig": "诸王", "rank": 3, "display_ra": 79.4466, "display_dec": 25.2846, "display_scale": 17.8 }, "geometry": { "type": "Point", "coordinates": [ 79.4466, 25.2846 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 308, "name": "柱(毕宿)", "en": "Pillars (In Net Mansion)", "pinyin": "Zhu(Bi Xiu)", "desig": "柱(毕宿)", "rank": 3, "display_ra": 81.6824, "display_dec": 37.1579, "display_scale": 13.3 }, "geometry": { "type": "Point", "coordinates": [ 81.6824, 37.1579 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 309, "name": "柱(角宿)", "en": "Pillars (In Horn Mansion)", "pinyin": "Zhu(Jiao Xiu)", "desig": "柱(角宿)", "rank": 3, "display_ra": -151.6582, "display_dec": -38.9929, "display_scale": 16.4 }, "geometry": { "type": "Point", "coordinates": [ -151.6582, -38.9929 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 310, "name": "柱史", "en": "Official of Royal Archives", "pinyin": "Zhu Shi", "desig": "柱史", "rank": 3, "display_ra": -84.8107, "display_dec": 71.3378, "display_scale": 0.0 }, "geometry": { "type": "Point", "coordinates": [ -84.8107, 71.3378 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 311, "name": "子", "en": "Son", "pinyin": "Zi", "desig": "子", "rank": 3, "display_ra": 88.0094, "display_dec": -34.7849, "display_scale": 2.0 }, "geometry": { "type": "Point", "coordinates": [ 88.0094, -34.7849 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 312, "name": "宗", "en": "Patriarchal Clan", "pinyin": "Zong", "desig": "宗", "rank": 3, "display_ra": -78.4146, "display_dec": 19.3639, "display_scale": 2.4 }, "geometry": { "type": "Point", "coordinates": [ -78.4146, 19.3639 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 313, "name": "宗人", "en": "Official of Religious Ceremonies", "pinyin": "Zong Ren", "desig": "宗人", "rank": 3, "display_ra": -89.2853, "display_dec": 2.8369, "display_scale": 3.1 }, "geometry": { "type": "Point", "coordinates": [ -89.2853, 2.8369 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 314, "name": "宗正", "en": "Official for the Royal Clan", "pinyin": "Zong Zheng", "desig": "宗正", "rank": 3, "display_ra": -93.5793, "display_dec": 3.6373, "display_scale": 1.9 }, "geometry": { "type": "Point", "coordinates": [ -93.5793, 3.6373 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 315, "name": "左更", "en": "Official in Charge of the Forest", "pinyin": "Zuo Geng", "desig": "左更", "rank": 3, "display_ra": 41.2887, "display_dec": 18.5218, "display_scale": 6.9 }, "geometry": { "type": "Point", "coordinates": [ 41.2887, 18.5218 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 316, "name": "左旗", "en": "Left Flag", "pinyin": "Zuo Qi", "desig": "左旗", "rank": 3, "display_ra": -60.7033, "display_dec": 17.3449, "display_scale": 8.5 }, "geometry": { "type": "Point", "coordinates": [ -60.7033, 17.3449 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 317, "name": "左摄提", "en": "Left Conductor", "pinyin": "Zuo She Ti", "desig": "左摄提", "rank": 3, "display_ra": -139.2541, "display_dec": 15.3463, "display_scale": 3.2 }, "geometry": { "type": "Point", "coordinates": [ -139.2541, 15.3463 ] } }, |
||||
{ "type": "Feature", "properties": { "id": 318, "name": "座旗", "en": "Seat Flags", "pinyin": "Zuo Qi", "desig": "座旗", "rank": 3, "display_ra": 102.0347, "display_dec": 43.8294, "display_scale": 9.9 }, "geometry": { "type": "Point", "coordinates": [ 102.0347, 43.8294 ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -0,0 +1,262 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "constellations.lines.cn", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "id": 1, "rank": 1, "name": "毕宿", "en": "Net" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 64.9483, 15.6276 ], [ 60.1701, 12.4903 ] ], [ [ 67.1542, 19.1804 ], [ 66.3724, 17.9279 ], [ 65.7337, 17.5425 ], [ 64.9483, 15.6276 ] ], [ [ 64.9483, 15.6276 ], [ 66.5864, 15.6183 ], [ 67.1437, 15.9622 ], [ 68.9802, 16.5093 ], [ 69.8188, 15.918 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 2, "rank": 1, "name": "壁宿", "en": "Wall" }, "geometry": { "type": "LineString", "coordinates": [ [ 3.309, 15.1836 ], [ 2.0969, 29.0904 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 3, "rank": 1, "name": "参宿", "en": "Three Stars" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 83.0017, -0.2991 ], [ 78.6345, -8.2016 ] ], [ [ 83.0017, -0.2991 ], [ 81.2828, 6.3497 ] ], [ [ 85.1897, -1.9426 ], [ 84.0534, -1.2019 ], [ 83.0017, -0.2991 ] ], [ [ 88.7929, 7.4071 ], [ 85.1897, -1.9426 ] ], [ [ 85.1897, -1.9426 ], [ 86.9391, -9.6696 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 4, "rank": 1, "name": "氐宿", "en": "Root" }, "geometry": { "type": "LineString", "coordinates": [ [ -137.2804, -16.0418 ], [ -131.9446, -19.7917 ], [ -126.1184, -14.7895 ], [ -130.7483, -9.3829 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 5, "rank": 1, "name": "斗宿", "en": "Dipper" }, "geometry": { "type": "LineString", "coordinates": [ [ -86.5591, -21.0588 ], [ -83.0073, -25.4217 ], [ -78.5859, -26.9908 ], [ -76.1836, -26.2967 ], [ -73.265, -27.6704 ], [ -74.347, -29.8801 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 6, "rank": 1, "name": "房宿", "en": "Room" }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6407, -19.8055 ], [ -119.9166, -22.6217 ], [ -120.287, -26.1141 ], [ -120.7788, -29.2141 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 7, "rank": 1, "name": "鬼宿", "en": "Ghosts" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.8989, 18.0944 ], [ 128.1771, 20.4412 ], [ 130.8214, 21.4685 ], [ 131.1712, 18.1543 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 8, "rank": 1, "name": "箕宿", "en": "Winnowing Basket" }, "geometry": { "type": "LineString", "coordinates": [ [ -88.548, -30.4241 ], [ -84.7515, -29.8281 ], [ -83.957, -34.3846 ], [ -85.5932, -36.7617 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 9, "rank": 1, "name": "角宿", "en": "Horn" }, "geometry": { "type": "LineString", "coordinates": [ [ -158.7018, -11.1613 ], [ -156.3267, -0.5958 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 10, "rank": 1, "name": "井宿", "en": "Well" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 97.2408, 20.2121 ], [ 95.7401, 22.5136 ], [ 93.7194, 22.5068 ] ], [ [ 102.8877, 21.7611 ], [ 97.2408, 20.2121 ] ], [ [ 97.2408, 20.2121 ], [ 99.4279, 16.3993 ] ], [ [ 99.4279, 16.3993 ], [ 106.0272, 20.5703 ] ], [ [ 99.4279, 16.3993 ], [ 101.3224, 12.8956 ] ], [ [ 102.8877, 21.7611 ], [ 100.983, 25.1311 ] ], [ [ 106.0272, 20.5703 ], [ 102.8877, 21.7611 ] ], [ [ 109.5232, 16.5404 ], [ 106.0272, 20.5703 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 11, "rank": 1, "name": "亢宿", "en": "Neck" }, "geometry": { "type": "LineString", "coordinates": [ [ -145.2225, -13.3711 ], [ -146.7761, -10.2737 ], [ -145.9964, -6.0005 ], [ -142.9494, -2.228 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 12, "rank": 1, "name": "奎宿", "en": "Legs" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.3017, 23.4176 ], [ 11.8347, 24.2672 ], [ 12.4715, 27.7103 ], [ 9.6389, 29.3118 ], [ 9.832, 30.861 ], [ 9.2202, 33.7193 ], [ 12.4535, 41.0789 ], [ 14.1884, 38.4993 ], [ 17.433, 35.6206 ], [ 16.5467, 32.1815 ], [ 17.9152, 30.0896 ], [ 20.2807, 28.7382 ], [ 19.8666, 27.2641 ], [ 18.4373, 24.5837 ], [ 17.8634, 21.0347 ], [ 16.4206, 21.4732 ], [ 14.3017, 23.4176 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 13, "rank": 1, "name": "柳宿", "en": "Willow" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 129.414, 5.7038 ], [ 131.6938, 6.4188 ], [ 132.1082, 5.8378 ] ], [ [ 129.6893, 3.3414 ], [ 130.8061, 3.3987 ], [ 132.1082, 5.8378 ] ], [ [ 132.1082, 5.8378 ], [ 133.8484, 5.9456 ], [ 136.4932, 5.0923 ], [ 138.5911, 2.3143 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 14, "rank": 1, "name": "娄宿", "en": "Bond" }, "geometry": { "type": "LineString", "coordinates": [ [ 31.7934, 23.4624 ], [ 28.66, 20.808 ], [ 28.3826, 19.2939 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 15, "rank": 1, "name": "昴宿", "en": "Hairy Head" }, "geometry": { "type": "LineString", "coordinates": [ [ 56.4567, 24.3677 ], [ 56.477, 24.5545 ], [ 56.3021, 24.4673 ], [ 56.2189, 24.1133 ], [ 56.5816, 23.9484 ], [ 56.8712, 24.1051 ], [ 57.2906, 24.0534 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 16, "rank": 1, "name": "牛宿", "en": "Ox" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -56.8922, -12.6175 ], [ -55.4864, -12.5449 ], [ -54.7472, -14.7814 ], [ -53.17, -18.2117 ] ], [ [ -53.17, -18.2117 ], [ -52.7849, -17.8137 ], [ -52.5254, -18.5832 ], [ -53.17, -18.2117 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 17, "rank": 1, "name": "女宿", "en": "Girl" }, "geometry": { "type": "LineString", "coordinates": [ [ -48.081, -9.4958 ], [ -46.8365, -8.9833 ], [ -47.1427, -5.6266 ], [ -48.0657, -5.0277 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 18, "rank": 1, "name": "室宿", "en": "Encampment" }, "geometry": { "type": "LineString", "coordinates": [ [ -13.8098, 15.2053 ], [ -14.0564, 28.0828 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 19, "rank": 2, "name": "太微右垣", "en": "Supreme Palace Right Wall" }, "geometry": { "type": "LineString", "coordinates": [ [ 177.6738, 1.7647 ], [ 170.2841, 6.0293 ], [ 170.9811, 10.5295 ], [ 168.56, 15.4296 ], [ 168.5271, 20.5237 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 20, "rank": 2, "name": "太微左垣", "en": "Supreme Palace Left Wall" }, "geometry": { "type": "LineString", "coordinates": [ [ -175.0235, -0.6668 ], [ -169.5848, -1.4494 ], [ -166.0991, 3.3975 ], [ -164.4558, 10.9592 ], [ -162.503, 17.5294 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 21, "rank": 2, "name": "天市右垣", "en": "Heavenly Market Right Wall" }, "geometry": { "type": "LineString", "coordinates": [ [ -112.445, 21.4896 ], [ -114.5199, 19.1531 ], [ -117.9811, 17.047 ], [ -120.8867, 15.6616 ], [ -123.4531, 15.4218 ], [ -126.2994, 10.5389 ], [ -123.933, 6.4256 ], [ -122.296, 4.4777 ], [ -116.4136, -3.6943 ], [ -115.4196, -4.6925 ], [ -110.7103, -10.5671 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 22, "rank": 2, "name": "天市左垣", "en": "Heavenly Market Left Wall" }, "geometry": { "type": "LineString", "coordinates": [ [ -101.242, 24.8392 ], [ -97.3154, 26.1106 ], [ -93.3853, 27.7207 ], [ -88.1144, 28.7625 ], [ -76.9315, 21.4251 ], [ -73.6475, 13.8635 ], [ -75.9451, 4.2036 ], [ -84.6725, -2.8988 ], [ -90.2434, -9.7736 ], [ -95.6033, -15.3986 ], [ -102.4055, -15.7249 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 23, "rank": 1, "name": "危宿", "en": "Rooftop" }, "geometry": { "type": "LineString", "coordinates": [ [ -28.554, -0.3199 ], [ -27.4501, 6.1979 ], [ -33.9535, 9.875 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 24, "rank": 1, "name": "尾宿", "en": "Tail" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -107.4591, -34.2932 ], [ -107.0324, -38.0474 ] ], [ [ -107.0324, -38.0474 ], [ -106.9161, -38.0175 ] ], [ [ -107.0324, -38.0474 ], [ -106.5011, -42.362 ], [ -101.9617, -43.2392 ], [ -95.6703, -42.9978 ], [ -93.1038, -40.127 ], [ -94.378, -39.03 ], [ -96.5978, -37.1038 ], [ -97.309, -37.2958 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 25, "rank": 1, "name": "胃宿", "en": "Stomach" }, "geometry": { "type": "LineString", "coordinates": [ [ 40.863, 27.7071 ], [ 41.9773, 29.2471 ], [ 42.496, 27.2605 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 26, "rank": 1, "name": "心宿", "en": "Heart" }, "geometry": { "type": "LineString", "coordinates": [ [ -114.7028, -25.5928 ], [ -112.6481, -26.432 ], [ -111.0294, -28.216 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 27, "rank": 1, "name": "星宿", "en": "Star" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 141.8968, -8.6586 ], [ 142.2871, -2.769 ], [ 142.9955, -1.1847 ], [ 144.964, -1.1428 ] ], [ [ 141.8968, -8.6586 ], [ 140.1209, -9.5557 ], [ 139.9433, -11.9749 ], [ 142.9124, -10.552 ], [ 141.8968, -8.6586 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 28, "rank": 1, "name": "虚宿", "en": "Emptiness" }, "geometry": { "type": "LineString", "coordinates": [ [ -37.1103, -5.5712 ], [ -41.044, 5.2478 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 29, "rank": 1, "name": "翼宿", "en": "Wings" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 164.9436, -18.2988 ], [ 162.4062, -16.1936 ] ], [ [ 164.9436, -18.2988 ], [ 171.2205, -17.684 ] ], [ [ 164.9436, -18.2988 ], [ 170.8412, -18.78 ] ], [ [ 171.1525, -10.8593 ], [ 166.3916, -11.0889 ], [ 165.6302, -9.9949 ] ], [ [ 176.1907, -18.3507 ], [ 170.8412, -18.78 ] ], [ [ 170.8412, -18.78 ], [ 167.9145, -22.8258 ], [ 172.9481, -20.7765 ], [ 166.3329, -27.2936 ], [ 174.7518, -24.7211 ] ], [ [ 171.1525, -10.8593 ], [ 174.1705, -9.8022 ], [ 177.0979, -10.3131 ] ], [ [ 171.2205, -17.684 ], [ 169.8352, -14.7785 ], [ 174.6667, -13.2019 ], [ 171.7897, -12.3567 ], [ 171.1525, -10.8593 ] ], [ [ 171.2205, -17.684 ], [ 176.1907, -18.3507 ] ], [ [ 176.1907, -18.3507 ], [ 179.004, -17.1508 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 30, "rank": 1, "name": "张宿", "en": "Extended Net" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 147.8696, -14.8466 ], [ 145.0765, -14.3323 ] ], [ [ 147.8696, -14.8466 ], [ 152.647, -12.3541 ], [ 156.5226, -16.8363 ] ], [ [ 147.8696, -14.8466 ], [ 151.0117, -18.1014 ], [ 156.5226, -16.8363 ] ], [ [ 156.5226, -16.8363 ], [ 159.6456, -16.8766 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 31, "rank": 1, "name": "轸宿", "en": "Chariot" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -176.0485, -17.5419 ], [ -177.4688, -22.6198 ], [ -177.8966, -24.7289 ] ], [ [ -172.5339, -16.5154 ], [ -176.0485, -17.5419 ] ], [ [ -176.0485, -17.5419 ], [ -174.8598, -22.2159 ] ], [ [ -172.5339, -16.5154 ], [ -171.9824, -16.196 ] ], [ [ -171.4032, -23.3968 ], [ -172.5339, -16.5154 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 32, "rank": 2, "name": "紫微右垣", "en": "Purple Forbidden Right Wall" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -148.9027, 64.3759 ], [ -171.6294, 69.7882 ], [ -180.0, 69.715140619050374 ] ], [ [ 179.9999, 69.715137360434866 ], [ 172.8509, 69.3311 ], [ 143.6202, 69.8303 ], [ 103.426, 68.8883 ], [ 73.5125, 66.3427 ], [ 49.997, 65.6523 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 33, "rank": 2, "name": "紫微左垣", "en": "Purple Forbidden Left Wall" }, "geometry": { "type": "LineString", "coordinates": [ [ -128.7676, 58.9661 ], [ -119.5277, 58.5653 ], [ -114.0021, 61.5142 ], [ -102.8034, 65.7147 ], [ -76.4006, 71.2972 ], [ -52.1233, 74.9546 ], [ -13.0256, 75.3875 ], [ 11.9419, 74.8476 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 34, "rank": 1, "name": "觜宿", "en": "Turtle Beak" }, "geometry": { "type": "LineString", "coordinates": [ [ 83.7052, 9.4896 ], [ 83.7845, 9.9342 ], [ 84.2266, 9.2907 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 35, "rank": 3, "name": "八谷", "en": "Eight Kinds of Crops" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 76.62556094733074, 54.313468486192775 ], [ 74.3217, 53.7521 ] ], [ [ 86.6266, 56.1156 ], [ 76.62556094733074, 54.313468486192775 ] ], [ [ 76.62556094733074, 54.313468486192775 ], [ 76.5352, 58.9724 ], [ 82.755332547548448, 59.587669664127468 ] ], [ [ 76.6693, 51.5977 ], [ 76.62556094733074, 54.313468486192775 ] ], [ [ 82.755332547548448, 59.587669664127468 ], [ 78.3802, 62.6911 ] ], [ [ 82.755332547548448, 59.587669664127468 ], [ 88.7409, 59.8884 ] ], [ [ 86.6266, 56.1156 ], [ 82.755332547548448, 59.587669664127468 ] ], [ [ 89.8818, 54.2847 ], [ 88.7116, 55.7069 ], [ 86.6266, 56.1156 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 36, "rank": 3, "name": "八魁", "en": "Net for Catching Birds" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 2.8161, -15.468 ], [ 0.935, -17.336 ], [ -0.4116, -15.8475 ] ], [ [ 2.8161, -15.468 ], [ 1.1255, -10.5095 ] ], [ [ 2.8161, -15.468 ], [ 5.7158, -12.2094 ] ], [ [ 2.8161, -15.468 ], [ 3.6601, -18.9329 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 37, "rank": 3, "name": "败瓜", "en": "Rotten Gourd" }, "geometry": { "type": "LineString", "coordinates": [ [ -51.6968, 11.3033 ], [ -51.5123, 13.0273 ], [ -50.3167, 13.3151 ], [ -50.5453, 11.3777 ], [ -50.2176, 10.0862 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 38, "rank": 3, "name": "败臼", "en": "Decayed Mortar" }, "geometry": { "type": "LineString", "coordinates": [ [ -31.5178, -37.3649 ], [ -28.4713, -39.5434 ], [ -16.8686, -32.8755 ], [ -19.408, -29.361 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 39, "rank": 3, "name": "北斗", "en": "Northern Dipper" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, 54.731613962658294 ], [ -176.1435, 57.0326 ], [ -166.4927, 55.9598 ], [ -159.0186, 54.9254 ], [ -153.1148, 49.3133 ] ], [ [ 165.932, 61.751 ], [ 165.4603, 56.3824 ], [ 178.4577, 53.6948 ], [ 179.9999, 54.73154903418861 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 40, "rank": 3, "name": "北河", "en": "North River" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.329, 28.0262 ], [ 113.6494, 31.8883 ], [ 112.278, 31.7846 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 41, "rank": 3, "name": "北极", "en": "Northern Pole" }, "geometry": { "type": "LineString", "coordinates": [ [ -129.8179, 71.834 ], [ -137.3236, 74.1555 ], [ -143.1186, 75.696 ], [ -147.7878, 77.5475 ], [ -167.6931, 83.4129 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 43, "rank": 3, "name": "鳖", "en": "River Turtle" }, "geometry": { "type": "LineString", "coordinates": [ [ -83.2566, -45.9685 ], [ -77.7896, -43.68 ], [ -74.2213, -42.0951 ], [ -72.9126, -40.4967 ], [ -72.4927, -39.3408 ], [ -72.6319, -37.9045 ], [ -73.3954, -37.0634 ], [ -75.3193, -37.1074 ], [ -75.8313, -37.3432 ], [ -81.6536, -38.726 ], [ -81.6242, -42.3125 ], [ -83.2566, -45.9685 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 44, "rank": 3, "name": "波斯", "en": "Persia" }, "geometry": { "type": "LineString", "coordinates": [ [ -61.8428, -54.971 ], [ -50.6082, -47.2915 ], [ -37.7494, -53.7059 ], [ -30.5205, -54.9926 ], [ -29.899, -55.8835 ], [ -48.9903, -51.921 ], [ -47.1248, -51.6082 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 45, "rank": 3, "name": "帛度", "en": "Textile Ruler" }, "geometry": { "type": "LineString", "coordinates": [ [ -89.6233, 21.5958 ], [ -87.8105, 20.8146 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 46, "rank": 3, "name": "参旗", "en": "Banner of Three Stars" }, "geometry": { "type": "LineString", "coordinates": [ [ 73.1332, 14.2506 ], [ 74.0928, 13.5145 ], [ 73.6954, 11.426 ], [ 73.7239, 10.1508 ], [ 72.653, 8.9002 ], [ 72.46, 6.9613 ], [ 72.8015, 5.6051 ], [ 73.5629, 2.4407 ], [ 74.6371, 1.714 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 47, "rank": 3, "name": "厕", "en": "Toilet" }, "geometry": { "type": "LineString", "coordinates": [ [ 83.1826, -17.8223 ], [ 82.0613, -20.7594 ], [ 86.1158, -22.4484 ], [ 87.8304, -20.8791 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 49, "rank": 3, "name": "常陈", "en": "Royal Guards" }, "geometry": { "type": "LineString", "coordinates": [ [ -165.9931, 38.3184 ], [ -168.7525, 39.2789 ], [ -170.3072, 40.8747 ], [ -171.5644, 41.3575 ], [ -173.5378, 39.0186 ], [ -175.9685, 40.6602 ], [ -179.4717, 43.0456 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 50, "rank": 3, "name": "车府", "en": "Big Yard for Chariots" }, "geometry": { "type": "LineString", "coordinates": [ [ -16.9915, 43.3124 ], [ -19.8714, 44.2763 ], [ -24.7436, 46.5366 ], [ -36.5048, 45.5918 ], [ -45.0435, 47.521 ], [ -43.7672, 43.9279 ], [ -35.7626, 40.4135 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 51, "rank": 3, "name": "车骑", "en": "Chariots and Cavalry" }, "geometry": { "type": "LineString", "coordinates": [ [ -131.9288, -52.0992 ], [ -140.5282, -49.4258 ], [ -141.8456, -50.4572 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 52, "rank": 3, "name": "车肆", "en": "Commodity Market" }, "geometry": { "type": "LineString", "coordinates": [ [ -113.0492, -8.3717 ], [ -107.5415, -10.783 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 53, "rank": 3, "name": "刍藁", "en": "Hay" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 35.861972508502284, -6.952105959142828 ], [ 34.246, -6.4221 ] ], [ [ 36.2433, -2.78 ], [ 35.861972508502284, -6.952105959142828 ] ], [ [ 35.861972508502284, -6.952105959142828 ], [ 35.5064, -10.7775 ], [ 37.047637295473464, -11.170591098319877 ] ], [ [ 37.047637295473464, -11.170591098319877 ], [ 38.6776, -7.8594 ], [ 35.861972508502284, -6.952105959142828 ] ], [ [ 36.4875, -12.2905 ], [ 37.047637295473464, -11.170591098319877 ] ], [ [ 37.047637295473464, -11.170591098319877 ], [ 39.891, -11.8722 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 54, "rank": 3, "name": "杵(箕宿)", "en": "Pestle (In Winnowing Basket Mansion)" }, "geometry": { "type": "LineString", "coordinates": [ [ -96.085, -46.5057 ], [ -97.0396, -49.8761 ], [ -98.675, -55.5299 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 55, "rank": 3, "name": "杵(危宿)", "en": "Pestle (In Rooftop Mansion)" }, "geometry": { "type": "LineString", "coordinates": [ [ -26.0076, 37.7487 ], [ -27.5031, 33.1782 ], [ -28.6055, 28.964 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 57, "rank": 3, "name": "传舍", "en": "Guest House" }, "geometry": { "type": "LineString", "coordinates": [ [ -3.0218, 67.8068 ], [ 8.6038, 66.7504 ], [ 15.1374, 65.1151 ], [ 17.9225, 65.0189 ], [ 33.6212, 66.5244 ], [ 43.9872, 61.5211 ], [ 52.2672, 59.9403 ], [ 52.4781, 58.8787 ], [ 52.5008, 55.4518 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 58, "rank": 3, "name": "从官(房宿)", "en": "Retinue (In Room Mansion)" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.2603, -33.6272 ], [ -124.3291, -34.7104 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 62, "rank": 3, "name": "大陵", "en": "Mausoleum" }, "geometry": { "type": "LineString", "coordinates": [ [ 35.5893, 55.8457 ], [ 43.5644, 52.7625 ], [ 47.2667, 49.6133 ], [ 47.374, 44.8575 ], [ 47.0422, 40.9556 ], [ 46.2941, 38.8403 ], [ 42.6461, 38.3186 ], [ 40.5621, 40.1939 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 64, "rank": 3, "name": "帝席", "en": "Mattress of the Emperor" }, "geometry": { "type": "LineString", "coordinates": [ [ -147.4003, 25.0917 ], [ -149.7063, 27.3866 ], [ -150.8576, 27.4921 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 66, "rank": 3, "name": "东咸", "en": "Eastern Door" }, "geometry": { "type": "LineString", "coordinates": [ [ -112.2151, -16.6127 ], [ -113.244, -18.4563 ], [ -113.9742, -20.0373 ], [ -111.9658, -21.4664 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 67, "rank": 3, "name": "斗", "en": "Dipper for Liquids" }, "geometry": { "type": "LineString", "coordinates": [ [ -113.646, 14.0333 ], [ -116.6731, 13.5269 ], [ -116.2447, 11.49 ], [ -111.8488, 11.488 ], [ -110.7848, 7.1072 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 68, "rank": 3, "name": "顿顽", "en": "Trials" }, "geometry": { "type": "LineString", "coordinates": [ [ -131.3445, -31.5191 ], [ -129.5485, -36.2614 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 69, "rank": 3, "name": "伐(附官)", "en": "Send Armed Forces To Suppress (Vassal of Three Stars)" }, "geometry": { "type": "LineString", "coordinates": [ [ 83.8583, -5.9099 ], [ 83.8454, -5.4161 ], [ 83.8465, -4.8384 ], [ 84.0534, -1.2019 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 70, "rank": 3, "name": "罚", "en": "Punishment" }, "geometry": { "type": "LineString", "coordinates": [ [ -116.0947, -8.3694 ], [ -118.0983, -12.7454 ], [ -119.9184, -16.5334 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 71, "rank": 3, "name": "飞鱼", "en": "Flying Fish" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 135.6116, -66.3961 ], [ 107.1869, -70.4989 ] ], [ [ 135.6116, -66.3961 ], [ 109.2076, -67.9572 ] ], [ [ 135.6116, -66.3961 ], [ 115.4553, -72.6061 ] ], [ [ 135.6116, -66.3961 ], [ 124.954, -71.5149 ] ], [ [ 135.6116, -66.3961 ], [ 126.4341, -66.1369 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 72, "rank": 3, "name": "坟墓(附官)", "en": "Tomb (Vassal of Rooftop)" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -22.792, -0.02 ], [ -28.554, -0.3199 ] ], [ [ -22.792, -0.02 ], [ -24.5859, -1.3873 ] ], [ [ -22.792, -0.02 ], [ -23.6807, 1.3774 ] ], [ [ -22.792, -0.02 ], [ -21.1609, -0.1175 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 73, "rank": 3, "name": "𫓧钺", "en": "Axe" }, "geometry": { "type": "LineString", "coordinates": [ [ -4.6063, -18.0271 ], [ -3.9497, -18.2769 ], [ -2.1611, -18.9092 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 74, "rank": 3, "name": "𫓧锧", "en": "Sickle" }, "geometry": { "type": "LineString", "coordinates": [ [ 22.4006, -21.6293 ], [ 24.7158, -21.2754 ], [ 30.0013, -21.0778 ], [ 29.1675, -22.5268 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 75, "rank": 3, "name": "扶筐", "en": "Basket for Mulberry Leaves" }, "geometry": { "type": "LineString", "coordinates": [ [ -79.3419, 55.5395 ], [ -81.8562, 57.0456 ], [ -84.0225, 58.8007 ], [ -77.1996, 59.3884 ], [ -75.8123, 57.8149 ], [ -74.8189, 55.6583 ], [ -73.7701, 53.3967 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 76, "rank": 3, "name": "附白", "en": "White Patched Nearby" }, "geometry": { "type": "LineString", "coordinates": [ [ 56.8098, -74.239 ], [ 42.6186, -75.0669 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 79, "rank": 3, "name": "盖屋", "en": "Roofing" }, "geometry": { "type": "LineString", "coordinates": [ [ -29.1715, -2.1554 ], [ -28.8024, -0.9063 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 80, "rank": 3, "name": "杠(附官)", "en": "Canopy Support (Vassal of Canopy of the Emperor)" }, "geometry": { "type": "LineString", "coordinates": [ [ 57.5896, 71.3323 ], [ 47.9845, 74.3937 ], [ 31.3815, 76.1151 ], [ 31.511, 74.5837 ], [ 30.8588, 72.4213 ], [ 32.2844, 71.552 ], [ 30.4894, 70.907 ], [ 25.7328, 70.6225 ], [ 22.8073, 70.2646 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 81, "rank": 3, "name": "阁道", "en": "Flying Corridor" }, "geometry": { "type": "LineString", "coordinates": [ [ 37.2664, 67.4025 ], [ 28.5989, 63.6701 ], [ 21.454, 60.2353 ], [ 17.7757, 55.1499 ], [ 12.2084, 50.9682 ], [ 11.1813, 48.2844 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 82, "rank": 3, "name": "梗河", "en": "Celestial Lance" }, "geometry": { "type": "LineString", "coordinates": [ [ -138.7533, 27.0742 ], [ -141.3299, 29.7451 ], [ -142.0425, 30.3714 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 83, "rank": 3, "name": "勾陈", "en": "Curved Array" }, "geometry": { "type": "LineString", "coordinates": [ [ -16.396, 84.3462 ], [ 17.187, 86.2571 ], [ 37.9545, 89.2641 ], [ -96.9458, 86.5865 ], [ -108.5073, 82.0373 ], [ -123.9853, 77.7945 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 84, "rank": 3, "name": "钩钤(附官)", "en": "Lock (Vassal of Room)" }, "geometry": { "type": "LineString", "coordinates": [ [ -118.6407, -19.8055 ], [ -118.2982, -20.6692 ], [ -118.1486, -20.8688 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 85, "rank": 3, "name": "狗", "en": "Dog" }, "geometry": { "type": "LineString", "coordinates": [ [ -65.8232, -24.8836 ], [ -68.6813, -24.5086 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 86, "rank": 3, "name": "狗国", "en": "Territory of Dog" }, "geometry": { "type": "LineString", "coordinates": [ [ -61.0402, -26.2995 ], [ -60.2617, -26.1958 ], [ -59.3355, -27.7098 ], [ -60.7632, -27.1699 ], [ -61.0402, -26.2995 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 87, "rank": 3, "name": "贯索", "en": "Coiled Thong" }, "geometry": { "type": "LineString", "coordinates": [ [ -124.0029, 32.5158 ], [ -126.7676, 31.3591 ], [ -128.0428, 29.1057 ], [ -126.328, 26.7147 ], [ -124.3143, 26.2956 ], [ -122.6015, 26.0684 ], [ -120.6031, 26.8779 ], [ -119.6393, 29.8511 ], [ -119.7389, 33.3035 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 88, "rank": 3, "name": "爟", "en": "Beacon Fire" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.6133, 25.5073 ], [ 125.1339, 24.0223 ], [ 126.6154, 27.8936 ], [ 123.2869, 29.6565 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 89, "rank": 3, "name": "龟", "en": "Tortoise" }, "geometry": { "type": "LineString", "coordinates": [ [ -105.104, -53.1604 ], [ -98.6514, -56.3777 ], [ -97.2254, -60.6838 ], [ -107.5535, -59.0414 ], [ -105.345, -55.9901 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 90, "rank": 3, "name": "海山", "en": "Sea and Mountain" }, "geometry": { "type": "LineString", "coordinates": [ [ 156.9697, -58.7394 ], [ 161.1876, -59.5652 ], [ 174.0932, -61.0524 ], [ 173.9454, -63.0198 ], [ 176.4017, -66.7288 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 91, "rank": 3, "name": "海石", "en": "Sea Rock" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.6285, -59.5095 ], [ 139.2725, -59.2752 ], [ 143.611, -59.2298 ], [ 146.3117, -62.5079 ], [ 146.7755, -65.072 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 93, "rank": 3, "name": "河鼓", "en": "Drum at the River" }, "geometry": { "type": "LineString", "coordinates": [ [ -61.1717, 6.4068 ], [ -62.3042, 8.8683 ], [ -63.4351, 10.6133 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 94, "rank": 3, "name": "鹤", "en": "Crane" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -27.9417, -46.961 ], [ -19.3331, -46.8846 ] ], [ [ -19.3331, -46.8846 ], [ -22.5607, -43.7492 ], [ -26.0962, -41.3467 ] ], [ [ -19.3331, -46.8846 ], [ -19.1251, -41.4143 ], [ -22.8366, -39.1318 ] ], [ [ -19.3331, -46.8846 ], [ -12.4103, -45.2467 ] ], [ [ -19.3331, -46.8846 ], [ -13.2803, -43.5204 ] ], [ [ -19.3331, -46.8846 ], [ -17.8613, -51.3169 ], [ -18.5922, -53.5001 ], [ -10.6426, -58.2357 ], [ -14.78, -52.7541 ], [ -19.3331, -46.8846 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 95, "rank": 3, "name": "衡", "en": "Railings" }, "geometry": { "type": "LineString", "coordinates": [ [ -152.6238, -41.6877 ], [ -152.5959, -42.4737 ], [ -150.4322, -42.1008 ], [ -148.4885, -41.1796 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 97, "rank": 3, "name": "弧矢", "en": "Bow and Arrow" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 107.0979, -26.3932 ], [ 111.0238, -29.3031 ] ], [ [ 116.3137, -37.9686 ], [ 119.4171, -30.3346 ], [ 117.0215, -25.9372 ], [ 114.7078, -26.8038 ], [ 111.0238, -29.3031 ] ], [ [ 111.0238, -29.3031 ], [ 104.6565, -28.9721 ], [ 102.4602, -32.5085 ], [ 109.2857, -37.0975 ], [ 116.3137, -37.9686 ] ], [ [ 111.0238, -29.3031 ], [ 116.3137, -37.9686 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 98, "rank": 3, "name": "斛", "en": "Dipper for Solids" }, "geometry": { "type": "LineString", "coordinates": [ [ -106.498, 10.1654 ], [ -105.5829, 9.375 ], [ -107.4192, 7.2477 ], [ -108.5421, 8.5826 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 100, "rank": 3, "name": "瓠瓜", "en": "Good Gourd" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -50.6127, 14.5951 ], [ -51.1728, 14.6742 ] ], [ [ -50.6127, 14.5951 ], [ -49.1353, 15.0746 ], [ -48.3354, 16.1243 ], [ -50.0905, 15.9121 ], [ -50.6127, 14.5951 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 101, "rank": 3, "name": "华盖", "en": "Canopy of the Emperor" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.8073, 70.2646 ], [ 17.6638, 68.7786 ] ], [ [ 22.8073, 70.2646 ], [ 19.0496, 71.7438 ] ], [ [ 22.8073, 70.2646 ], [ 21.4834, 68.13 ] ], [ [ 22.8073, 70.2646 ], [ 24.6288, 73.04 ] ], [ [ 22.8073, 70.2646 ], [ 25.5855, 68.043 ] ], [ [ 22.8073, 70.2646 ], [ 29.0001, 68.6852 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 102, "rank": 3, "name": "宦者", "en": "Eunuch Official" }, "geometry": { "type": "LineString", "coordinates": [ [ -104.2172, 14.0919 ], [ -104.0862, 13.6053 ], [ -103.6555, 12.7408 ], [ -101.8841, 10.5852 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 103, "rank": 3, "name": "火鸟", "en": "Firebird" }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7573, -37.8183 ], [ -6.231, -42.6151 ], [ -5.5375, -45.4924 ], [ 2.3527, -45.7474 ], [ 6.5508, -43.6798 ], [ 6.571, -42.306 ], [ 10.3315, -46.085 ], [ 7.8541, -48.8035 ], [ 16.521, -46.7184 ], [ 22.0914, -43.3182 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 108, "rank": 3, "name": "积卒", "en": "Group of Soldiers" }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3519, -36.8023 ], [ -119.9695, -38.3967 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 109, "rank": 3, "name": "夹白", "en": "White Patches Attached" }, "geometry": { "type": "LineString", "coordinates": [ [ 78.4394, -67.1853 ], [ 63.6062, -62.4739 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 110, "rank": 3, "name": "建", "en": "Establishment" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.5675, -21.1067 ], [ -73.8292, -21.7415 ], [ -72.559, -21.0236 ], [ -70.5913, -18.9529 ], [ -69.5818, -17.8472 ], [ -69.5682, -15.955 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 111, "rank": 3, "name": "渐台", "en": "Clepsydra Terrace" }, "geometry": { "type": "LineString", "coordinates": [ [ -76.3738, 36.8986 ], [ -77.48, 33.3627 ], [ -75.2641, 32.6896 ], [ -73.1745, 36.1002 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 113, "rank": 3, "name": "金鱼", "en": "Goldfish" }, "geometry": { "type": "LineString", "coordinates": [ [ 64.0066, -51.4866 ], [ 68.4991, -55.045 ], [ 83.4063, -62.4898 ], [ 86.1932, -65.7355 ], [ 92.1844, -68.8434 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 117, "rank": 3, "name": "九卿", "en": "Nine Senior Officers" }, "geometry": { "type": "LineString", "coordinates": [ [ -169.5289, 10.2356 ], [ -168.5956, 7.6733 ], [ -170.7183, 8.7969 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 118, "rank": 3, "name": "九斿", "en": "Imperial Military Flag" }, "geometry": { "type": "LineString", "coordinates": [ [ 69.307, 0.9983 ], [ 71.3756, -3.2547 ], [ 73.2236, -5.4527 ], [ 74.9602, -10.2633 ], [ 74.9822, -12.5374 ], [ 72.5484, -16.2172 ], [ 71.9012, -16.9345 ], [ 70.1105, -19.6715 ], [ 75.6874, -22.7951 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 119, "rank": 3, "name": "九州殊口", "en": "Interpreters of Nine Dialects" }, "geometry": { "type": "LineString", "coordinates": [ [ 63.5987, -10.2563 ], [ 62.9664, -6.8376 ], [ 65.9202, -3.7455 ], [ 69.0798, -3.3525 ], [ 71.0222, -8.5036 ], [ 70.8948, -8.7943 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 120, "rank": 3, "name": "酒旗", "en": "Banner of Wine Shop" }, "geometry": { "type": "LineString", "coordinates": [ [ 145.9329, 14.0217 ], [ 142.9864, 11.2998 ], [ 142.1142, 9.0568 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 121, "rank": 3, "name": "臼", "en": "Mortar" }, "geometry": { "type": "LineString", "coordinates": [ [ -24.6694, 28.3305 ], [ -28.2472, 25.3451 ], [ -33.8386, 25.645 ], [ -33.9643, 28.7426 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 122, "rank": 3, "name": "卷舌", "en": "Rolled Tongue" }, "geometry": { "type": "LineString", "coordinates": [ [ 56.2985, 42.5785 ], [ 59.4635, 40.0102 ], [ 59.7413, 35.791 ], [ 58.533, 31.8836 ], [ 56.0797, 32.2882 ], [ 55.5944, 33.965 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 123, "rank": 3, "name": "军井", "en": "Military Well" }, "geometry": { "type": "LineString", "coordinates": [ [ 78.0746, -11.8692 ], [ 78.3078, -12.9413 ], [ 79.8939, -13.1768 ], [ 79.9959, -12.3156 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 125, "rank": 3, "name": "军市", "en": "Market for Soldiers" }, "geometry": { "type": "LineString", "coordinates": [ [ 95.6749, -17.9559 ], [ 99.4726, -18.2375 ], [ 103.3871, -20.2243 ], [ 103.7614, -20.4049 ], [ 103.5331, -24.1842 ], [ 97.964, -23.4184 ], [ 95.6749, -17.9559 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 127, "rank": 3, "name": "亢池", "en": "Boats and Lake" }, "geometry": { "type": "LineString", "coordinates": [ [ -145.0615, 16.3069 ], [ -147.3193, 15.2908 ], [ -146.4784, 12.9594 ], [ -145.1822, 13.0043 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 128, "rank": 3, "name": "孔雀", "en": "Peafowl" }, "geometry": { "type": "LineString", "coordinates": [ [ -93.5667, -64.7239 ], [ -87.8549, -63.6686 ], [ -82.1566, -62.2783 ], [ -76.9457, -62.1876 ], [ -75.7624, -67.2335 ], [ -57.8183, -66.1821 ], [ -48.7604, -66.2032 ], [ -79.2411, -71.4281 ], [ -59.8519, -72.9105 ], [ -38.3891, -65.3662 ], [ -53.5881, -56.7351 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 129, "rank": 3, "name": "哭", "en": "Crying" }, "geometry": { "type": "LineString", "coordinates": [ [ -31.676, -13.5518 ], [ -27.3438, -11.5649 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 130, "rank": 3, "name": "库楼", "en": "Arsenal" }, "geometry": { "type": "LineString", "coordinates": [ [ -151.1151, -47.2884 ], [ -141.1232, -42.1578 ], [ -148.3294, -36.37 ], [ -152.6387, -34.4508 ], [ -157.2389, -39.4073 ], [ -163.4304, -48.4633 ], [ -169.6207, -48.9599 ], [ -170.5743, -48.5413 ], [ -173.9109, -47.3729 ], [ -172.9901, -50.2306 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 132, "rank": 3, "name": "郎位", "en": "Officers of the Imperial Guard" }, "geometry": { "type": "LineString", "coordinates": [ [ -173.2655, 28.2684 ], [ -173.3997, 27.2682 ], [ -173.2529, 26.8257 ], [ -172.7721, 25.9129 ], [ -173.9228, 26.0986 ], [ -174.3737, 25.8462 ], [ -172.2477, 24.5672 ], [ -172.6373, 24.1089 ], [ -175.9144, 23.9454 ], [ -171.2872, 22.6293 ], [ -170.2195, 21.0626 ], [ -172.5698, 20.8961 ], [ -176.9613, 20.5421 ], [ -178.9308, 21.4592 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 134, "rank": 3, "name": "雷电", "en": "Thunder and Lightning" }, "geometry": { "type": "LineString", "coordinates": [ [ -7.7113, 12.7606 ], [ -9.231, 12.3139 ], [ -13.2489, 9.4095 ], [ -16.8997, 9.8357 ], [ -18.3267, 12.1729 ], [ -19.6345, 10.8314 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 135, "rank": 3, "name": "垒壁阵", "en": "Line of Ramparts" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -0.3318, -3.556 ], [ -11.4193, -6.049 ], [ -16.8464, -7.5796 ], [ -22.3383, -10.678 ], [ -28.3907, -13.8697 ], [ -33.2398, -16.1273 ] ], [ [ -33.2398, -16.1273 ], [ -34.9773, -16.6623 ], [ -35.7299, -19.466 ], [ -34.3354, -18.8663 ], [ -33.2398, -16.1273 ] ], [ [ -0.3318, -3.556 ], [ 0.4901, -6.0141 ], [ 1.3339, -5.7076 ], [ 0.456, -3.0275 ], [ -0.3318, -3.556 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 136, "rank": 3, "name": "离宫(附官)", "en": "Resting Palace (Vassal of Encampment)" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -19.5608, 29.3076 ], [ -19.2494, 30.2212 ], [ -14.0564, 28.0828 ] ], [ [ -18.3672, 23.5657 ], [ -17.4992, 24.6016 ], [ -14.0564, 28.0828 ] ], [ [ -14.0564, 28.0828 ], [ -9.8407, 23.7403 ], [ -8.6551, 23.4041 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 137, "rank": 3, "name": "离瑜", "en": "Jade Ornament on Ladies' Wear" }, "geometry": { "type": "LineString", "coordinates": [ [ -40.5155, -32.1725 ], [ -37.7344, -31.2386 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 138, "rank": 3, "name": "离珠", "en": "Pearls on Ladies' Wear" }, "geometry": { "type": "LineString", "coordinates": [ [ -50.1463, 0.4864 ], [ -50.4155, -1.1051 ], [ -50.8182, -2.55 ], [ -52.5875, -2.8855 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 139, "rank": 3, "name": "砺石", "en": "Whetstone" }, "geometry": { "type": "LineString", "coordinates": [ [ 61.7519, 29.0013 ], [ 62.7078, 26.481 ], [ 65.6456, 25.6293 ], [ 65.0884, 27.3508 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 140, "rank": 3, "name": "列肆", "en": "Jewel Market" }, "geometry": { "type": "LineString", "coordinates": [ [ -114.4819, 1.029 ], [ -112.2716, 1.9839 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 141, "rank": 3, "name": "灵台", "en": "Astronomical Observatory" }, "geometry": { "type": "LineString", "coordinates": [ [ 166.2543, 7.336 ], [ 165.1867, 6.1014 ], [ 165.1402, 3.6175 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 142, "rank": 3, "name": "六甲", "en": "Six Jia" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.559, 79.5648 ], [ 105.0168, 76.9774 ], [ 121.1961, 79.4796 ], [ 112.7686, 82.4115 ], [ 75.0863, 81.1941 ], [ 80.6397, 79.2311 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 143, "rank": 3, "name": "罗堰", "en": "Network of Dykes" }, "geometry": { "type": "LineString", "coordinates": [ [ -50.182, -14.9548 ], [ -49.9877, -18.1387 ], [ -48.4584, -21.514 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 144, "rank": 3, "name": "马腹", "en": "Horse's Abdomen" }, "geometry": { "type": "LineString", "coordinates": [ [ -149.0441, -60.373 ], [ -159.7986, -55.8007 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 145, "rank": 3, "name": "马尾", "en": "Horse's Tail" }, "geometry": { "type": "LineString", "coordinates": [ [ -173.3677, -51.4506 ], [ -177.087, -52.3685 ], [ -177.9104, -50.7224 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 146, "rank": 3, "name": "蜜蜂", "en": "Bee" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -168.43, -68.1081 ], [ -171.8833, -72.133 ] ], [ [ -168.43, -68.1081 ], [ -170.7041, -69.1356 ] ], [ [ -168.43, -68.1081 ], [ -164.4322, -71.5489 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 147, "rank": 3, "name": "明堂", "en": "The Hall of Glory" }, "geometry": { "type": "LineString", "coordinates": [ [ 171.9843, 2.8563 ], [ 174.2372, -0.8237 ], [ 172.5787, -3.0035 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 148, "rank": 3, "name": "南船", "en": "Southern Boat" }, "geometry": { "type": "LineString", "coordinates": [ [ 154.2707, -61.3323 ], [ 158.0061, -61.6853 ], [ 160.7392, -64.3945 ], [ 153.4342, -70.0379 ], [ 138.2999, -69.7172 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 149, "rank": 3, "name": "南河", "en": "South River" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.4121, 9.2761 ], [ 111.7877, 8.2893 ], [ 114.8255, 5.225 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 151, "rank": 3, "name": "南门", "en": "Southern Gate" }, "geometry": { "type": "LineString", "coordinates": [ [ -155.0281, -53.4664 ], [ -140.0979, -60.834 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 152, "rank": 3, "name": "内厨", "en": "Inner Kitchen" }, "geometry": { "type": "LineString", "coordinates": [ [ -168.1069, 66.7903 ], [ -166.131, 65.4385 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 153, "rank": 3, "name": "内阶", "en": "Inner Steps" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 127.5661, 60.7182 ], [ 134.229820474912998, 61.255218127509863 ] ], [ [ 137.216171496086332, 62.49733901622502 ], [ 134.156, 64.6038 ] ], [ [ 134.229820474912998, 61.255218127509863 ], [ 138.5856, 61.4233 ], [ 137.216171496086332, 62.49733901622502 ] ], [ [ 137.216171496086332, 62.49733901622502 ], [ 133.344, 61.9623 ], [ 134.229820474912998, 61.255218127509863 ] ], [ [ 134.229820474912998, 61.255218127509863 ], [ 138.9574, 56.7414 ] ], [ [ 142.8821, 63.0619 ], [ 137.216171496086332, 62.49733901622502 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 154, "rank": 3, "name": "内平", "en": "High Judge" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.7764, 31.4681 ], [ 151.8573, 35.2447 ], [ 145.6781, 35.0934 ], [ 149.1306, 32.3847 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 155, "rank": 3, "name": "内屏", "en": "Inner Screen" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, 6.610130443804513 ], [ -179.7817, 6.6143 ], [ -178.6978, 8.733 ] ], [ [ 176.321, 8.2581 ], [ 176.4648, 6.5294 ], [ 179.9999, 6.61012851197825 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 156, "rank": 3, "name": "辇道", "en": "Imperial Passageway" }, "geometry": { "type": "LineString", "coordinates": [ [ -76.1662, 43.9461 ], [ -71.5605, 39.146 ], [ -70.9079, 38.1337 ], [ -68.462, 36.3179 ], [ -63.3933, 33.7276 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 157, "rank": 3, "name": "鸟喙", "en": "Bird's Beak" }, "geometry": { "type": "LineString", "coordinates": [ [ -25.3746, -60.2596 ], [ -23.1668, -64.9664 ], [ -0.6671, -62.9566 ], [ 7.8861, -62.9582 ], [ 10.6182, -65.468 ], [ 5.0178, -64.8748 ], [ -0.0209, -65.5771 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 159, "rank": 3, "name": "女床", "en": "Woman's Bed" }, "geometry": { "type": "LineString", "coordinates": [ [ -101.2382, 36.8092 ], [ -100.5823, 37.2915 ], [ -99.0794, 37.1459 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 161, "rank": 3, "name": "霹雳", "en": "Thunderbolt" }, "geometry": { "type": "LineString", "coordinates": [ [ -14.0308, 3.82 ], [ -10.7086, 3.2823 ], [ -8.0079, 6.379 ], [ -5.0123, 5.6263 ], [ -0.1721, 6.8633 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 162, "rank": 3, "name": "平", "en": "Judging" }, "geometry": { "type": "LineString", "coordinates": [ [ -160.2696, -23.1715 ], [ -148.4071, -26.6824 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 163, "rank": 3, "name": "平道", "en": "Flat Road" }, "geometry": { "type": "LineString", "coordinates": [ [ -162.5125, -5.539 ], [ -154.5968, -8.703 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 164, "rank": 3, "name": "屏", "en": "Screen" }, "geometry": { "type": "LineString", "coordinates": [ [ 78.2329, -16.2055 ], [ 76.3653, -22.371 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 165, "rank": 3, "name": "七公", "en": "Seven Excellencies" }, "geometry": { "type": "LineString", "coordinates": [ [ -110.3131, 48.9283 ], [ -115.0648, 46.3134 ], [ -117.8076, 44.9349 ], [ -121.8311, 42.4515 ], [ -127.2677, 40.833 ], [ -128.8774, 37.3772 ], [ -131.1243, 33.3148 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 167, "rank": 3, "name": "骑官", "en": "Imperial Guards" }, "geometry": { "type": "LineString", "coordinates": [ [ -126.2148, -41.1668 ], [ -129.657, -40.6475 ], [ -135.2096, -42.1042 ], [ -135.367, -43.134 ], [ -132.7891, -45.2799 ], [ -129.3297, -44.6896 ], [ -130.3666, -47.8753 ], [ -133.7205, -47.0512 ], [ -137.0904, -43.5754 ], [ -139.5177, -47.3882 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 169, "rank": 3, "name": "泣", "en": "Weeping" }, "geometry": { "type": "LineString", "coordinates": [ [ -24.9503, -7.8211 ], [ -25.7915, -7.7833 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 171, "rank": 3, "name": "青丘", "en": "Green Hill" }, "geometry": { "type": "LineString", "coordinates": [ [ 178.2272, -33.9081 ], [ 178.9172, -28.4771 ], [ 173.0683, -29.261 ], [ 173.2255, -31.0872 ], [ 173.2505, -31.8576 ], [ 173.6229, -32.8313 ], [ 175.0533, -34.7447 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 172, "rank": 3, "name": "阙丘", "en": "Palace Gate" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.8484, -0.3019 ], [ 101.9652, 2.4122 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 173, "rank": 3, "name": "人", "en": "Humans" }, "geometry": { "type": "LineString", "coordinates": [ [ -37.5129, 23.6388 ], [ -39.4783, 19.8045 ], [ -33.8721, 17.35 ], [ -33.4818, 22.9489 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 175, "rank": 3, "name": "三公(太微垣)", "en": "Three Excellencies (In Supreme Palace Enclosure)" }, "geometry": { "type": "LineString", "coordinates": [ [ -169.512, 6.8066 ], [ -168.0358, 3.5727 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 176, "rank": 3, "name": "三公(紫微垣)", "en": "Three Excellencies (In Purple Forbidden Enclosure)" }, "geometry": { "type": "LineString", "coordinates": [ [ -156.3864, 49.016 ], [ -160.4395, 49.6821 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 177, "rank": 3, "name": "三角形", "en": "Triangle" }, "geometry": { "type": "LineString", "coordinates": [ [ -130.2726, -68.6795 ], [ -121.2143, -63.4307 ], [ -107.8338, -69.0277 ], [ -130.2726, -68.6795 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 178, "rank": 3, "name": "三师", "en": "Three Top Instructors" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.6362, 67.6296 ], [ 137.0979, 66.8732 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 179, "rank": 3, "name": "三台", "en": "Three Steps" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.8019, 48.0418 ], [ 135.9064, 47.1565 ], [ 154.2741, 42.9144 ], [ 155.5823, 41.4995 ], [ 169.6197, 33.0943 ], [ 169.5468, 31.5308 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 180, "rank": 3, "name": "尚书", "en": "Royal Secretary" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -97.0089, 68.135 ], [ -114.547, 69.1094 ] ], [ [ -97.0089, 68.135 ], [ -113.0041, 68.7681 ] ], [ [ -97.0089, 68.135 ], [ -109.7703, 64.589 ] ], [ [ -97.0089, 68.135 ], [ -105.993, 65.1348 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 181, "rank": 3, "name": "少微", "en": "Junior Officers" }, "geometry": { "type": "LineString", "coordinates": [ [ 166.7703, 25.5371 ], [ 163.9033, 24.7497 ], [ 160.854, 23.1884 ], [ 161.6023, 18.8915 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 182, "rank": 3, "name": "蛇腹", "en": "Snake's Abdomen" }, "geometry": { "type": "LineString", "coordinates": [ [ 41.386, -67.6166 ], [ 39.8973, -68.2669 ], [ 35.4373, -68.6594 ], [ 28.7339, -67.6473 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 183, "rank": 3, "name": "蛇首", "en": "Snake's Head" }, "geometry": { "type": "LineString", "coordinates": [ [ 29.6925, -61.5699 ], [ 56.0499, -64.8069 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 184, "rank": 3, "name": "蛇尾", "en": "Snake's Tail" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.4378, -77.2542 ], [ -25.5392, -77.5116 ], [ -34.6306, -77.39 ], [ -43.8206, -77.0238 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 186, "rank": 3, "name": "十二国", "en": "Twelve States" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -43.8987, -19.855 ], [ -44.7843, -17.5309 ] ], [ [ -43.5132, -17.2329 ], [ -40.5113, -17.9851 ] ], [ [ -42.6857, -20.1932 ], [ -42.6125, -20.5567 ] ], [ [ -39.4383, -16.8345 ], [ -36.2709, -20.2527 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 187, "rank": 3, "name": "十字架", "en": "Cross" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -172.567642820340637, -59.239172519159368 ], [ -176.2137, -58.7489 ] ], [ [ -172.567642820340637, -59.239172519159368 ], [ -173.3504, -63.0991 ] ], [ [ -172.2085, -57.1132 ], [ -172.567642820340637, -59.239172519159368 ] ], [ [ -168.0697, -59.6888 ], [ -172.567642820340637, -59.239172519159368 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 189, "rank": 3, "name": "市楼", "en": "Municipal Office" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -97.863428988367488, -12.032601359567039 ], [ -99.7931, -12.8469 ] ], [ [ -98.241, -12.5125 ], [ -97.863428988367488, -12.032601359567039 ] ], [ [ -95.037781737351182, -10.807491044352894 ], [ -97.863428988367488, -12.032601359567039 ] ], [ [ -97.863428988367488, -12.032601359567039 ], [ -95.402560730274317, -8.853681447847094 ] ], [ [ -95.5387, -8.1188 ], [ -95.402560730274317, -8.853681447847094 ] ], [ [ -95.402560730274317, -8.853681447847094 ], [ -94.0541, -7.0796 ] ], [ [ -95.402560730274317, -8.853681447847094 ], [ -95.037781737351182, -10.807491044352894 ] ], [ [ -89.2295, -8.1803 ], [ -95.037781737351182, -10.807491044352894 ] ], [ [ -95.037781737351182, -10.807491044352894 ], [ -94.6464, -12.8753 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 190, "rank": 3, "name": "势", "en": "Eunuch" }, "geometry": { "type": "LineString", "coordinates": [ [ 158.3788, 34.9887 ], [ 157.9641, 32.3796 ], [ 161.4662, 30.6823 ], [ 163.3279, 34.2149 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 191, "rank": 3, "name": "水府", "en": "Official for Irrigation" }, "geometry": { "type": "LineString", "coordinates": [ [ 91.893, 14.7685 ], [ 92.985, 14.2088 ], [ 93.8547, 16.1432 ], [ 93.0137, 16.1304 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 192, "rank": 3, "name": "水委", "en": "Crooked Running Water" }, "geometry": { "type": "LineString", "coordinates": [ [ 24.4285, -57.2368 ], [ 17.0962, -55.2458 ], [ 10.8385, -57.4631 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 193, "rank": 3, "name": "水位", "en": "Water Level" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.4491, 12.0066 ], [ 116.5675, 10.7683 ], [ 121.2687, 13.1182 ], [ 123.053, 17.6478 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 194, "rank": 3, "name": "司非", "en": "Deified Judge of Right and Wrong" }, "geometry": { "type": "LineString", "coordinates": [ [ -42.4146, 10.1316 ], [ -41.3799, 10.007 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 195, "rank": 3, "name": "司怪", "en": "Deity in Charge of Monsters" }, "geometry": { "type": "LineString", "coordinates": [ [ 89.4986, 25.9539 ], [ 91.0301, 23.2633 ], [ 90.9799, 20.1385 ], [ 88.5958, 20.2762 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 196, "rank": 3, "name": "司禄", "en": "Deified Judge of Rank" }, "geometry": { "type": "LineString", "coordinates": [ [ -33.1918, 2.6861 ], [ -35.1114, 2.2436 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 197, "rank": 3, "name": "司命", "en": "Deified Judge of Life" }, "geometry": { "type": "LineString", "coordinates": [ [ -35.1186, -0.0511 ], [ -34.4579, 1.2853 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 198, "rank": 3, "name": "司危", "en": "Deified Judge of Disaster and Good Fortune" }, "geometry": { "type": "LineString", "coordinates": [ [ -39.2766, 6.8111 ], [ -39.7299, 7.3545 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 199, "rank": 3, "name": "四渎", "en": "Four Channels" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.9086, 10.9518 ], [ 101.8326, 8.0373 ], [ 98.2259, 7.333 ], [ 95.942, 4.5929 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 200, "rank": 3, "name": "四辅", "en": "Four Advisors" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -178.8829, 85.5871 ], [ -180.0, 85.514322042127773 ] ], [ [ 179.9999, 85.51431534355369 ], [ 157.7694, 82.5586 ], [ 157.4228, 84.252 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 201, "rank": 3, "name": "孙", "en": "Grandson" }, "geometry": { "type": "LineString", "coordinates": [ [ 94.1381, -35.1405 ], [ 91.8818, -37.2529 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 206, "rank": 3, "name": "螣蛇", "en": "Flying Serpent" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -22.1771, 50.2825 ], [ -23.8709, 49.4764 ], [ -33.3016, 49.3096 ], [ -34.4764, 51.1896 ], [ -40.7414, 53.9977 ], [ -35.2599, 57.489 ], [ -31.2785, 56.6112 ], [ -26.2409, 57.0436 ], [ -24.1099, 52.229 ], [ -17.107232374540072, 53.832043498978933 ] ], [ [ -17.107232374540072, 53.832043498978933 ], [ -0.2478, 55.7549 ], [ -1.404, 57.4994 ], [ -3.2356, 58.652 ], [ -7.4919, 58.5489 ], [ -17.107232374540072, 53.832043498978933 ] ], [ [ -17.107232374540072, 53.832043498978933 ], [ -20.6566, 51.5451 ], [ -13.9542, 50.0521 ], [ -11.8625, 49.4062 ], [ -10.564, 49.0153 ], [ -5.609, 46.4582 ], [ -3.4915, 46.4203 ], [ -4.8979, 44.3339 ], [ -5.4658, 43.2681 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 208, "rank": 3, "name": "天棓", "en": "Celestial Flail" }, "geometry": { "type": "LineString", "coordinates": [ [ -91.6178, 56.8726 ], [ -96.9332, 55.173 ], [ -97.3918, 52.3014 ], [ -90.8485, 51.4889 ], [ -95.1338, 46.0063 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 209, "rank": 3, "name": "天弁", "en": "Market Officer" }, "geometry": { "type": "LineString", "coordinates": [ [ -81.1982, -8.2441 ], [ -79.4316, -9.0525 ], [ -79.1198, -8.2752 ], [ -78.2064, -4.7479 ], [ -75.7347, -5.8463 ], [ -74.5799, -5.7391 ], [ -73.4378, -4.8826 ], [ -73.7597, -4.0314 ], [ -74.2729, -3.699 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 210, "rank": 3, "name": "天仓", "en": "Square Celestial Granary" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.857, -8.8239 ], [ 17.1475, -10.1823 ], [ 21.0059, -8.1833 ], [ 27.8651, -10.335 ], [ 26.017, -15.9375 ], [ 29.9425, -20.8245 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 212, "rank": 3, "name": "天厨", "en": "Celestial Kitchen" }, "geometry": { "type": "LineString", "coordinates": [ [ -71.8612, 67.6615 ], [ -66.91, 69.6612 ], [ -62.9569, 70.2679 ], [ -59.2955, 67.8736 ], [ -59.6311, 64.821 ], [ -69.833, 65.7145 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 213, "rank": 3, "name": "天船", "en": "Celestial Boat" }, "geometry": { "type": "LineString", "coordinates": [ [ 42.6742, 55.8955 ], [ 46.1991, 53.5064 ], [ 51.0807, 49.8612 ], [ 54.1224, 48.1926 ], [ 55.7313, 47.7876 ], [ 62.1654, 47.7125 ], [ 63.7244, 48.4093 ], [ 64.8052, 50.0487 ], [ 64.1795, 53.6118 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 214, "rank": 3, "name": "天床", "en": "Celestial Bed" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -146.9833, 69.4325 ], [ -136.544071618491017, 68.249955770831562 ] ], [ [ -136.544071618491017, 68.249955770831562 ], [ -138.537, 71.9662 ] ], [ [ -129.758414817518968, 66.567264254439181 ], [ -135.6041, 65.9325 ], [ -136.544071618491017, 68.249955770831562 ] ], [ [ -136.544071618491017, 68.249955770831562 ], [ -131.3403, 67.3467 ], [ -129.758414817518968, 66.567264254439181 ] ], [ [ -116.8943, 67.1442 ], [ -129.758414817518968, 66.567264254439181 ] ], [ [ -129.758414817518968, 66.567264254439181 ], [ -123.3333, 62.5996 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 215, "rank": 3, "name": "天大将军", "en": "Great General of Heaven" }, "geometry": { "type": "LineString", "coordinates": [ [ 30.9748, 42.3297 ], [ 25.9152, 50.6887 ], [ 24.4982, 48.6282 ], [ 22.5254, 47.0073 ], [ 24.8375, 44.3862 ], [ 24.1993, 41.4055 ], [ 25.1451, 40.577 ], [ 29.039, 37.2518 ], [ 32.3859, 34.9873 ], [ 34.3286, 33.8472 ], [ 34.2635, 34.2242 ], [ 30.9748, 42.3297 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 216, "rank": 3, "name": "天桴", "en": "Celestial Drumstick" }, "geometry": { "type": "LineString", "coordinates": [ [ -57.1738, -0.8215 ], [ -58.9035, -0.7093 ], [ -61.3133, 0.2736 ], [ -61.8818, 1.0057 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 217, "rank": 3, "name": "天辐", "en": "Celestial Spokes" }, "geometry": { "type": "LineString", "coordinates": [ [ -125.744, -28.1351 ], [ -125.336, -29.7778 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 219, "rank": 3, "name": "天高", "en": "Celestial High Terrace" }, "geometry": { "type": "LineString", "coordinates": [ [ 75.7739, 21.59 ], [ 72.8436, 18.8399 ], [ 77.2101, 19.8599 ], [ 79.8192, 22.0965 ], [ 75.7739, 21.59 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 220, "rank": 3, "name": "天钩", "en": "Celestial Hook" }, "geometry": { "type": "LineString", "coordinates": [ [ -49.2041, 66.6574 ], [ -56.4559, 64.7653 ], [ -52.6046, 62.9941 ], [ -48.6776, 61.8388 ], [ -40.3551, 62.5856 ], [ -29.0523, 64.628 ], [ -23.2279, 65.1323 ], [ -17.5799, 66.2004 ], [ -10.3438, 68.1114 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 221, "rank": 3, "name": "天狗", "en": "Celestial Dog" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.411, -42.9891 ], [ 131.0998, -42.6493 ], [ 133.2001, -38.7241 ], [ 130.0256, -35.3084 ], [ 130.8981, -33.1864 ], [ 132.633, -27.7098 ], [ 133.8815, -27.6819 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 224, "rank": 3, "name": "天潢", "en": "Celestial Pier" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 80.0038, 33.9581 ], [ 78.3572, 38.4845 ] ], [ [ 80.0038, 33.9581 ], [ 78.8516, 32.6876 ] ], [ [ 80.0038, 33.9581 ], [ 81.912, 34.4759 ] ], [ [ 80.0038, 33.9581 ], [ 81.1631, 37.3853 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 225, "rank": 3, "name": "天溷", "en": "Celestial Pigsty" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.5733, -8.7407 ], [ 14.0062, -11.2665 ], [ 11.3695, -12.8808 ], [ 11.0475, -10.6096 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 226, "rank": 3, "name": "天鸡", "en": "Celestial Cock" }, "geometry": { "type": "LineString", "coordinates": [ [ -64.3703, -16.124 ], [ -63.4094, -19.7611 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 228, "rank": 3, "name": "天纪", "en": "Celestial Discipline" }, "geometry": { "type": "LineString", "coordinates": [ [ -114.4757, 30.892 ], [ -109.6785, 31.6027 ], [ -104.9276, 30.9264 ], [ -104.5985, 33.5683 ], [ -104.1241, 35.414 ], [ -100.6685, 33.1001 ], [ -95.8469, 30.7852 ], [ -90.9367, 37.2505 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 229, "rank": 3, "name": "天江", "en": "Celestial River" }, "geometry": { "type": "LineString", "coordinates": [ [ -101.4406, -26.9844 ], [ -101.1626, -26.6028 ], [ -99.4976, -24.9995 ], [ -98.4074, -24.1753 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 230, "rank": 3, "name": "天街", "en": "Celestial Street" }, "geometry": { "type": "LineString", "coordinates": [ [ 66.3542, 22.2 ], [ 64.3153, 20.5786 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 231, "rank": 3, "name": "天节", "en": "Celestial Tally" }, "geometry": { "type": "LineString", "coordinates": [ [ 65.9659, 9.461 ], [ 68.9136, 10.1608 ], [ 70.0142, 12.1976 ], [ 69.5394, 12.5108 ], [ 67.209, 13.0476 ], [ 64.9904, 14.0352 ], [ 66.6516, 14.7138 ], [ 68.4622, 14.8444 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 232, "rank": 3, "name": "天津", "en": "Celestial Ford" }, "geometry": { "type": "LineString", "coordinates": [ [ -41.7659, 30.2269 ], [ -40.5205, 34.8969 ], [ -41.3021, 38.0453 ], [ -45.7066, 41.1671 ], [ -49.642, 45.2803 ], [ -56.6748, 46.8157 ], [ -63.7563, 45.1308 ], [ -54.4429, 40.2567 ], [ -48.4472, 33.9703 ], [ -41.7659, 30.2269 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 233, "rank": 3, "name": "天厩", "en": "Celestial Stable" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.2729, 38.6816 ], [ 5.2803, 37.9686 ], [ 4.5819, 36.7852 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 235, "rank": 3, "name": "天牢", "en": "Celestial Prison" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 163.4948, 43.19 ], [ 167.653880560418429, 41.502899935414618 ] ], [ [ 164.8666, 40.4303 ], [ 167.653880560418429, 41.502899935414618 ] ], [ [ 165.2101, 39.2121 ], [ 167.892203017952539, 41.398816156504992 ] ], [ [ 167.653880560418429, 41.502899935414618 ], [ 168.357372717437784, 41.757690280445424 ] ], [ [ 167.653880560418429, 41.502899935414618 ], [ 167.892203017952539, 41.398816156504992 ] ], [ [ 167.892203017952539, 41.398816156504992 ], [ 168.357372717437784, 41.757690280445424 ] ], [ [ 167.892203017952539, 41.398816156504992 ], [ 172.2672, 39.337 ] ], [ [ 168.357372717437784, 41.757690280445424 ], [ 172.6297, 43.1732 ] ], [ [ 168.357372717437784, 41.757690280445424 ], [ 170.7066, 43.4827 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 236, "rank": 3, "name": "天垒城", "en": "Celestial Ramparts" }, "geometry": { "type": "LineString", "coordinates": [ [ -35.562, -7.8542 ], [ -33.7489, -9.0824 ], [ -33.4322, -9.2759 ], [ -33.3663, -11.366 ], [ -33.3246, -11.6978 ], [ -38.9521, -12.8781 ], [ -41.0632, -15.1715 ], [ -44.7153, -13.53 ], [ -45.0216, -13.0516 ], [ -42.6015, -11.3717 ], [ -40.9259, -9.2147 ], [ -39.2656, -9.3193 ], [ -38.6957, -9.7486 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 237, "rank": 3, "name": "天理", "en": "Judge for Nobility" }, "geometry": { "type": "LineString", "coordinates": [ [ 169.0791, 59.9432 ], [ 171.488, 55.8505 ], [ 178.9934, 56.5986 ], [ 179.2218, 61.5492 ], [ 169.0791, 59.9432 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 238, "rank": 3, "name": "天廪", "en": "Celestial Foodstuff" }, "geometry": { "type": "LineString", "coordinates": [ [ 52.7182, 12.9367 ], [ 52.602, 11.3364 ], [ 51.7923, 9.7327 ], [ 51.2033, 9.0289 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 239, "rank": 3, "name": "天门", "en": "Celestial Gate" }, "geometry": { "type": "LineString", "coordinates": [ [ -161.9852, -16.1986 ], [ -158.1368, -15.9736 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 240, "rank": 3, "name": "天钱", "en": "Celestial Money" }, "geometry": { "type": "LineString", "coordinates": [ [ -28.9007, -29.9165 ], [ -33.066, -30.8983 ], [ -33.7633, -33.0258 ], [ -27.9041, -32.9885 ], [ -27.4634, -32.5484 ], [ -28.9007, -29.9165 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 241, "rank": 3, "name": "天枪", "en": "Celestial Spear" }, "geometry": { "type": "LineString", "coordinates": [ [ -146.6341, 51.7879 ], [ -145.9586, 51.3672 ], [ -143.7008, 51.8507 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 242, "rank": 3, "name": "天囷", "en": "Circular Celestial Granary" }, "geometry": { "type": "LineString", "coordinates": [ [ 45.5699, 4.0897 ], [ 50.2783, 3.6756 ], [ 44.9288, 8.9074 ], [ 41.2356, 10.1141 ], [ 33.25, 8.8467 ], [ 37.0398, 8.4601 ], [ 38.9686, 5.5932 ], [ 40.8252, 3.2358 ], [ 39.8707, 0.3285 ], [ 38.0393, -1.0349 ], [ 35.5517, -0.8849 ], [ 32.8993, -1.8254 ], [ 33.1981, -2.3936 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 244, "rank": 3, "name": "天社", "en": "Celestial Earth God's Temple" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.3831, -47.3366 ], [ 130.1565, -46.6487 ], [ 131.1759, -54.7088 ], [ 140.5284, -55.0107 ], [ 142.8055, -57.0344 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 245, "rank": 3, "name": "天田(角宿)", "en": "Celestial Farmland (In Horn Mansion)" }, "geometry": { "type": "LineString", "coordinates": [ [ -149.5884, 1.5445 ], [ -156.467, 3.659 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 246, "rank": 3, "name": "天田(牛宿)", "en": "Celestial Farmland (In Ox Mansion)" }, "geometry": { "type": "LineString", "coordinates": [ [ -48.4761, -25.2709 ], [ -43.2181, -25.0059 ], [ -41.6778, -27.6193 ], [ -47.0446, -26.9191 ], [ -48.4761, -25.2709 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 247, "rank": 3, "name": "天相", "en": "Celestial Premier" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.5314, -8.4082 ], [ 154.4075, -8.0689 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 249, "rank": 3, "name": "天阴", "en": "Celestial Yin Force" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 48.7254, 21.0444 ], [ 47.9074, 19.7267 ] ], [ [ 48.7254, 21.0444 ], [ 52.1107, 22.804 ] ], [ [ 50.6885, 20.7421 ], [ 48.7254, 21.0444 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 250, "rank": 3, "name": "天庾", "en": "Ricks of Grain" }, "geometry": { "type": "LineString", "coordinates": [ [ 31.1227, -29.2968 ], [ 38.4613, -28.2323 ], [ 42.2726, -32.4059 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 251, "rank": 3, "name": "天渊", "en": "Celestial Spring" }, "geometry": { "type": "LineString", "coordinates": [ [ -69.1953, -44.7998 ], [ -69.3404, -44.459 ], [ -69.0284, -40.6159 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 252, "rank": 3, "name": "天园", "en": "Celestial Orchard" }, "geometry": { "type": "LineString", "coordinates": [ [ 28.9895, -51.6089 ], [ 34.1274, -51.5122 ], [ 36.7463, -47.7038 ], [ 39.95, -42.8917 ], [ 44.5653, -40.3047 ], [ 55.7086, -37.3135 ], [ 57.1495, -37.6202 ], [ 57.3635, -36.2003 ], [ 64.4736, -33.7983 ], [ 66.0092, -34.0168 ], [ 68.8877, -30.5623 ], [ 68.3773, -29.7665 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 253, "rank": 3, "name": "天苑", "en": "Celestial Meadows" }, "geometry": { "type": "LineString", "coordinates": [ [ 59.5074, -13.5085 ], [ 56.5356, -12.1016 ], [ 55.8121, -9.7634 ], [ 53.2327, -9.4583 ], [ 48.9584, -8.8197 ], [ 44.1069, -8.8981 ], [ 41.0306, -13.8587 ], [ 41.2758, -18.5726 ], [ 42.7597, -21.004 ], [ 45.5979, -23.6245 ], [ 49.8792, -21.7579 ], [ 53.447, -21.6329 ], [ 56.712, -23.2497 ], [ 56.9152, -23.8747 ], [ 58.4279, -24.6122 ], [ 59.9812, -24.0162 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 254, "rank": 3, "name": "天籥", "en": "Celestial Keyhole" }, "geometry": { "type": "LineString", "coordinates": [ [ -91.2748, -24.8871 ], [ -93.06, -22.4778 ], [ -94.1425, -21.6832 ], [ -95.3131, -21.9127 ], [ -96.1729, -22.0438 ], [ -97.146, -23.9626 ], [ -97.0651, -26.2697 ], [ -93.1099, -27.8308 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 255, "rank": 3, "name": "天柱", "en": "Celestial Pillar" }, "geometry": { "type": "LineString", "coordinates": [ [ -49.3532, 82.5312 ], [ -43.6281, 78.1264 ], [ -60.0974, 76.4814 ], [ -72.7088, 76.5605 ], [ -89.9852, 80.0008 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 256, "rank": 3, "name": "天樽", "en": "Celestial Wine Cup" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.8688, 25.0505 ], [ 110.0307, 21.9823 ], [ 105.6033, 24.2154 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 257, "rank": 3, "name": "屠肆", "en": "Butcher's Shops" }, "geometry": { "type": "LineString", "coordinates": [ [ -84.0755, 21.7698 ], [ -88.4921, 22.2189 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 258, "rank": 3, "name": "土公", "en": "Official for Earthworks and Buildings" }, "geometry": { "type": "LineString", "coordinates": [ [ 0.6238, 8.4855 ], [ 6.4246, 7.6911 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 259, "rank": 3, "name": "土公吏", "en": "Official for Materials Supply" }, "geometry": { "type": "LineString", "coordinates": [ [ -24.6205, 12.2052 ], [ -22.7167, 9.129 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 261, "rank": 3, "name": "外厨", "en": "Outer Kitchen" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.6134, -3.9875 ], [ 130.9182, -7.2337 ], [ 132.3405, -3.443 ], [ 131.8124, -1.897 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 262, "rank": 3, "name": "外屏", "en": "Outer Fence" }, "geometry": { "type": "LineString", "coordinates": [ [ 30.5118, 2.7638 ], [ 28.389, 3.1875 ], [ 25.3579, 5.4876 ], [ 22.5463, 6.1438 ], [ 18.4329, 7.5754 ], [ 15.7359, 7.8901 ], [ 12.1706, 7.5851 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 263, "rank": 3, "name": "王良", "en": "Wang Liang" }, "geometry": { "type": "LineString", "coordinates": [ [ 2.2945, 59.1498 ], [ 8.25, 62.9318 ], [ 12.2762, 57.8152 ], [ 10.1268, 56.5373 ], [ 7.9432, 54.5223 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 265, "rank": 3, "name": "文昌", "en": "Administrative Center" }, "geometry": { "type": "LineString", "coordinates": [ [ 147.7473, 59.0387 ], [ 148.0265, 54.0643 ], [ 143.2143, 51.6773 ], [ 137.2177, 51.6046 ], [ 139.0472, 54.0219 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 266, "rank": 3, "name": "五车", "en": "Five Chariots" }, "geometry": { "type": "LineString", "coordinates": [ [ 74.2484, 33.1661 ], [ 79.1723, 45.998 ], [ 89.8822, 44.9474 ], [ 89.9303, 37.2126 ], [ 81.573, 28.6075 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 267, "rank": 3, "name": "五帝内座", "en": "Interior Seats of the Five Emperors" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 46.5327, 79.4185 ], [ 31.2809, 77.2813 ] ], [ [ 46.5327, 79.4185 ], [ 41.9488, 81.4485 ] ], [ [ 46.5327, 79.4185 ], [ 62.5114, 80.6987 ] ], [ [ 46.5327, 79.4185 ], [ 50.0823, 77.7347 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 268, "rank": 3, "name": "五帝座", "en": "Seats of the Five Emperors" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 177.2649, 14.5721 ], [ 176.2976, 14.2633 ] ], [ [ 177.2649, 14.5721 ], [ 178.9189, 15.6468 ] ], [ [ 177.2649, 14.5721 ], [ 177.3116, 16.2429 ] ], [ [ 177.2649, 14.5721 ], [ 177.7306, 12.279 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 269, "rank": 3, "name": "五诸侯(井宿)", "en": "Five Feudal Kings" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.1972, 33.9613 ], [ 107.7849, 30.2452 ], [ 111.4317, 27.7981 ], [ 113.9806, 26.8957 ], [ 118.3742, 26.7658 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 270, "rank": 3, "name": "五诸侯(太微垣)", "en": "Five Lords" }, "geometry": { "type": "LineString", "coordinates": [ [ -163.4115, 21.1534 ], [ -165.269, 17.4094 ], [ -168.3385, 16.5777 ], [ -175.9992, 14.8991 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 271, "rank": 3, "name": "西咸", "en": "Western Door" }, "geometry": { "type": "LineString", "coordinates": [ [ -118.9099, -11.3736 ], [ -120.4526, -14.2794 ], [ -121.5436, -16.7293 ], [ -123.9817, -15.6728 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 272, "rank": 3, "name": "奚仲", "en": "Xi Zhong" }, "geometry": { "type": "LineString", "coordinates": [ [ -70.7243, 53.3685 ], [ -67.5735, 51.7298 ], [ -65.8894, 50.2211 ], [ -64.546, 50.5251 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 273, "rank": 3, "name": "咸池", "en": "Pool of Harmony" }, "geometry": { "type": "LineString", "coordinates": [ [ 80.4517, 41.8046 ], [ 82.6879, 39.8259 ], [ 79.7853, 40.0991 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 275, "rank": 3, "name": "小斗", "en": "Little Dipper" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -175.4132, -79.3122 ], [ -180.0, -78.246472277376498 ] ], [ [ 179.9999, -78.246445932385356 ], [ 179.9066, -78.2218 ], [ 158.8671, -78.6078 ], [ 161.4458, -80.5402 ], [ 143.4724, -80.9413 ], [ 141.0384, -80.7869 ], [ 131.4798, -79.5044 ], [ 125.1606, -77.4845 ], [ 114.0175, -77.6341 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 277, "rank": 3, "name": "虚梁", "en": "Temple" }, "geometry": { "type": "LineString", "coordinates": [ [ -25.7229, -5.3872 ], [ -23.9713, -4.837 ], [ -20.5609, -4.2281 ], [ -15.6784, -4.8101 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 278, "rank": 3, "name": "轩辕", "en": "Xuanyuan" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 135.1599, 41.7829 ], [ 136.6324, 38.4522 ], [ 139.711, 36.8026 ], [ 140.2638, 34.3926 ], [ 145.6443, 32.9949 ], [ 145.8886, 29.9745 ], [ 141.1636, 26.1823 ], [ 142.9301, 22.968 ], [ 146.4628, 23.7743 ], [ 148.1909, 26.007 ], [ 154.1726, 23.4173 ], [ 154.9931, 19.8415 ], [ 151.8331, 16.7627 ], [ 152.093, 11.9672 ] ], [ [ 152.093, 11.9672 ], [ 145.2876, 9.8923 ] ], [ [ 152.093, 11.9672 ], [ 151.9761, 9.9975 ] ], [ [ 152.093, 11.9672 ], [ 158.2028, 9.3066 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 281, "rank": 3, "name": "阳门", "en": "Gate of Yang" }, "geometry": { "type": "LineString", "coordinates": [ [ -139.51, -37.7935 ], [ -139.0857, -35.1737 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 284, "rank": 3, "name": "异雀", "en": "Exotic Bird" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -109.2306, -77.5174 ], [ -114.9133, -78.6957 ], [ -145.4421, -81.0078 ] ], [ [ -109.2306, -77.5174 ], [ -138.0345, -79.0448 ], [ -144.4035, -80.1089 ] ], [ [ -109.2306, -77.5174 ], [ -111.6372, -78.8971 ], [ -143.2699, -83.6679 ] ], [ [ -99.5022, -67.7707 ], [ -99.4755, -70.1232 ], [ -109.2306, -77.5174 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 285, "rank": 3, "name": "阴德", "en": "Hidden Virtue" }, "geometry": { "type": "LineString", "coordinates": [ [ 158.556, 73.8345 ], [ 158.7728, 75.7129 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 286, "rank": 3, "name": "右更", "en": "Official in Charge of Pasturing" }, "geometry": { "type": "LineString", "coordinates": [ [ 21.5636, 19.1723 ], [ 22.8709, 15.3458 ], [ 24.2747, 12.1415 ], [ 26.3485, 9.1577 ], [ 24.8143, 14.2856 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 287, "rank": 3, "name": "右旗", "en": "Right Flag" }, "geometry": { "type": "LineString", "coordinates": [ [ -66.4777, 7.3789 ], [ -65.2015, 5.3978 ], [ -68.6254, 3.1148 ], [ -68.3705, 0.3386 ], [ -65.8197, -1.2866 ], [ -66.0386, -2.4557 ], [ -65.5528, -4.6476 ], [ -65.7773, -7.0275 ], [ -61.4655, -8.5742 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 288, "rank": 3, "name": "右摄提", "en": "Right Conductor" }, "geometry": { "type": "LineString", "coordinates": [ [ -151.3288, 18.3977 ], [ -153.1844, 17.4569 ], [ -152.6307, 15.7979 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 290, "rank": 3, "name": "羽林军", "en": "Palace Guard" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -29.3906, -16.9648 ], [ -27.7542, -18.5196 ], [ -26.4249, -21.0746 ] ], [ [ -24.6018, -21.5982 ], [ -24.1215, -24.7627 ], [ -26.4219, -27.7669 ] ], [ [ -22.4277, -14.5857 ], [ -23.8872, -13.5294 ], [ -25.2469, -13.305 ] ], [ [ -23.8063, -26.8599 ], [ -19.8361, -27.0436 ], [ -17.1628, -29.5363 ] ], [ [ -19.1032, -18.8304 ], [ -21.0467, -17.4604 ], [ -23.3572, -16.7421 ] ], [ [ -22.0778, -10.9056 ], [ -20.1832, -10.0278 ], [ -19.2449, -10.1027 ] ], [ [ -18.6149, -25.2369 ], [ -21.3265, -20.7082 ], [ -18.112, -19.6134 ] ], [ [ -18.0718, -14.0564 ], [ -16.3374, -15.8208 ], [ -16.3105, -16.272 ] ], [ [ -17.8741, -10.5555 ], [ -16.6304, -11.6165 ], [ -17.6021, -13.5926 ] ], [ [ -13.2012, -7.6946 ], [ -13.5311, -7.9367 ], [ -13.7092, -7.6938 ] ], [ [ -12.6383, -21.1724 ], [ -12.5213, -22.4576 ], [ -13.3298, -23.7431 ] ], [ [ -10.2597, -9.6107 ], [ -10.5241, -9.1825 ], [ -11.0271, -9.0877 ] ], [ [ -10.7878, -7.7265 ], [ -5.0539, -14.2222 ], [ -4.3194, -14.5449 ] ], [ [ -9.2574, -20.1006 ], [ -9.3368, -15.0393 ], [ -10.2235, -13.4547 ] ], [ [ -6.6807, -20.9145 ], [ -7.0748, -21.3695 ], [ -8.4884, -20.642 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 291, "rank": 3, "name": "玉井", "en": "Jade Well" }, "geometry": { "type": "LineString", "coordinates": [ [ 77.2866, -8.7541 ], [ 75.3598, -7.174 ], [ 76.9624, -5.0864 ], [ 79.4016, -6.8444 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 292, "rank": 3, "name": "御女", "en": "Maids-in-waiting" }, "geometry": { "type": "LineString", "coordinates": [ [ -96.8283, 74.2274 ], [ -78.4074, 75.434 ], [ -71.1123, 73.3555 ], [ -84.7359, 72.7328 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 295, "rank": 3, "name": "云雨", "en": "Cloud and Rain" }, "geometry": { "type": "LineString", "coordinates": [ [ -8.2669, 1.2556 ], [ -7.6237, -1.0359 ], [ -2.6355, 1.0761 ], [ -4.4883, 1.78 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 296, "rank": 3, "name": "造父", "en": "Zaofu" }, "geometry": { "type": "LineString", "coordinates": [ [ -22.7072, 58.4152 ], [ -27.2863, 58.2013 ], [ -27.1226, 59.4145 ], [ -34.1231, 58.78 ], [ -33.6378, 61.1208 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 297, "rank": 3, "name": "长垣", "en": "Long Wall" }, "geometry": { "type": "LineString", "coordinates": [ [ 158.0491, 14.1373 ], [ 161.6053, 14.1946 ], [ 162.3143, 10.5452 ], [ 158.7001, 6.9537 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 298, "rank": 3, "name": "丈人", "en": "Grandfather" }, "geometry": { "type": "LineString", "coordinates": [ [ 84.9122, -34.0741 ], [ 82.8031, -35.4705 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 301, "rank": 3, "name": "折威", "en": "Executions" }, "geometry": { "type": "LineString", "coordinates": [ [ -146.8082, -27.2612 ], [ -140.1583, -25.0286 ], [ -139.1935, -24.9978 ], [ -136.4161, -24.6422 ], [ -133.9824, -25.282 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 302, "rank": 3, "name": "阵车", "en": "Battle Chariots" }, "geometry": { "type": "LineString", "coordinates": [ [ -137.4279, -27.9604 ], [ -134.4732, -28.0606 ], [ -130.5423, -30.1487 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 304, "rank": 3, "name": "织女", "en": "Weaving Girl" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.9152, 39.6701 ], [ -80.7653, 38.7837 ], [ -78.8068, 37.6051 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 306, "rank": 3, "name": "周鼎", "en": "Tripod of the Zhou" }, "geometry": { "type": "LineString", "coordinates": [ [ -162.0317, 27.8782 ], [ -164.9314, 30.785 ], [ -163.2053, 27.6247 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 307, "rank": 3, "name": "诸王", "en": "Feudal Kings" }, "geometry": { "type": "LineString", "coordinates": [ [ 88.3319, 27.6123 ], [ 84.9342, 25.8971 ], [ 82.3188, 25.1502 ], [ 77.0276, 24.2652 ], [ 74.4527, 23.9486 ], [ 70.5613, 22.9569 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 308, "rank": 3, "name": "柱(毕宿)", "en": "Pillars (In Net Mansion)" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 83.182, 32.192 ], [ 84.6587, 30.4924 ] ], [ [ 75.4922, 43.8233 ], [ 75.6195, 41.0758 ], [ 76.6287, 41.2345 ], [ 75.4922, 43.8233 ] ], [ [ 87.7602, 37.3056 ], [ 87.8725, 39.1485 ], [ 87.2935, 39.1811 ], [ 87.7602, 37.3056 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 309, "rank": 3, "name": "柱(角宿)", "en": "Pillars (In Horn Mansion)" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -151.6978, -31.9276 ], [ -152.0433, -32.9941 ], [ -153.5781, -33.0437 ] ], [ [ -149.5688, -45.6034 ], [ -150.3302, -44.8036 ] ], [ [ -145.1491, -46.0581 ], [ -143.4657, -45.2214 ] ], [ [ -144.2407, -39.5118 ], [ -144.8607, -37.8853 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 311, "rank": 3, "name": "子", "en": "Son" }, "geometry": { "type": "LineString", "coordinates": [ [ 88.2787, -33.8014 ], [ 87.74, -35.7683 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 312, "rank": 3, "name": "宗", "en": "Patriarchal Clan" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.5845, 20.5463 ], [ -78.2447, 18.1815 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 313, "rank": 3, "name": "宗人", "en": "Official of Religious Ceremonies" }, "geometry": { "type": "LineString", "coordinates": [ [ -89.9342, 4.3686 ], [ -89.8387, 2.9316 ], [ -89.5617, 1.3051 ], [ -88.6363, 2.5001 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 314, "rank": 3, "name": "宗正", "en": "Official for the Royal Clan" }, "geometry": { "type": "LineString", "coordinates": [ [ -94.1319, 4.5673 ], [ -93.0268, 2.7073 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 315, "rank": 3, "name": "左更", "en": "Official in Charge of the Forest" }, "geometry": { "type": "LineString", "coordinates": [ [ 39.7041, 21.9614 ], [ 40.5914, 20.0115 ], [ 41.1374, 15.3119 ], [ 42.8733, 15.0821 ], [ 42.3232, 17.4643 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 316, "rank": 3, "name": "左旗", "en": "Left Flag" }, "geometry": { "type": "LineString", "coordinates": [ [ -64.9759, 18.0139 ], [ -64.7378, 17.476 ], [ -63.1531, 18.5343 ], [ -62.7556, 19.142 ], [ -60.3107, 19.4921 ], [ -59.9862, 17.5165 ], [ -60.5606, 16.7892 ], [ -59.1249, 16.0313 ], [ -56.4308, 15.1976 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 317, "rank": 3, "name": "左摄提", "en": "Left Conductor" }, "geometry": { "type": "LineString", "coordinates": [ [ -138.6897, 16.9643 ], [ -139.8185, 16.4183 ], [ -139.7127, 13.7283 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": 318, "rank": 3, "name": "座旗", "en": "Seat Flags" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.9149, 48.7895 ], [ 104.4046, 45.0941 ], [ 100.7707, 44.5244 ], [ 101.6847, 43.5774 ], [ 99.8326, 42.4889 ], [ 102.6914, 41.7812 ], [ 99.7049, 39.9026 ], [ 99.6647, 39.3909 ], [ 103.2559, 38.8692 ] ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,96 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "constellations.lines", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "id": "And", "rank": 1, "name": "Andromeda" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 14.3017, 23.4176 ], [ 11.8347, 24.2672 ], [ 9.6389, 29.3118 ], [ 9.832, 30.861 ], [ 9.2202, 33.7193 ], [ -5.4658, 43.2681 ], [ -14.5197, 42.326 ] ], [ [ -5.4658, 43.2681 ], [ -4.8979, 44.3339 ], [ -5.609, 46.4582 ] ], [ [ -4.8979, 44.3339 ], [ -3.4915, 46.4203 ] ], [ [ 30.9748, 42.3297 ], [ 17.433, 35.6206 ], [ 9.832, 30.861 ], [ 2.0969, 29.0904 ] ], [ [ 17.433, 35.6206 ], [ 14.1884, 38.4993 ], [ 12.4535, 41.0789 ], [ 17.3755, 47.2418 ], [ 24.4982, 48.6282 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ant", "rank": 3, "name": "Antlia" }, "geometry": { "type": "LineString", "coordinates": [ [ 142.3113, -35.9513 ], [ 156.7879, -31.0678 ], [ 164.1794, -37.1378 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Aps", "rank": 3, "name": "Apus" }, "geometry": { "type": "LineString", "coordinates": [ [ -138.0345, -79.0448 ], [ -114.9133, -78.6957 ], [ -109.2306, -77.5174 ], [ -111.6372, -78.8971 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Aqr", "rank": 2, "name": "Aquarius" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -48.081, -9.4958 ], [ -46.8365, -8.9833 ], [ -37.1103, -5.5712 ], [ -28.554, -0.3199 ], [ -24.5859, -1.3873 ], [ -22.792, -0.02 ], [ -21.1609, -0.1175 ], [ -16.8464, -7.5796 ], [ -10.5241, -9.1825 ], [ -12.6383, -21.1724 ] ], [ [ -37.1103, -5.5712 ], [ -28.3907, -13.8697 ] ], [ [ -28.554, -0.3199 ], [ -25.7915, -7.7833 ] ], [ [ -22.792, -0.02 ], [ -23.6807, 1.3774 ] ], [ [ -9.2574, -20.1006 ], [ -10.5241, -9.1825 ], [ -4.5591, -17.8165 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Aql", "rank": 1, "name": "Aquila" }, "geometry": { "type": "LineString", "coordinates": [ [ -63.4351, 10.6133 ], [ -62.3042, 8.8683 ], [ -61.1717, 6.4068 ], [ -57.1738, -0.8215 ], [ -61.8818, 1.0057 ], [ -68.6254, 3.1148 ], [ -73.6475, 13.8635 ], [ -62.3042, 8.8683 ], [ -68.6254, 3.1148 ], [ -73.4378, -4.8826 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ara", "rank": 3, "name": "Ara" }, "geometry": { "type": "LineString", "coordinates": [ [ -98.6514, -56.3777 ], [ -97.2254, -60.6838 ], [ -107.5535, -59.0414 ], [ -105.345, -55.9901 ], [ -105.104, -53.1604 ], [ -97.0396, -49.8761 ], [ -98.675, -55.5299 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ari", "rank": 1, "name": "Aries" }, "geometry": { "type": "LineString", "coordinates": [ [ 42.496, 27.2605 ], [ 31.7934, 23.4624 ], [ 28.66, 20.808 ], [ 28.3826, 19.2939 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Aur", "rank": 1, "name": "Auriga" }, "geometry": { "type": "LineString", "coordinates": [ [ 89.8822, 44.9474 ], [ 79.1723, 45.998 ], [ 76.6287, 41.2345 ], [ 74.2484, 33.1661 ], [ 81.573, 28.6075 ], [ 89.9303, 37.2126 ], [ 89.8822, 44.9474 ], [ 89.8818, 54.2847 ], [ 79.1723, 45.998 ], [ 75.4922, 43.8233 ], [ 75.6195, 41.0758 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Boo", "rank": 1, "name": "Boötes" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -153.1844, 17.4569 ], [ -151.3288, 18.3977 ], [ -146.0847, 19.1824 ], [ -142.0425, 30.3714 ], [ -141.9805, 38.3083 ], [ -134.5135, 40.3906 ], [ -131.1243, 33.3148 ], [ -138.7533, 27.0742 ], [ -146.0847, 19.1824 ], [ -139.7127, 13.7283 ] ], [ [ -141.9805, 38.3083 ], [ -145.9041, 46.0883 ], [ -146.6341, 51.7879 ], [ -143.7008, 51.8507 ], [ -145.9041, 46.0883 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cae", "rank": 3, "name": "Caelum" }, "geometry": { "type": "LineString", "coordinates": [ [ 67.7087, -44.9537 ], [ 70.1405, -41.8638 ], [ 70.5145, -37.1443 ], [ 76.1017, -35.483 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cam", "rank": 2, "name": "Camelopardalis" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 74.3217, 53.7521 ], [ 75.8545, 60.4422 ], [ 73.5125, 66.3427 ], [ 57.5896, 71.3323 ], [ 57.3803, 65.526 ], [ 52.2672, 59.9403 ] ], [ [ 73.5125, 66.3427 ], [ 94.7116, 69.3198 ], [ 105.0168, 76.9774 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cnc", "rank": 2, "name": "Cancer" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 131.1712, 18.1543 ], [ 124.1288, 9.1855 ] ], [ [ 134.6218, 11.8577 ], [ 131.1712, 18.1543 ], [ 130.8214, 21.4685 ], [ 131.6666, 28.7651 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CVn", "rank": 2, "name": "Canes Venatici" }, "geometry": { "type": "LineString", "coordinates": [ [ -165.9981, 38.3149 ], [ -171.5644, 41.3575 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CMa", "rank": 1, "name": "Canis Major" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 95.6749, -17.9559 ], [ 101.2872, -16.7161 ], [ 105.7561, -23.8333 ], [ 107.0979, -26.3932 ], [ 105.4298, -27.9348 ], [ 104.6565, -28.9721 ], [ 95.0783, -30.0634 ] ], [ [ 101.2872, -16.7161 ], [ 104.0343, -17.0542 ], [ 105.9396, -15.6333 ], [ 103.5475, -12.0386 ], [ 104.0343, -17.0542 ] ], [ [ 111.0238, -29.3031 ], [ 107.0979, -26.3932 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CMi", "rank": 2, "name": "Canis Minor" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.8255, 5.225 ], [ 111.7877, 8.2893 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cap", "rank": 2, "name": "Capricornus" }, "geometry": { "type": "LineString", "coordinates": [ [ -55.588, -12.5082 ], [ -54.7472, -14.7814 ], [ -52.7849, -17.8137 ], [ -48.4761, -25.2709 ], [ -47.0446, -26.9191 ], [ -38.3332, -22.4113 ], [ -33.2398, -16.1273 ], [ -34.9773, -16.6623 ], [ -39.4383, -16.8345 ], [ -43.5132, -17.2329 ], [ -55.588, -12.5082 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Car", "rank": 1, "name": "Carina" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 99.4403, -43.1959 ], [ 95.988, -52.6957 ], [ 138.2999, -69.7172 ], [ 153.4342, -70.0379 ], [ 160.7392, -64.3945 ], [ 158.0061, -61.6853 ], [ 154.2707, -61.3323 ], [ 139.2725, -59.2752 ], [ 125.6285, -59.5095 ], [ 119.1946, -52.9824 ], [ 122.3831, -47.3366 ], [ 131.1759, -54.7088 ], [ 139.2725, -59.2752 ] ], [ [ 160.7392, -64.3945 ], [ 166.6351, -62.4241 ], [ 167.1417, -61.9472 ], [ 168.1501, -60.3176 ], [ 167.1475, -58.975 ], [ 163.3736, -58.8532 ], [ 158.0061, -61.6853 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cas", "rank": 1, "name": "Cassiopeia" }, "geometry": { "type": "LineString", "coordinates": [ [ 28.5989, 63.6701 ], [ 21.454, 60.2353 ], [ 14.1772, 60.7167 ], [ 10.1268, 56.5373 ], [ 2.2945, 59.1498 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cen", "rank": 1, "name": "Centaurus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -172.9901, -50.2306 ], [ -177.087, -52.3685 ], [ -180.0, -54.435032624611381 ] ], [ [ -180.0, -51.387624960508198 ], [ -177.9104, -50.7224 ], [ -172.9901, -50.2306 ], [ -169.6207, -48.9599 ], [ -155.0281, -53.4664 ], [ -151.1151, -47.2884 ], [ -152.5959, -42.4737 ], [ -152.6238, -41.6877 ], [ -148.3294, -36.37 ], [ -141.1232, -42.1578 ], [ -135.2096, -42.1042 ] ], [ [ -152.6238, -41.6877 ], [ -159.8508, -36.7123 ] ], [ [ -140.1038, -60.8372 ], [ -155.0281, -53.4664 ], [ -149.0441, -60.373 ] ], [ [ 170.2517, -54.491 ], [ 180.0, -51.387624960508198 ] ], [ [ 180.0, -54.435032624611381 ], [ 172.942, -59.4421 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cep", "rank": 2, "name": "Cepheus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -52.6046, 62.9941 ], [ -48.6776, 61.8388 ], [ -40.3551, 62.5856 ], [ -34.1231, 58.78 ], [ -26.2409, 57.0436 ], [ -27.2863, 58.2013 ], [ -22.7072, 58.4152 ], [ -17.5799, 66.2004 ], [ -5.1631, 77.6323 ], [ -37.835, 70.5607 ], [ -40.3551, 62.5856 ] ], [ [ -37.835, 70.5607 ], [ -17.5799, 66.2004 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cet", "rank": 1, "name": "Cetus" }, "geometry": { "type": "LineString", "coordinates": [ [ 40.8252, 3.2358 ], [ 38.9686, 5.5932 ], [ 37.0398, 8.4601 ], [ 41.2356, 10.1141 ], [ 44.9288, 8.9074 ], [ 45.5699, 4.0897 ], [ 40.8252, 3.2358 ], [ 39.8707, 0.3285 ], [ 34.8366, -2.9776 ], [ 27.8651, -10.335 ], [ 26.017, -15.9375 ], [ 10.8974, -17.9866 ], [ 4.857, -8.8239 ], [ 17.1475, -10.1823 ], [ 21.0059, -8.1833 ], [ 27.8651, -10.335 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cha", "rank": 3, "name": "Chamaeleon" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, -79.540349381145575 ], [ -175.4132, -79.3122 ], [ -180.0, -78.243560471774714 ] ], [ [ 124.6315, -76.9197 ], [ 158.8671, -78.6078 ], [ 161.318, -80.4696 ], [ 180.0, -79.540349381145575 ] ], [ [ 180.0, -78.243560471774714 ], [ 179.9066, -78.2218 ], [ 158.8671, -78.6078 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cir", "rank": 3, "name": "Circinus" }, "geometry": { "type": "LineString", "coordinates": [ [ -130.6215, -58.8012 ], [ -139.3733, -64.9751 ], [ -129.1556, -59.3208 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Col", "rank": 3, "name": "Columba" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 95.5285, -33.4364 ], [ 87.74, -35.7683 ], [ 84.9122, -34.0741 ], [ 82.8031, -35.4705 ] ], [ [ 87.74, -35.7683 ], [ 89.7867, -42.8151 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Com", "rank": 3, "name": "Coma Berenices" }, "geometry": { "type": "LineString", "coordinates": [ [ -162.503, 17.5294 ], [ -162.0317, 27.8782 ], [ -173.2655, 28.2684 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CrA", "rank": 3, "name": "Corona Austrina" }, "geometry": { "type": "LineString", "coordinates": [ [ -75.3193, -37.1074 ], [ -73.3954, -37.0634 ], [ -72.6319, -37.9045 ], [ -72.4927, -39.3408 ], [ -72.9126, -40.4967 ], [ -74.2213, -42.0951 ], [ -77.6042, -43.4341 ], [ -81.6242, -42.3125 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CrB", "rank": 2, "name": "Corona Borealis" }, "geometry": { "type": "LineString", "coordinates": [ [ -126.7676, 31.3591 ], [ -128.0428, 29.1057 ], [ -126.328, 26.7147 ], [ -124.3143, 26.2956 ], [ -122.6015, 26.0684 ], [ -120.6031, 26.8779 ], [ -119.6393, 29.8511 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Crv", "rank": 3, "name": "Corvus" }, "geometry": { "type": "LineString", "coordinates": [ [ -177.8966, -24.7289 ], [ -177.4688, -22.6198 ], [ -176.0485, -17.5419 ], [ -172.5339, -16.5154 ], [ -171.4032, -23.3968 ], [ -177.4688, -22.6198 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Crt", "rank": 3, "name": "Crater" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 169.8352, -14.7785 ], [ 171.2205, -17.684 ] ], [ [ 174.1705, -9.8022 ], [ 171.1525, -10.8593 ], [ 169.8352, -14.7785 ], [ 164.9436, -18.2988 ], [ 167.9145, -22.8258 ], [ 170.8412, -18.78 ], [ 171.2205, -17.684 ], [ 176.1907, -18.3507 ], [ 179.004, -17.1508 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cru", "rank": 2, "name": "Crux" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -168.0697, -59.6888 ], [ -176.2137, -58.7489 ] ], [ [ -173.3504, -63.0991 ], [ -172.2085, -57.1132 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cyg", "rank": 1, "name": "Cygnus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -41.7659, 30.2269 ], [ -48.4472, 33.9703 ], [ -54.4429, 40.2567 ], [ -63.7563, 45.1308 ], [ -67.5735, 51.7298 ], [ -70.7243, 53.3685 ] ], [ [ -49.642, 45.2803 ], [ -54.4429, 40.2567 ], [ -60.9235, 35.0834 ], [ -67.3197, 27.9597 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Del", "rank": 3, "name": "Delphinus" }, "geometry": { "type": "LineString", "coordinates": [ [ -51.6968, 11.3033 ], [ -50.6127, 14.5951 ], [ -50.0905, 15.9121 ], [ -48.3381, 16.1241 ], [ -49.1353, 15.0746 ], [ -50.6127, 14.5951 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Dor", "rank": 3, "name": "Dorado" }, "geometry": { "type": "LineString", "coordinates": [ [ 64.0066, -51.4866 ], [ 68.4991, -55.045 ], [ 83.4063, -62.4898 ], [ 86.1932, -65.7355 ], [ 88.5252, -63.0896 ], [ 83.4063, -62.4898 ], [ 76.3777, -57.4727 ], [ 68.4991, -55.045 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Dra", "rank": 2, "name": "Draco" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.6178, 56.8726 ], [ -90.8485, 51.4889 ], [ -97.3918, 52.3014 ], [ -96.9332, 55.173 ], [ -91.6178, 56.8726 ], [ -71.8612, 67.6615 ], [ -84.8107, 71.3378 ], [ -102.8034, 65.7147 ], [ -114.0021, 61.5142 ], [ -119.5277, 58.5653 ], [ -128.7676, 58.9661 ], [ -148.9027, 64.3759 ], [ -171.6294, 69.7882 ], [ -180.0, 69.541661648098881 ] ], [ [ -84.8107, 71.3378 ], [ -84.7359, 72.7328 ] ], [ [ -71.8612, 67.6615 ], [ -62.9569, 70.2679 ] ], [ [ 180.0, 69.541661648098881 ], [ 172.8509, 69.3311 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Equ", "rank": 3, "name": "Equuleus" }, "geometry": { "type": "LineString", "coordinates": [ [ -41.044, 5.2478 ], [ -41.3799, 10.007 ], [ -42.4146, 10.1316 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Eri", "rank": 1, "name": "Eridanus" }, "geometry": { "type": "LineString", "coordinates": [ [ 76.9624, -5.0864 ], [ 71.3756, -3.2547 ], [ 69.0798, -3.3525 ], [ 62.9664, -6.8376 ], [ 59.5074, -13.5085 ], [ 56.5356, -12.1016 ], [ 55.8121, -9.7634 ], [ 53.2327, -9.4583 ], [ 44.1069, -8.8981 ], [ 41.0306, -13.8587 ], [ 41.2758, -18.5726 ], [ 45.5979, -23.6245 ], [ 49.8792, -21.7579 ], [ 53.447, -21.6329 ], [ 56.712, -23.2497 ], [ 68.8877, -30.5623 ], [ 66.0092, -34.0168 ], [ 64.4736, -33.7983 ], [ 57.3635, -36.2003 ], [ 54.2737, -40.2745 ], [ 49.9819, -43.0698 ], [ 44.5653, -40.3047 ], [ 40.1668, -39.8554 ], [ 36.7463, -47.7038 ], [ 34.1274, -51.5122 ], [ 28.9895, -51.6089 ], [ 24.4285, -57.2368 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "For", "rank": 3, "name": "Fornax" }, "geometry": { "type": "LineString", "coordinates": [ [ 48.0189, -28.9876 ], [ 42.2726, -32.4059 ], [ 31.1227, -29.2968 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Gem", "rank": 1, "name": "Gemini" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 93.7194, 22.5068 ], [ 95.7401, 22.5136 ], [ 100.983, 25.1311 ], [ 107.7849, 30.2452 ], [ 113.6494, 31.8883 ], [ 116.329, 28.0262 ], [ 113.9806, 26.8957 ], [ 110.0307, 21.9823 ], [ 106.0272, 20.5703 ], [ 99.4279, 16.3993 ], [ 101.3224, 12.8956 ] ], [ [ 110.0307, 21.9823 ], [ 109.5232, 16.5404 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Gru", "rank": 3, "name": "Grus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -22.6826, -43.4956 ], [ -26.0962, -41.3467 ], [ -28.4713, -39.5434 ], [ -31.5178, -37.3649 ] ], [ [ -14.78, -52.7541 ], [ -17.8613, -51.3169 ], [ -19.3331, -46.8846 ], [ -22.5607, -43.7492 ], [ -27.9417, -46.961 ], [ -19.3331, -46.8846 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Her", "rank": 2, "name": "Hercules" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.5199, 19.1531 ], [ -112.445, 21.4896 ], [ -109.6785, 31.6027 ], [ -109.276, 38.9223 ], [ -111.4742, 42.437 ], [ -115.0648, 46.3134 ], [ -117.8076, 44.9349 ], [ -121.8311, 42.4515 ] ], [ [ -101.3381, 14.3903 ], [ -112.445, 21.4896 ] ], [ [ -109.6785, 31.6027 ], [ -104.9276, 30.9264 ] ], [ [ -109.276, 38.9223 ], [ -101.2382, 36.8092 ] ], [ [ -90.9367, 37.2505 ], [ -99.0794, 37.1459 ], [ -101.2382, 36.8092 ], [ -104.9276, 30.9264 ], [ -101.242, 24.8392 ], [ -93.3853, 27.7207 ], [ -90.5588, 29.2479 ], [ -88.1144, 28.7625 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Hor", "rank": 3, "name": "Horologium" }, "geometry": { "type": "LineString", "coordinates": [ [ 63.5005, -42.2944 ], [ 40.6394, -50.8003 ], [ 39.3515, -52.5431 ], [ 40.1651, -54.5499 ], [ 45.9034, -59.7378 ], [ 44.6992, -64.0713 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Hya", "rank": 2, "name": "Hydra" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, -33.022936653149301 ], [ -160.2696, -23.1715 ], [ -148.4071, -26.6824 ], [ -137.4279, -27.9604 ] ], [ [ 131.6938, 6.4188 ], [ 132.1082, 5.8378 ], [ 130.8061, 3.3987 ], [ 129.6893, 3.3414 ], [ 129.414, 5.7038 ], [ 131.6938, 6.4188 ], [ 133.8484, 5.9456 ], [ 138.5911, 2.3143 ], [ 144.964, -1.1428 ], [ 141.8968, -8.6586 ], [ 147.8696, -14.8466 ], [ 152.647, -12.3541 ], [ 156.5226, -16.8363 ], [ 162.4062, -16.1936 ], [ 173.2505, -31.8576 ], [ 178.2272, -33.9081 ], [ 180.0, -33.022936653149301 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Hyi", "rank": 3, "name": "Hydrus" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.4378, -77.2542 ], [ 56.8098, -74.239 ], [ 39.8973, -68.2669 ], [ 35.4373, -68.6594 ], [ 28.7339, -67.6473 ], [ 29.6925, -61.5699 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ind", "rank": 3, "name": "Indus" }, "geometry": { "type": "LineString", "coordinates": [ [ -50.6082, -47.2915 ], [ -48.9903, -51.921 ], [ -46.2975, -58.4542 ], [ -30.5205, -54.9926 ], [ -40.0334, -53.4494 ], [ -50.6082, -47.2915 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lac", "rank": 3, "name": "Lacerta" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -22.3781, 43.1234 ], [ -26.5303, 39.7149 ], [ -26.0076, 37.7487 ] ], [ [ -24.1099, 52.229 ], [ -22.1771, 50.2825 ], [ -22.6174, 47.7069 ], [ -24.7436, 46.5366 ], [ -22.3781, 43.1234 ], [ -19.8714, 44.2763 ], [ -22.6174, 47.7069 ], [ -23.8709, 49.4764 ], [ -24.1099, 52.229 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Leo", "rank": 1, "name": "Leo" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 154.9931, 19.8415 ], [ 154.1726, 23.4173 ], [ 148.1909, 26.007 ], [ 146.4628, 23.7743 ] ], [ [ 152.093, 11.9672 ], [ 151.8331, 16.7627 ], [ 154.9931, 19.8415 ], [ 168.5271, 20.5237 ], [ 177.2649, 14.5721 ], [ 168.56, 15.4296 ], [ 152.093, 11.9672 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LMi", "rank": 3, "name": "Leo Minor" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.8573, 35.2447 ], [ 156.4784, 33.7961 ], [ 163.3279, 34.2149 ], [ 156.9708, 36.7072 ], [ 151.8573, 35.2447 ], [ 143.5558, 36.3976 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lep", "rank": 3, "name": "Lepus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 78.3078, -12.9413 ], [ 78.2329, -16.2055 ], [ 79.8939, -13.1768 ] ], [ [ 91.5388, -14.9353 ], [ 89.1012, -14.1677 ], [ 86.7389, -14.822 ], [ 83.1826, -17.8223 ], [ 78.2329, -16.2055 ], [ 76.3653, -22.371 ], [ 82.0613, -20.7594 ], [ 86.1158, -22.4484 ], [ 87.8304, -20.8791 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lib", "rank": 2, "name": "Libra" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -137.2804, -16.0418 ], [ -126.1184, -14.7895 ] ], [ [ -133.9824, -25.282 ], [ -137.2804, -16.0418 ], [ -130.7483, -9.3829 ], [ -126.1184, -14.7895 ], [ -125.744, -28.1351 ], [ -125.336, -29.7778 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lup", "rank": 3, "name": "Lupus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -129.657, -40.6475 ], [ -126.2148, -41.1668 ] ], [ [ -122.2603, -33.6272 ], [ -125.0584, -34.4119 ], [ -129.5485, -36.2614 ], [ -129.657, -40.6475 ], [ -135.367, -43.134 ], [ -139.5177, -47.3882 ], [ -131.9288, -52.0992 ], [ -130.3666, -47.8753 ], [ -129.3297, -44.6896 ], [ -126.2148, -41.1668 ], [ -119.9695, -38.3967 ], [ -118.3519, -36.8023 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lyn", "rank": 3, "name": "Lynx" }, "geometry": { "type": "LineString", "coordinates": [ [ 94.9058, 59.011 ], [ 104.3192, 58.4228 ], [ 111.6785, 49.2115 ], [ 125.7088, 43.1881 ], [ 135.1599, 41.7829 ], [ 139.711, 36.8026 ], [ 140.2638, 34.3926 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lyr", "rank": 2, "name": "Lyra" }, "geometry": { "type": "LineString", "coordinates": [ [ -78.8068, 37.6051 ], [ -78.9051, 39.6127 ], [ -80.7653, 38.7837 ], [ -78.8068, 37.6051 ], [ -76.3738, 36.8986 ], [ -75.2641, 32.6896 ], [ -77.48, 33.3627 ], [ -78.8068, 37.6051 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Men", "rank": 3, "name": "Mensa" }, "geometry": { "type": "LineString", "coordinates": [ [ 92.5603, -74.753 ], [ 82.9709, -76.341 ], [ 73.7967, -74.9369 ], [ 75.6792, -71.3143 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Mic", "rank": 3, "name": "Microscopium" }, "geometry": { "type": "LineString", "coordinates": [ [ -47.508, -33.7797 ], [ -47.8786, -43.9885 ], [ -39.8098, -40.8095 ], [ -40.5155, -32.1725 ], [ -44.6772, -32.2578 ], [ -47.508, -33.7797 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Mon", "rank": 2, "name": "Monoceros" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 115.3118, -9.5511 ], [ 122.1485, -2.9838 ], [ 107.9661, -0.4928 ], [ 97.2045, -7.0331 ], [ 93.7139, -6.2748 ] ], [ [ 107.9661, -0.4928 ], [ 101.9652, 2.4122 ], [ 95.942, 4.5929 ], [ 98.2259, 7.333 ], [ 100.2444, 9.8958 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Mus", "rank": 3, "name": "Musca" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, -67.283510336499361 ], [ -175.6072, -67.9607 ], [ -170.7041, -69.1356 ], [ -168.43, -68.1081 ], [ -164.4322, -71.5489 ], [ -171.8833, -72.133 ], [ -170.7041, -69.1356 ] ], [ [ 176.4017, -66.7288 ], [ 180.0, -67.283510336499361 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Nor", "rank": 3, "name": "Norma" }, "geometry": { "type": "LineString", "coordinates": [ [ -118.3773, -45.1732 ], [ -113.204, -47.5548 ], [ -115.0399, -50.1555 ], [ -119.1963, -49.2297 ], [ -118.3773, -45.1732 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Oct", "rank": 3, "name": "Octans" }, "geometry": { "type": "LineString", "coordinates": [ [ -143.2699, -83.6679 ], [ -18.4854, -81.3816 ], [ -34.6306, -77.39 ], [ -143.2699, -83.6679 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Oph", "rank": 2, "name": "Ophiuchus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -105.5829, 9.375 ], [ -110.7103, -10.5671 ], [ -112.2151, -16.6127 ], [ -113.244, -18.4563 ], [ -113.9742, -20.0373 ], [ -113.6037, -23.4472 ] ], [ [ -90.2434, -9.7736 ], [ -93.0268, 2.7073 ], [ -94.1319, 4.5673 ], [ -96.2664, 12.56 ], [ -105.5829, 9.375 ], [ -112.2716, 1.9839 ], [ -116.4136, -3.6943 ], [ -115.4196, -4.6925 ], [ -110.7103, -10.5671 ], [ -102.4055, -15.7249 ] ], [ [ -94.1319, 4.5673 ], [ -102.4055, -15.7249 ], [ -99.4976, -24.9995 ], [ -98.1614, -29.867 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ori", "rank": 1, "name": "Orion" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 91.893, 14.7685 ], [ 88.5958, 20.2762 ], [ 90.9799, 20.1385 ], [ 92.985, 14.2088 ], [ 90.5958, 9.6473 ], [ 88.7929, 7.4071 ], [ 81.2828, 6.3497 ], [ 73.7239, 10.1508 ] ], [ [ 74.6371, 1.714 ], [ 73.5629, 2.4407 ], [ 72.8015, 5.6051 ], [ 72.46, 6.9613 ], [ 72.653, 8.9002 ], [ 73.7239, 10.1508 ], [ 74.0928, 13.5145 ], [ 76.1423, 15.4041 ], [ 77.4248, 15.5972 ] ], [ [ 78.6345, -8.2016 ], [ 81.1192, -2.3971 ], [ 83.0017, -0.2991 ], [ 81.2828, 6.3497 ], [ 83.7845, 9.9342 ], [ 88.7929, 7.4071 ], [ 85.1897, -1.9426 ], [ 86.9391, -9.6696 ] ], [ [ 85.1897, -1.9426 ], [ 84.0534, -1.2019 ], [ 83.0017, -0.2991 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pav", "rank": 2, "name": "Pavo" }, "geometry": { "type": "LineString", "coordinates": [ [ -53.5881, -56.7351 ], [ -48.7604, -66.2032 ], [ -57.8183, -66.1821 ], [ -76.9457, -62.1876 ], [ -84.1932, -61.4939 ], [ -87.8549, -63.6686 ], [ -93.5667, -64.7239 ], [ -79.2411, -71.4281 ], [ -59.8519, -72.9105 ], [ -48.7604, -66.2032 ], [ -38.3891, -65.3662 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Peg", "rank": 1, "name": "Pegasus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -27.5031, 33.1782 ], [ -19.2494, 30.2212 ], [ -14.0564, 28.0828 ], [ 2.0969, 29.0904 ], [ 3.309, 15.1836 ], [ -13.8098, 15.2053 ], [ -18.3267, 12.1729 ], [ -19.6345, 10.8314 ], [ -27.4501, 6.1979 ], [ -33.9535, 9.875 ] ], [ [ -13.8098, 15.2053 ], [ -14.0564, 28.0828 ], [ -17.4992, 24.6016 ], [ -18.3672, 23.5657 ], [ -28.2472, 25.3451 ], [ -33.8386, 25.645 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Per", "rank": 1, "name": "Perseus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 47.2667, 49.6133 ], [ 41.0499, 49.2284 ], [ 25.9152, 50.6887 ] ], [ [ 56.0797, 32.2882 ], [ 58.533, 31.8836 ], [ 59.7413, 35.791 ], [ 59.4635, 40.0102 ], [ 56.2985, 42.5785 ], [ 55.7313, 47.7876 ], [ 54.1224, 48.1926 ], [ 51.0807, 49.8612 ], [ 46.1991, 53.5064 ], [ 42.6742, 55.8955 ], [ 43.5644, 52.7625 ], [ 47.2667, 49.6133 ], [ 47.374, 44.8575 ], [ 47.0422, 40.9556 ], [ 47.8224, 39.6116 ], [ 46.2941, 38.8403 ], [ 44.6903, 39.6627 ], [ 44.9162, 41.0329 ], [ 47.0422, 40.9556 ] ], [ [ 61.646, 50.3513 ], [ 63.7244, 48.4093 ], [ 62.1654, 47.7125 ], [ 55.7313, 47.7876 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Phe", "rank": 2, "name": "Phoenix" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.571, -42.306 ], [ 16.521, -46.7184 ], [ 22.0914, -43.3182 ], [ 22.8129, -49.0727 ], [ 17.0962, -55.2458 ], [ 16.521, -46.7184 ], [ 2.3527, -45.7474 ], [ 6.571, -42.306 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pic", "rank": 3, "name": "Pictor" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.0477, -61.9414 ], [ 87.4569, -56.1667 ], [ 86.8212, -51.0665 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Psc", "rank": 2, "name": "Pisces" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -10.7086, 3.2823 ], [ -14.0308, 3.82 ] ], [ [ 18.4373, 24.5837 ], [ 17.9152, 30.0896 ], [ 19.8666, 27.2641 ], [ 18.4373, 24.5837 ], [ 17.8634, 21.0347 ], [ 22.8709, 15.3458 ], [ 26.3485, 9.1577 ], [ 30.5118, 2.7638 ], [ 28.389, 3.1875 ], [ 25.3579, 5.4876 ], [ 22.5463, 6.1438 ], [ 18.4329, 7.5754 ], [ 15.7359, 7.8901 ], [ 12.1706, 7.5851 ], [ -0.1721, 6.8633 ], [ -5.0123, 5.6263 ], [ -8.0079, 6.379 ], [ -9.9142, 5.3813 ], [ -10.7086, 3.2823 ], [ -8.2669, 1.2556 ], [ -4.4883, 1.78 ], [ -3.402, 3.4868 ], [ -5.0123, 5.6263 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PsA", "rank": 2, "name": "Piscis Austrinus" }, "geometry": { "type": "LineString", "coordinates": [ [ -19.8361, -27.0436 ], [ -15.5873, -29.6222 ], [ -16.0129, -32.5396 ], [ -16.8686, -32.8755 ], [ -22.1236, -32.3461 ], [ -27.9041, -32.9885 ], [ -33.7633, -33.0258 ], [ -33.066, -30.8983 ], [ -27.9041, -32.9885 ], [ -19.8361, -27.0436 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pup", "rank": 2, "name": "Puppis" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 99.4403, -43.1959 ], [ 109.2857, -37.0975 ], [ 113.8454, -28.3693 ], [ 114.7078, -26.8038 ], [ 117.3236, -24.8598 ], [ 119.2147, -22.8801 ], [ 121.886, -24.3043 ], [ 120.896, -40.0031 ], [ 122.3831, -47.3366 ] ], [ [ 117.3236, -24.8598 ], [ 117.0215, -25.9372 ], [ 115.952, -28.9548 ], [ 113.8454, -28.3693 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pyx", "rank": 3, "name": "Pyxis" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.896, -40.0031 ], [ 130.0256, -35.3084 ], [ 130.8981, -33.1864 ], [ 132.633, -27.7098 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ret", "rank": 3, "name": "Reticulum" }, "geometry": { "type": "LineString", "coordinates": [ [ 63.6062, -62.4739 ], [ 64.121, -59.3022 ], [ 59.6865, -61.4002 ], [ 56.0499, -64.8069 ], [ 63.6062, -62.4739 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sge", "rank": 3, "name": "Sagitta" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -64.9759, 18.0139 ], [ -63.1531, 18.5343 ], [ -60.3107, 19.4921 ] ], [ [ -64.7378, 17.476 ], [ -63.1531, 18.5343 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sgr", "rank": 1, "name": "Sagittarius" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -85.5932, -36.7617 ], [ -83.957, -34.3846 ], [ -84.7515, -29.8281 ], [ -83.0073, -25.4217 ], [ -86.5591, -21.0588 ] ], [ [ -69.3404, -44.459 ], [ -69.0284, -40.6159 ], [ -74.347, -29.8801 ], [ -78.5859, -26.9908 ], [ -83.0073, -25.4217 ] ], [ [ -73.8292, -21.7415 ], [ -75.5675, -21.1067 ], [ -76.4576, -22.7448 ], [ -76.1836, -26.2967 ] ], [ [ -61.1846, -41.8683 ], [ -60.0659, -35.2763 ], [ -61.0402, -26.2995 ], [ -65.8232, -24.8836 ], [ -68.6813, -24.5086 ], [ -71.1149, -25.2567 ], [ -76.1836, -26.2967 ], [ -78.5859, -26.9908 ], [ -84.7515, -29.8281 ], [ -88.548, -30.4241 ], [ -83.957, -34.3846 ], [ -74.347, -29.8801 ], [ -73.265, -27.6704 ], [ -76.1836, -26.2967 ], [ -73.8292, -21.7415 ], [ -72.559, -21.0236 ], [ -70.5913, -18.9529 ], [ -69.5818, -17.8472 ], [ -69.5682, -15.955 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sco", "rank": 1, "name": "Scorpius" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -120.287, -26.1141 ], [ -119.9166, -22.6217 ], [ -118.6407, -19.8055 ] ], [ [ -119.9166, -22.6217 ], [ -114.7028, -25.5928 ], [ -112.6481, -26.432 ], [ -111.0294, -28.216 ], [ -107.4591, -34.2932 ], [ -107.0324, -38.0474 ], [ -106.3541, -42.3613 ], [ -101.9617, -43.2392 ], [ -95.6703, -42.9978 ], [ -93.1038, -40.127 ], [ -94.378, -39.03 ], [ -96.5978, -37.1038 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Scl", "rank": 3, "name": "Sculptor" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.6515, -29.3574 ], [ -2.7686, -28.1303 ], [ -10.294, -32.532 ], [ -6.7573, -37.8183 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sct", "rank": 3, "name": "Scutum" }, "geometry": { "type": "LineString", "coordinates": [ [ -81.1982, -8.2441 ], [ -78.2064, -4.7479 ], [ -79.4316, -9.0525 ], [ -82.7006, -14.5658 ], [ -81.1982, -8.2441 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ser", "rank": 3, "name": "Serpens Caput" }, "geometry": { "type": "LineString", "coordinates": [ [ -123.4531, 15.4218 ], [ -124.6123, 19.6704 ], [ -122.8151, 18.1416 ], [ -120.8867, 15.6616 ], [ -123.4531, 15.4218 ], [ -126.2994, 10.5389 ], [ -123.933, 6.4256 ], [ -122.296, 4.4777 ], [ -116.4136, -3.6943 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ser", "rank": 3, "name": "Serpens Cauda" }, "geometry": { "type": "LineString", "coordinates": [ [ -102.4055, -15.7249 ], [ -95.6033, -15.3986 ], [ -90.2434, -9.7736 ], [ -89.2295, -8.1803 ], [ -84.6725, -2.8988 ], [ -75.9451, 4.2036 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Sex", "rank": 3, "name": "Sextans" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.9845, -0.3716 ], [ 148.1268, -8.105 ], [ 157.3696, -2.7391 ], [ 157.5728, -0.637 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Tau", "rank": 1, "name": "Taurus" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 51.7923, 9.7327 ], [ 51.2033, 9.0289 ], [ 54.2183, 0.4017 ] ], [ [ 64.9483, 15.6276 ], [ 60.1701, 12.4903 ], [ 51.7923, 9.7327 ], [ 60.7891, 5.9893 ] ], [ [ 84.4112, 21.1425 ], [ 68.9802, 16.5093 ], [ 67.1656, 15.8709 ], [ 64.9483, 15.6276 ], [ 65.7337, 17.5425 ], [ 67.1542, 19.1804 ], [ 81.573, 28.6075 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Tel", "rank": 3, "name": "Telescopium" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.1927, -45.9544 ], [ -83.2566, -45.9685 ], [ -82.7923, -49.0706 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Tri", "rank": 3, "name": "Triangulum" }, "geometry": { "type": "LineString", "coordinates": [ [ 28.2704, 29.5788 ], [ 32.3859, 34.9873 ], [ 34.3286, 33.8472 ], [ 28.2704, 29.5788 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TrA", "rank": 2, "name": "Triangulum Australe" }, "geometry": { "type": "LineString", "coordinates": [ [ -107.8338, -69.0277 ], [ -121.2143, -63.4307 ], [ -130.2726, -68.6795 ], [ -107.8338, -69.0277 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Tuc", "rank": 3, "name": "Tucana" }, "geometry": { "type": "LineString", "coordinates": [ [ -25.3746, -60.2596 ], [ -10.6426, -58.2357 ], [ 7.8861, -62.9582 ], [ 5.0178, -64.8748 ], [ -0.0209, -65.5771 ], [ -23.1668, -64.9664 ], [ -25.3746, -60.2596 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UMa", "rank": 1, "name": "Ursa Major" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, 54.648324661035794 ], [ -176.1435, 57.0326 ], [ -166.4927, 55.9598 ], [ -159.0186, 54.9254 ], [ -153.1148, 49.3133 ] ], [ [ -176.1435, 57.0326 ], [ -180.0, 58.047775296382056 ] ], [ [ 165.932, 61.751 ], [ 142.8821, 63.0619 ], [ 127.5661, 60.7182 ], [ 147.7473, 59.0387 ], [ 165.4603, 56.3824 ], [ 148.0265, 54.0643 ], [ 143.2143, 51.6773 ], [ 134.8019, 48.0418 ] ], [ [ 135.9064, 47.1565 ], [ 143.2143, 51.6773 ] ], [ [ 167.4159, 44.4985 ], [ 154.2741, 42.9144 ] ], [ [ 176.5126, 47.7794 ], [ 167.4159, 44.4985 ], [ 155.5823, 41.4995 ] ], [ [ 178.4577, 53.6948 ], [ 176.5126, 47.7794 ], [ 169.6197, 33.0943 ], [ 169.5468, 31.5308 ] ], [ [ 180.0, 58.047775296382056 ], [ 165.932, 61.751 ], [ 165.4603, 56.3824 ], [ 178.4577, 53.6948 ], [ 180.0, 54.648324661035794 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UMi", "rank": 2, "name": "Ursa Minor" }, "geometry": { "type": "LineString", "coordinates": [ [ -123.9853, 77.7945 ], [ -115.6238, 75.7553 ], [ -129.8179, 71.834 ], [ -137.3236, 74.1555 ], [ -123.9853, 77.7945 ], [ -108.5073, 82.0373 ], [ -96.9458, 86.5865 ], [ 37.9545, 89.2641 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Vel", "rank": 2, "name": "Vela" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.1759, -54.7088 ], [ 140.5284, -55.0107 ], [ 149.2156, -54.5678 ], [ 161.6924, -49.4203 ], [ 153.684, -42.1219 ], [ 142.675, -40.4668 ], [ 136.999, -43.4326 ], [ 122.3831, -47.3366 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Vir", "rank": 1, "name": "Virgo" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -180.0, 0.990170675229708 ], [ -175.0235, -0.6668 ], [ -169.5848, -1.4494 ], [ -162.5125, -5.539 ], [ -158.7018, -11.1613 ], [ -145.9964, -6.0005 ], [ -139.2349, -5.6582 ] ], [ [ -164.4558, 10.9592 ], [ -166.0991, 3.3975 ], [ -169.5848, -1.4494 ] ], [ [ -162.5125, -5.539 ], [ -156.3267, -0.5958 ], [ -149.5884, 1.5445 ], [ -138.4378, 1.8929 ] ], [ [ 176.4648, 6.5294 ], [ 177.6738, 1.7647 ], [ 180.0, 0.990170675229708 ] ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Vol", "rank": 3, "name": "Volans" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.6116, -66.3961 ], [ 126.4341, -66.1369 ], [ 121.9825, -68.6171 ], [ 109.2076, -67.9572 ], [ 107.1869, -70.4989 ], [ 121.9825, -68.6171 ], [ 135.6116, -66.3961 ] ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Vul", "rank": 3, "name": "Vulpecula" }, "geometry": { "type": "LineString", "coordinates": [ [ -70.9457, 21.3904 ], [ -67.8236, 24.6649 ], [ -61.6346, 24.0796 ], [ -59.7248, 27.7536 ], [ -56.0578, 27.8142 ] ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,39 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "dsos.bright", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "id": "Cr 140", "desig": "Cr 140", "type": "oc", "morph": "III 3", "mag": 3.5, "dim": "60", "bv": null, "br": 0.039810717055349734, "name": null }, "geometry": { "type": "Point", "coordinates": [ 111.12, -31.85 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cr 399", "desig": "Cr 399", "type": "oc", "morph": "", "mag": 3.6, "dim": "60", "bv": null, "br": 0.036307805477010138, "name": "Coathanger" }, "geometry": { "type": "Point", "coordinates": [ -68.445, 20.1 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IC 2602", "desig": "IC 2602", "type": "oc", "morph": "II3m", "mag": 1.9, "dim": "100", "bv": null, "br": 0.17378008287493754, "name": "Southern Pleiades" }, "geometry": { "type": "Point", "coordinates": [ 160.725, -64.4 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PGC 17223", "desig": "LMC", "type": "sd", "morph": "SB(s)m", "mag": 0.4, "dim": "550x170", "bv": null, "br": 0.69183097091893653, "name": "Large Magellanic Cloud" }, "geometry": { "type": "Point", "coordinates": [ 80.895, -69.75 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 6121", "desig": "M 4", "type": "gc", "morph": "IX", "mag": 5.4, "dim": "26.3", "bv": 2.23, "br": 0.0069183097091893627, "name": "Crab Globular Cluster" }, "geometry": { "type": "Point", "coordinates": [ 83.82, -26.533 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 6405", "desig": "M 6", "type": "oc", "morph": "III2p", "mag": 4.2, "dim": "20", "bv": 0.28, "br": 0.020892961308540386, "name": "Butterfly Cluster" }, "geometry": { "type": "Point", "coordinates": [ -94.92, -32.25 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 6475", "desig": "M 7", "type": "oc", "morph": "II2r", "mag": 3.3, "dim": "80", "bv": 0.15, "br": 0.047863009232263852, "name": "Ptolemy's Cluster" }, "geometry": { "type": "Point", "coordinates": [ -91.53, -34.8 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M 8", "desig": "M 8", "type": "sfr", "morph": "", "mag": 5.0, "dim": "45x30", "bv": null, "br": 0.01, "name": "Lagoon Nebula" }, "geometry": { "type": "Point", "coordinates": [ -89.07, -24.383 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 6611", "desig": "M 16", "type": "sfr", "morph": "II3mn; 3, 3, 3", "mag": 6.0, "dim": "7", "bv": 0.58, "br": 0.0039810717055349734, "name": "Eagle Nebula" }, "geometry": { "type": "Point", "coordinates": [ -85.305, -13.783 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 224", "desig": "M 31", "type": "s", "morph": "SA(s)b", "mag": 3.4, "dim": "189x61", "bv": 0.92, "br": 0.043651583224016612, "name": "Andromeda Galaxy" }, "geometry": { "type": "Point", "coordinates": [ 10.68, 41.267 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 598", "desig": "M 33", "type": "s", "morph": "SA(s)cd", "mag": 5.7, "dim": "68.7x41.6", "bv": 0.55, "br": 0.0052480746024977229, "name": "Triangulum Galaxy" }, "geometry": { "type": "Point", "coordinates": [ 23.475, 30.65 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 1976", "desig": "M 42", "type": "sfr", "morph": "EN+RN; 3, 2, 3", "mag": 4.0, "dim": "90x60", "bv": null, "br": 0.025118864315095794, "name": "Orion Nebula" }, "geometry": { "type": "Point", "coordinates": [ 83.82, -5.383 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 2632", "desig": "M 44", "type": "oc", "morph": "II2m", "mag": 3.1, "dim": "95", "bv": 0.36, "br": 0.057543993733715694, "name": "Praesepe" }, "geometry": { "type": "Point", "coordinates": [ 130.005, 19.667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M 45", "desig": "M 45", "type": "oc", "morph": "I3rn", "mag": 1.2, "dim": "100", "bv": null, "br": 0.33113112148259111, "name": "Pleiades" }, "geometry": { "type": "Point", "coordinates": [ 56.745, 24.117 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cr 39", "desig": "Mel 20", "type": "oc", "morph": "III3m", "mag": 1.2, "dim": "185", "bv": null, "br": 0.33113112148259111, "name": "α Persei Cluster" }, "geometry": { "type": "Point", "coordinates": [ 51.075, 48.167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "C 41", "desig": "Mel 25", "type": "oc", "morph": "II3m", "mag": 0.5, "dim": "330", "bv": null, "br": 0.63095734448019325, "name": "Hyades" }, "geometry": { "type": "Point", "coordinates": [ 66.75, 16.0 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Cr 256", "desig": "Mel 111", "type": "oc", "morph": "III3r", "mag": 1.8, "dim": "275", "bv": null, "br": 0.19054607179632474, "name": "Coma Star Cluster" }, "geometry": { "type": "Point", "coordinates": [ -173.73, 26.117 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 104", "desig": "47 Tuc", "type": "gc", "morph": "III", "mag": 4.0, "dim": "30.9", "bv": 1.69, "br": 0.025118864315095794, "name": "47 Tuc" }, "geometry": { "type": "Point", "coordinates": [ 6.03, -72.08 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 869", "desig": "h Per", "type": "oc", "morph": "I3r", "mag": 3.8, "dim": "30", "bv": 0.5, "br": 0.030199517204020161, "name": "h Persei" }, "geometry": { "type": "Point", "coordinates": [ 34.75, 57.128 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 884", "desig": "χ Per", "type": "oc", "morph": "I3r", "mag": 3.8, "dim": "30", "bv": 0.6, "br": 0.030199517204020161, "name": "χ Persei" }, "geometry": { "type": "Point", "coordinates": [ 35.13, 57.13 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 2244", "desig": "NGC 2244", "type": "oc", "morph": "II3p", "mag": 4.8, "dim": "24", "bv": 0.46, "br": 0.012022644346174132, "name": "Rosette Nebula" }, "geometry": { "type": "Point", "coordinates": [ 97.98, 4.95 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 2264", "desig": "NGC 2264", "type": "sfr", "morph": "III3mn; 3, 2, 3", "mag": 3.9, "dim": "20", "bv": null, "br": 0.027542287033381661, "name": "Fox Fur Nebula" }, "geometry": { "type": "Point", "coordinates": [ 100.245, 9.9 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 2362", "desig": "NGC 2362", "type": "oc", "morph": "I3p", "mag": 4.1, "dim": "8", "bv": null, "br": 0.022908676527677734, "name": "τ CMa Cluster" }, "geometry": { "type": "Point", "coordinates": [ 109.68, -24.95 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 2451", "desig": "NGC 2451", "type": "oc", "morph": "", "mag": 2.8, "dim": "50", "bv": 0.54, "br": 0.075857757502918399, "name": "Stinging Scorpion Cluster" }, "geometry": { "type": "Point", "coordinates": [ 116.325, -37.967 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 2516", "desig": "NGC 2516", "type": "oc", "morph": "I3r", "mag": 3.8, "dim": "21", "bv": 0.04, "br": 0.030199517204020161, "name": "Diamond Cluster" }, "geometry": { "type": "Point", "coordinates": [ 119.52, -60.75 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 3372", "desig": "η Car", "type": "en", "morph": "", "mag": 1.0, "dim": "120x120", "bv": null, "br": 0.3981071705534972, "name": "η Car Nebula" }, "geometry": { "type": "Point", "coordinates": [ 161.28, -59.867 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 3532", "desig": "NGC 3532", "type": "oc", "morph": "II1m", "mag": 3.0, "dim": "50", "bv": 0.28, "br": 0.063095734448019331, "name": "Wishing Well Cluster" }, "geometry": { "type": "Point", "coordinates": [ 166.413, -58.753 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 5139", "desig": "ω Cen", "type": "gc", "morph": "VIII", "mag": 3.9, "dim": "36.3", "bv": 0.79, "br": 0.027542287033381661, "name": "ω Cen Cluster" }, "geometry": { "type": "Point", "coordinates": [ -158.295, -47.483 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 6231", "desig": "NGC 6231", "type": "oc", "morph": "I3p", "mag": 2.6, "dim": "15", "bv": 0.23, "br": 0.091201083935590968, "name": "False Comet Nebula" }, "geometry": { "type": "Point", "coordinates": [ -106.455, -41.817 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC 292", "desig": "SMC", "type": "i", "morph": "dIrr", "mag": 2.3, "dim": "319x205", "bv": 0.59, "br": 0.12022644346174131, "name": "Small Magellanic Cloud" }, "geometry": { "type": "Point", "coordinates": [ 13.155, -72.8 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IC 2391", "desig": "IC 2391", "type": "oc", "morph": "II3p", "mag": 2.5, "dim": "60", "bv": null, "br": 0.1, "name": "ο Vel Cluster" }, "geometry": { "type": "Point", "coordinates": [ 130.133, -53.033 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "GC", "desig": "GalCtr", "type": "pos", "morph": "", "mag": 1.0, "dim": "60", "bv": null, "br": 0.3981071705534972, "name": null }, "geometry": { "type": "Point", "coordinates": [ -93.5959, -28.9362 ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,322 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "lg", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "id": "WLM", "name": "WLM", "desig": "DDO 221", "mag": 11.0, "dim": "11.5x4.0", "type": "IBm V-VI", "sub": "LG", "pop": "", "str": "", "br": 3.9810717055349695e-05 }, "geometry": { "type": "Point", "coordinates": [ 0.4921, -15.4608 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXVIII", "name": "Andromeda XVIII", "desig": "", "mag": 16.0, "dim": "1.8", "type": "dSph", "sub": "M31?", "pop": "", "str": "", "br": 3.9810717055349692e-07 }, "geometry": { "type": "Point", "coordinates": [ 0.5604, 45.0889 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TucanaIV", "name": "Tucana IV", "desig": "", "mag": 14.9, "dim": "11.8x7.1", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 1.0964781961431851e-06 }, "geometry": { "type": "Point", "coordinates": [ 0.7254, -60.8514 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXX", "name": "Andromeda XX", "desig": "", "mag": 18.2, "dim": "1.06", "type": "UFD", "sub": "M31", "pop": "", "str": "", "br": 5.2480746024977338e-08 }, "geometry": { "type": "Point", "coordinates": [ 1.8779, 35.1322 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXIX", "name": "Andromeda XIX", "desig": "", "mag": 15.6, "dim": "12.4", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 5.7543993733715665e-07 }, "geometry": { "type": "Point", "coordinates": [ 4.8838, 35.0436 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IC10", "name": "IC 10", "desig": "", "mag": 10.3, "dim": "6.8x5.9", "type": "IBm V-VI", "sub": "M31?", "pop": "", "str": "", "br": 7.5857757502918358e-05 }, "geometry": { "type": "Point", "coordinates": [ 5.0721, 59.3039 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXVI", "name": "Andromeda XXVI", "desig": "", "mag": 17.3, "dim": "1.0", "type": "dSph", "sub": "M31", "pop": "GP", "str": "", "br": 1.2022644346174132e-07 }, "geometry": { "type": "Point", "coordinates": [ 5.94, 47.9161 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC104", "name": "NGC 104", "desig": "47 Tuc", "mag": 4.0, "dim": "50.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.025118864315095794 }, "geometry": { "type": "Point", "coordinates": [ 6.0217, -72.0808 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC121", "name": "NGC 121", "desig": "", "mag": 11.2, "dim": "3.1", "type": "GC", "sub": "MW", "pop": "", "str": "Mag", "br": 3.3113112148259144e-05 }, "geometry": { "type": "Point", "coordinates": [ 6.7013, -71.5356 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CetusI", "name": "Cetus I", "desig": "KKS 1", "mag": 14.4, "dim": "5.0x4.3", "type": "dSph", "sub": "LG", "pop": "", "str": "", "br": 1.7378008287493763e-06 }, "geometry": { "type": "Point", "coordinates": [ 6.5458, -11.0444 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXV", "name": "Andromeda XXV", "desig": "", "mag": 14.8, "dim": "3.0", "type": "dSph", "sub": "M31", "pop": "GP", "str": "", "br": 1.2022644346174132e-06 }, "geometry": { "type": "Point", "coordinates": [ 7.5371, 46.8519 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC147", "name": "NGC 147", "desig": "DDO 3", "mag": 10.5, "dim": "13.2x7.8", "type": "dE5", "sub": "M31", "pop": "GP N", "str": "147?", "br": 6.3095734448019293e-05 }, "geometry": { "type": "Point", "coordinates": [ 8.3004, 48.5089 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "DES1", "name": "DES 1", "desig": "", "mag": 16.7, "dim": "0.39", "type": "GC", "sub": "MW", "pop": "YH", "str": "", "br": 2.0892961308540409e-07 }, "geometry": { "type": "Point", "coordinates": [ 8.4988, -49.0389 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaIII", "name": "Andromeda III", "desig": "KK 5", "mag": 15.0, "dim": "4.5x3.0", "type": "dSph", "sub": "M31", "pop": "GP", "str": "", "br": 9.9999999999999995e-07 }, "geometry": { "type": "Point", "coordinates": [ 8.8908, 36.4978 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CassiopeiaIII", "name": "Cassiopeia III", "desig": "Andromeda XXXII", "mag": 12.1, "dim": "", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 1.445439770745928e-05 }, "geometry": { "type": "Point", "coordinates": [ 8.9975, 51.5597 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CassiopeiaII", "name": "Cassiopeia II", "desig": "Andromeda XXX", "mag": 16.2, "dim": "", "type": "dSph", "sub": "M31", "pop": "GP", "str": "N147?", "br": 3.3113112148259143e-07 }, "geometry": { "type": "Point", "coordinates": [ 9.1454, 49.6467 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXVII", "name": "Andromeda XVII", "desig": "", "mag": 16.0, "dim": "1.1x0.9", "type": "dSph", "sub": "M31", "pop": "GP", "str": "", "br": 3.9810717055349692e-07 }, "geometry": { "type": "Point", "coordinates": [ 9.2792, 44.3222 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXVII", "name": "Andromeda XXVII", "desig": "", "mag": 16.7, "dim": "1.8", "type": "dSph", "sub": "M31", "pop": "GP", "str": "", "br": 2.0892961308540409e-07 }, "geometry": { "type": "Point", "coordinates": [ 9.3629, 45.3869 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC185", "name": "NGC 185", "desig": "", "mag": 10.1, "dim": "11.7x10.0", "type": "dE3", "sub": "M31", "pop": "GP", "str": "N147?", "br": 9.1201083935590964e-05 }, "geometry": { "type": "Point", "coordinates": [ 9.7417, 48.3375 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M110", "name": "M110", "desig": "NGC 205", "mag": 8.9, "dim": "21.9x11.0", "type": "dE5/p", "sub": "M31", "pop": "", "str": "", "br": 0.00027542287033381662 }, "geometry": { "type": "Point", "coordinates": [ 10.0921, 41.6853 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaVIII", "name": "Andromeda VIII", "desig": "M31 part", "mag": 9.1, "dim": "45x10", "type": "dSph pec:", "sub": "M31", "pop": "", "str": "", "br": 0.00022908676527677748 }, "geometry": { "type": "Point", "coordinates": [ 10.525, 40.6167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaIV", "name": "Andromeda IV", "desig": "", "mag": 16.6, "dim": "1.3x1.0", "type": "dIrr:", "sub": "??", "pop": "", "str": "", "br": 2.29086765276777e-07 }, "geometry": { "type": "Point", "coordinates": [ 10.6346, 40.5719 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M32", "name": "M32", "desig": "NGC 221", "mag": 9.0, "dim": "8.7x6.5", "type": "cE2", "sub": "M31", "pop": "", "str": "", "br": 0.00025118864315095795 }, "geometry": { "type": "Point", "coordinates": [ 10.6742, 40.8653 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M31", "name": "M31", "desig": "NGC 224", "mag": 4.4, "dim": "190x60", "type": "SAb II", "sub": "M31", "pop": "", "str": "", "br": 0.017378008287493744 }, "geometry": { "type": "Point", "coordinates": [ 10.6846, 41.2692 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaI", "name": "Andromeda I", "desig": "KK 8", "mag": 13.6, "dim": "2.5x2.5", "type": "dSph/dE3", "sub": "M31", "pop": "GP", "str": "", "br": 3.6307805477010175e-06 }, "geometry": { "type": "Point", "coordinates": [ 11.4158, 38.0411 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXI", "name": "Andromeda XI", "desig": "", "mag": 17.2, "dim": "0.68", "type": "UFD", "sub": "M31", "pop": "GP", "str": "", "br": 1.3182567385564074e-07 }, "geometry": { "type": "Point", "coordinates": [ 11.5875, 33.8061 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXII", "name": "Andromeda XII", "desig": "", "mag": 18.1, "dim": "0.55", "type": "UFD", "sub": "M31", "pop": "GP", "str": "", "br": 5.7543993733715665e-08 }, "geometry": { "type": "Point", "coordinates": [ 11.8625, 34.3747 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXIV", "name": "Andromeda XIV", "desig": "", "mag": null, "dim": "", "type": "dSph", "sub": "M31", "pop": "GP", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ 12.8958, 29.6969 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXIII", "name": "Andromeda XIII", "desig": "", "mag": 17.6, "dim": "0.5", "type": "UFD", "sub": "M31", "pop": "GP", "str": "", "br": 9.1201083935590778e-08 }, "geometry": { "type": "Point", "coordinates": [ 12.9625, 33.0044 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SMC", "name": "SMC", "desig": "NGC 292", "mag": 2.7, "dim": "320x185", "type": "SBm V pec", "sub": "MW", "pop": "", "str": "Mag", "br": 0.083176377110267083 }, "geometry": { "type": "Point", "coordinates": [ 13.1867, -72.8286 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC288", "name": "NGC 288", "desig": "", "mag": 8.1, "dim": "13.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E (R)", "br": 0.00057543993733715718 }, "geometry": { "type": "Point", "coordinates": [ 13.1979, -26.59 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaIX", "name": "Andromeda IX", "desig": "", "mag": 16.1, "dim": "5.0", "type": "dSph", "sub": "M31", "pop": "GP", "str": "", "br": 3.63078054770101e-07 }, "geometry": { "type": "Point", "coordinates": [ 13.2129, 43.1969 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXVI", "name": "Andromeda XVI", "desig": "", "mag": 14.4, "dim": "0.5", "type": "dSph", "sub": "M31", "pop": "GP", "str": "", "br": 1.7378008287493763e-06 }, "geometry": { "type": "Point", "coordinates": [ 14.8742, 32.3767 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SculptorI", "name": "Sculptor I", "desig": "", "mag": 10.1, "dim": "39.8x30.9", "type": "dSph", "sub": "MW", "pop": "", "str": "FLS", "br": 9.1201083935590964e-05 }, "geometry": { "type": "Point", "coordinates": [ 15.0388, -33.7092 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC362", "name": "NGC 362", "desig": "", "mag": 6.4, "dim": "14.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "G-E (R)", "br": 0.002754228703338166 }, "geometry": { "type": "Point", "coordinates": [ 15.8096, -70.8483 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LGS3", "name": "LGS 3", "desig": "Pisces I", "mag": 14.2, "dim": "2x2", "type": "dIrr/dSph", "sub": "M31?", "pop": "M33?", "str": "", "br": 2.0892961308540407e-06 }, "geometry": { "type": "Point", "coordinates": [ 15.9792, 21.885 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IC1613", "name": "IC 1613", "desig": "DDO 8", "mag": 9.9, "dim": "16.2x14.5", "type": "IBm V-VI", "sub": "M31?", "pop": "", "str": "", "br": 0.00010964781961431851 }, "geometry": { "type": "Point", "coordinates": [ 16.1992, 2.1178 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaX", "name": "Andromeda X", "desig": "", "mag": 16.1, "dim": "7.0", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 3.63078054770101e-07 }, "geometry": { "type": "Point", "coordinates": [ 16.6404, 44.8044 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaV", "name": "Andromeda V", "desig": "", "mag": 15.9, "dim": "2.0x1.5", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 4.3651583224016567e-07 }, "geometry": { "type": "Point", "coordinates": [ 17.5713, 47.6281 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXV", "name": "Andromeda XV", "desig": "", "mag": 14.6, "dim": "0.7", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 1.4454397707459279e-06 }, "geometry": { "type": "Point", "coordinates": [ 18.5779, 38.1175 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaII", "name": "Andromeda II", "desig": "KK 12", "mag": 13.5, "dim": "3.6x2.5", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 3.9810717055349691e-06 }, "geometry": { "type": "Point", "coordinates": [ 19.1242, 33.4192 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CetusII", "name": "Cetus II", "desig": "", "mag": 17.4, "dim": "3.8", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 1.0964781961431874e-07 }, "geometry": { "type": "Point", "coordinates": [ 19.4733, -17.4203 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXIV", "name": "Andromeda XXIV", "desig": "", "mag": 16.3, "dim": "2.1", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 3.0199517204020128e-07 }, "geometry": { "type": "Point", "coordinates": [ 19.625, 46.3661 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXII", "name": "Andromeda XXII", "desig": "(Tri I)", "mag": 18.0, "dim": "1.88", "type": "UFD", "sub": "M31", "pop": "M33?", "str": "", "br": 6.3095734448019296e-08 }, "geometry": { "type": "Point", "coordinates": [ 21.9167, 28.0903 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXIII", "name": "Andromeda XXIII", "desig": "", "mag": 14.2, "dim": "4.6", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 2.0892961308540407e-06 }, "geometry": { "type": "Point", "coordinates": [ 22.3413, 38.7189 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M33", "name": "M33", "desig": "NGC 598", "mag": 6.3, "dim": "70.8x41.7", "type": "SAcd III-IV", "sub": "M31?", "pop": "", "str": "", "br": 0.0030199517204020161 }, "geometry": { "type": "Point", "coordinates": [ 23.4621, 30.4936 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PhenixI", "name": "Phenix I", "desig": "ESO 245-7", "mag": 13.1, "dim": "4.9x4.1", "type": "IAm V-VI", "sub": "MW?", "pop": "", "str": "", "br": 5.7543993733715667e-06 }, "geometry": { "type": "Point", "coordinates": [ 27.7763, -44.4447 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "GaiaII", "name": "Gaia II", "desig": "", "mag": 16.7, "dim": "3.8", "type": "GC", "sub": "MW", "pop": "YH", "str": "", "br": 2.0892961308540409e-07 }, "geometry": { "type": "Point", "coordinates": [ 28.1242, 53.04 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Whiting1", "name": "Whiting 1", "desig": "", "mag": 15.0, "dim": "1.2x1.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Sag", "br": 9.9999999999999995e-07 }, "geometry": { "type": "Point", "coordinates": [ 30.7367, -3.2528 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CetusIII", "name": "Cetus III", "desig": "", "mag": 19.5, "dim": "2.5", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 1.5848931924611143e-08 }, "geometry": { "type": "Point", "coordinates": [ 31.3308, -4.27 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TriangulumII", "name": "Triangulum II", "desig": "Laevens 2", "mag": 15.6, "dim": "7.8x6.2", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 5.7543993733715665e-07 }, "geometry": { "type": "Point", "coordinates": [ 33.3225, 36.1783 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SegueII", "name": "Segue II", "desig": "", "mag": 15.2, "dim": "6.8", "type": "UFD", "sub": "MW", "pop": "", "str": "Sag? TriAnd?", "br": 8.3176377110267087e-07 }, "geometry": { "type": "Point", "coordinates": [ 34.8167, 20.1753 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "EridanusIII", "name": "Eridanus III", "desig": "", "mag": 18.4, "dim": "1.1x0.8", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 4.3651583224016652e-08 }, "geometry": { "type": "Point", "coordinates": [ 35.6896, -52.2836 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "DESJ0225+0304", "name": "DES J0225+0304", "desig": "", "mag": 16.0, "dim": "5.4", "type": "GC/UFD", "sub": "MW", "pop": "", "str": "Sag?", "br": 3.9810717055349692e-07 }, "geometry": { "type": "Point", "coordinates": [ 36.4267, 3.0694 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "FSR584", "name": "FSR 584", "desig": "", "mag": null, "dim": "11", "type": "GC", "sub": "MW", "pop": "OH", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ 36.8125, 61.6244 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HydrusI", "name": "Hydrus I", "desig": "", "mag": 12.5, "dim": "14.8", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag", "br": 1.0000000000000001e-05 }, "geometry": { "type": "Point", "coordinates": [ 37.3892, -79.3089 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "FornaxI", "name": "Fornax I", "desig": "ESO 356-4", "mag": 9.3, "dim": "17.0x12.6", "type": "dSph", "sub": "MW", "pop": "", "str": "Mag", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ 39.9971, -34.4492 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HorologiumI", "name": "Horologium I", "desig": "", "mag": 16.8, "dim": "2.6x1.8", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag", "br": 1.9054607179632443e-07 }, "geometry": { "type": "Point", "coordinates": [ 43.8858, -54.1189 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXXIII", "name": "Andromeda XXXIII", "desig": "Perseus I", "mag": 14.1, "dim": "", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 2.2908676527677747e-06 }, "geometry": { "type": "Point", "coordinates": [ 45.3483, 40.9883 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC1261", "name": "NGC 1261", "desig": "", "mag": 8.3, "dim": "6.8", "type": "GC", "sub": "MW", "pop": "YH", "str": "G-E", "br": 0.00047863009232263805 }, "geometry": { "type": "Point", "coordinates": [ 48.0638, -55.2169 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HorologiumII", "name": "Horologium II", "desig": "", "mag": 16.9, "dim": "4.2", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 1.7378008287493765e-07 }, "geometry": { "type": "Point", "coordinates": [ 49.1338, -50.0181 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar1", "name": "Palomar 1", "desig": "Pal 1", "mag": 13.2, "dim": "2.8", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 5.2480746024977341e-06 }, "geometry": { "type": "Point", "coordinates": [ 53.3458, 79.5806 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "ReticulumII", "name": "Reticulum II", "desig": "", "mag": 15.4, "dim": "7.2x3.0", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 6.918309709189363e-07 }, "geometry": { "type": "Point", "coordinates": [ 53.9254, -54.0492 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "EridanusII", "name": "Eridanus II", "desig": "", "mag": 17.0, "dim": "3.1x1.9", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 1.5848931924611141e-07 }, "geometry": { "type": "Point", "coordinates": [ 56.0875, -43.5333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "ReticulumIII", "name": "Reticulum III", "desig": "", "mag": 16.6, "dim": "4.8", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag??", "br": 2.29086765276777e-07 }, "geometry": { "type": "Point", "coordinates": [ 56.3546, -60.45 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AM1", "name": "AM 1", "desig": "E1", "mag": 15.7, "dim": "0.5", "type": "GC", "sub": "MW", "pop": "YH", "str": "FLS", "br": 5.2480746024977339e-07 }, "geometry": { "type": "Point", "coordinates": [ 58.7613, -49.6144 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UGCA86", "name": "UGCA 86", "desig": "", "mag": 13.5, "dim": "5.0x3.1", "type": "Im V-VI:", "sub": "LG??", "pop": "", "str": "", "br": 3.9810717055349691e-06 }, "geometry": { "type": "Point", "coordinates": [ 59.9513, 67.1386 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Eridanus", "name": "Eridanus", "desig": "", "mag": 14.7, "dim": "1.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "FLS", "br": 1.3182567385564074e-06 }, "geometry": { "type": "Point", "coordinates": [ 66.1854, -21.1869 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UGCA92", "name": "UGCA 92", "desig": "", "mag": 13.8, "dim": "2.0x1.0", "type": "Im V-VI:", "sub": "LG??", "pop": "", "str": "", "br": 3.0199517204020129e-06 }, "geometry": { "type": "Point", "coordinates": [ 68.0204, 63.6136 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PictorI", "name": "Pictor I", "desig": "", "mag": 17.7, "dim": "1.8x1.0", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag??", "br": 8.3176377110267087e-08 }, "geometry": { "type": "Point", "coordinates": [ 70.9475, -50.2831 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar2", "name": "Palomar 2", "desig": "Pal 2", "mag": 13.0, "dim": "2.2", "type": "GC", "sub": "MW", "pop": "YH", "str": "G-E", "br": 6.3095734448019296e-06 }, "geometry": { "type": "Point", "coordinates": [ 71.5246, 31.3808 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC1818", "name": "NGC 1818", "desig": "", "mag": 9.7, "dim": "3.4", "type": "GC", "sub": "MW", "pop": "", "str": "Mag", "br": 0.00013182567385564074 }, "geometry": { "type": "Point", "coordinates": [ 76.0575, -66.4339 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC1846", "name": "NGC 1846", "desig": "", "mag": 11.5, "dim": "3.8", "type": "GC", "sub": "MW", "pop": "", "str": "Mag", "br": 2.5118864315095822e-05 }, "geometry": { "type": "Point", "coordinates": [ 76.8954, -67.4592 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC1854", "name": "NGC 1854", "desig": "", "mag": 10.4, "dim": "2.3", "type": "GC", "sub": "MW", "pop": "", "str": "Mag", "br": 6.9183097091893625e-05 }, "geometry": { "type": "Point", "coordinates": [ 77.3338, -68.8481 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC1851", "name": "NGC 1851", "desig": "", "mag": 7.1, "dim": "12.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E (N)", "br": 0.001445439770745928 }, "geometry": { "type": "Point", "coordinates": [ 78.5263, -40.0472 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC1868", "name": "NGC 1868", "desig": "", "mag": 11.6, "dim": "3.9", "type": "GC", "sub": "MW", "pop": "", "str": "Mag", "br": 2.2908676527677749e-05 }, "geometry": { "type": "Point", "coordinates": [ 78.65, -63.955 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LMC", "name": "LMC", "desig": "", "mag": 0.9, "dim": "645x550", "type": "SBm V", "sub": "MW", "pop": "", "str": "Mag", "br": 0.43651583224016599 }, "geometry": { "type": "Point", "coordinates": [ 80.8938, -69.7561 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M79", "name": "M79", "desig": "NGC 1904", "mag": 7.7, "dim": "9.6", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 0.00083176377110267088 }, "geometry": { "type": "Point", "coordinates": [ 81.0442, -24.5242 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "ColumbaI", "name": "Columba I", "desig": "Col 1", "mag": 16.8, "dim": "3.8", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 1.9054607179632443e-07 }, "geometry": { "type": "Point", "coordinates": [ 82.8588, -28.0297 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CarinaI", "name": "Carina I", "desig": "Car 1", "mag": 11.3, "dim": "23.4x15.5", "type": "dSph", "sub": "MW", "pop": "", "str": "Mag", "br": 3.0199517204020131e-05 }, "geometry": { "type": "Point", "coordinates": [ 100.4029, -50.9661 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PictorII", "name": "Pictor II", "desig": "Pic II", "mag": 15.1, "dim": "7.2", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 9.1201083935590964e-07 }, "geometry": { "type": "Point", "coordinates": [ 101.18, -59.8969 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "GaiaI", "name": "Gaia I", "desig": "", "mag": 18.4, "dim": "12.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "", "br": 4.3651583224016652e-08 }, "geometry": { "type": "Point", "coordinates": [ 101.47, -16.75 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC2298", "name": "NGC 2298", "desig": "", "mag": 9.3, "dim": "5.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ 102.2467, -36.0053 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CanisMajor I", "name": "Canis Major I", "desig": "CMa I", "mag": null, "dim": "720", "type": "dIrr", "sub": "MW", "pop": "", "str": "CMa", "br": null }, "geometry": { "type": "Point", "coordinates": [ 108.1458, -27.6667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CarinaII", "name": "Carina II", "desig": "Car II", "mag": 13.3, "dim": "17.4", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag", "br": 4.78630092322638e-06 }, "geometry": { "type": "Point", "coordinates": [ 114.1067, -57.9994 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC2419", "name": "NGC 2419", "desig": "", "mag": 10.4, "dim": "4.6", "type": "GC", "sub": "MW", "pop": "OH", "str": "Sag (N)", "br": 6.9183097091893625e-05 }, "geometry": { "type": "Point", "coordinates": [ 114.5354, 38.8819 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CarinaIII", "name": "Carina III", "desig": "Car III", "mag": 14.8, "dim": "7.5", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag", "br": 1.2022644346174132e-06 }, "geometry": { "type": "Point", "coordinates": [ 114.63, -57.8997 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Koposov2", "name": "Koposov 2", "desig": "", "mag": 17.6, "dim": "1.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Sag?", "br": 9.1201083935590778e-08 }, "geometry": { "type": "Point", "coordinates": [ 119.5708, 26.255 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UrsaMajor II", "name": "Ursa Major II", "desig": "UMa II", "mag": 14.3, "dim": "30x15", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 1.9054607179632443e-06 }, "geometry": { "type": "Point", "coordinates": [ 132.875, 63.13 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HydraI", "name": "Hydra I", "desig": "Hya I", "mag": 17.4, "dim": "", "type": "UFD", "sub": "MW", "pop": "", "str": "CMa?", "br": 1.0964781961431874e-07 }, "geometry": { "type": "Point", "coordinates": [ 133.865, 3.6211 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pyxis", "name": "Pyxis", "desig": "", "mag": 12.9, "dim": "4.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "HE", "br": 6.9183097091893625e-06 }, "geometry": { "type": "Point", "coordinates": [ 136.9908, -37.2214 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC2808", "name": "NGC 2808", "desig": "", "mag": 6.2, "dim": "14.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E (N)", "br": 0.0033113112148259109 }, "geometry": { "type": "Point", "coordinates": [ 138.0108, -64.8631 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UGC4879", "name": "UGC 4879", "desig": "VV 124", "mag": 13.8, "dim": "1.7x1.3", "type": "IAm", "sub": "LG??", "pop": "", "str": "", "br": 3.0199517204020129e-06 }, "geometry": { "type": "Point", "coordinates": [ 139.0092, 52.84 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "E3", "name": "E 3", "desig": "", "mag": 11.4, "dim": "10.0", "type": "GC", "sub": "MW", "pop": "", "str": "Hel? MD?", "br": 2.7542287033381633e-05 }, "geometry": { "type": "Point", "coordinates": [ 140.2471, -77.2825 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LeoT", "name": "Leo T", "desig": "", "mag": 16.0, "dim": "1.4x1.4", "type": "UFD", "sub": "MW?", "pop": "", "str": "", "br": 3.9810717055349692e-07 }, "geometry": { "type": "Point", "coordinates": [ 143.7225, 17.0514 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AntliaII", "name": "Antlia II", "desig": "Ant II", "mag": 12.0, "dim": "150", "type": "dSph", "sub": "MW", "pop": "", "str": "", "br": 1.5848931924611141e-05 }, "geometry": { "type": "Point", "coordinates": [ 143.8867, -36.7672 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AntliaB", "name": "Antlia B", "desig": "Ant B", "mag": 15.9, "dim": "1.4", "type": "dSph", "sub": "N3109", "pop": "", "str": "", "br": 4.3651583224016567e-07 }, "geometry": { "type": "Point", "coordinates": [ 147.2338, -25.99 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LeoA", "name": "Leo A", "desig": "DDO 69", "mag": 12.9, "dim": "5.1x3.1", "type": "IBm V-VI", "sub": "LG", "pop": "", "str": "", "br": 6.9183097091893625e-06 }, "geometry": { "type": "Point", "coordinates": [ 149.86, 30.7464 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SextansB", "name": "Sextans B", "desig": "DDO 70", "mag": 11.9, "dim": "5.1x3.5", "type": "IBm V-VI", "sub": "N3109", "pop": "", "str": "", "br": 1.7378008287493764e-05 }, "geometry": { "type": "Point", "coordinates": [ 150.0004, 5.3322 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC3109", "name": "NGC 3109", "desig": "DDO 236", "mag": 10.4, "dim": "19.1x3.7", "type": "SBm V", "sub": "N3109", "pop": "", "str": "", "br": 6.9183097091893625e-05 }, "geometry": { "type": "Point", "coordinates": [ 150.7788, -26.1594 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AntliaA", "name": "Antlia A", "desig": "Ant A", "mag": 16.2, "dim": "2.0x1.5", "type": "IABm V-VI", "sub": "N3109", "pop": "", "str": "", "br": 3.3113112148259143e-07 }, "geometry": { "type": "Point", "coordinates": [ 151.0171, -27.3311 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar3", "name": "Palomar 3", "desig": "Sextans C", "mag": 14.3, "dim": "1.6", "type": "GC", "sub": "MW", "pop": "YH", "str": "FLS", "br": 1.9054607179632443e-06 }, "geometry": { "type": "Point", "coordinates": [ 151.3808, 0.0714 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SegueI", "name": "Segue I", "desig": "", "mag": 14.7, "dim": "4.5x3.1", "type": "UFD", "sub": "MW", "pop": "", "str": "FLS? Sag?", "br": 1.3182567385564074e-06 }, "geometry": { "type": "Point", "coordinates": [ 151.7667, 16.0819 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LeoI", "name": "Leo I", "desig": "DDO 74", "mag": 11.2, "dim": "9.8x7.4", "type": "dSph", "sub": "MW", "pop": "", "str": "FLS", "br": 3.3113112148259144e-05 }, "geometry": { "type": "Point", "coordinates": [ 152.1171, 12.3064 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SextansA", "name": "Sextans A", "desig": "DDO 75", "mag": 11.9, "dim": "5.9x4.9", "type": "IBm V-VI", "sub": "N3109", "pop": "", "str": "", "br": 1.7378008287493764e-05 }, "geometry": { "type": "Point", "coordinates": [ 152.7533, -4.6928 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SextansI", "name": "Sextans I", "desig": "", "mag": 12.0, "dim": "30.0x12.0", "type": "dSph", "sub": "MW", "pop": "", "str": "FLS", "br": 1.5848931924611141e-05 }, "geometry": { "type": "Point", "coordinates": [ 153.2621, -1.6147 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC3201", "name": "NGC 3201", "desig": "", "mag": 6.8, "dim": "20.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Seq (R)", "br": 0.0019054607179632482 }, "geometry": { "type": "Point", "coordinates": [ 154.4033, -46.4111 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LeoP", "name": "Leo P", "desig": "", "mag": 16.9, "dim": "", "type": "dSph", "sub": "LG?", "pop": "", "str": "", "br": 1.7378008287493765e-07 }, "geometry": { "type": "Point", "coordinates": [ 155.4379, 18.0881 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UrsaMajor I", "name": "Ursa Major I", "desig": "UMa I", "mag": 15.3, "dim": "23.0x12.0", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 7.5857757502918357e-07 }, "geometry": { "type": "Point", "coordinates": [ 158.72, 51.92 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Willman1", "name": "Willman 1", "desig": "", "mag": 15.3, "dim": "4.6", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 7.5857757502918357e-07 }, "geometry": { "type": "Point", "coordinates": [ 162.3375, 51.05 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LeoII", "name": "Leo II", "desig": "DDO 93", "mag": 12.6, "dim": "12.0x11.0", "type": "dSph pec", "sub": "MW", "pop": "", "str": "FLS", "br": 9.1201083935590964e-06 }, "geometry": { "type": "Point", "coordinates": [ 168.37, 22.1517 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar4", "name": "Palomar 4", "desig": "Pal 4", "mag": 17.1, "dim": "1.3", "type": "GC", "sub": "MW", "pop": "YH", "str": "FLS", "br": 1.445439770745925e-07 }, "geometry": { "type": "Point", "coordinates": [ 172.32, 28.9736 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LeoV", "name": "Leo V", "desig": "", "mag": 16.9, "dim": "5.2", "type": "UFD", "sub": "MW", "pop": "", "str": "FLS?", "br": 1.7378008287493765e-07 }, "geometry": { "type": "Point", "coordinates": [ 172.79, 2.22 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LeoIV", "name": "Leo IV", "desig": "", "mag": 15.9, "dim": "3.3x2.8", "type": "UFD", "sub": "MW", "pop": "", "str": "FLS", "br": 4.3651583224016567e-07 }, "geometry": { "type": "Point", "coordinates": [ 173.2375, 0.5333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Laevens1", "name": "Laevens 1", "desig": "Crater", "mag": 17.5, "dim": "0.92", "type": "GC", "sub": "MW", "pop": "YH", "str": "HE", "br": 9.9999999999999995e-08 }, "geometry": { "type": "Point", "coordinates": [ 174.0688, -10.8769 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CraterII", "name": "Crater II", "desig": "Crt II", "mag": 12.2, "dim": "60.0", "type": "dSph", "sub": "MW", "pop": "", "str": "FLS", "br": 1.3182567385564074e-05 }, "geometry": { "type": "Point", "coordinates": [ 177.31, -18.4131 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Koposov1", "name": "Koposov 1", "desig": "", "mag": 14.2, "dim": "1.5", "type": "GC", "sub": "MW", "pop": "YH", "str": "Sag?", "br": 2.0892961308540407e-06 }, "geometry": { "type": "Point", "coordinates": [ 179.8271, 12.26 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "VirgoI", "name": "Virgo I", "desig": "Vir I", "mag": 19.0, "dim": "3.5", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 2.5118864315095821e-08 }, "geometry": { "type": "Point", "coordinates": [ -179.96, 0.68 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC4147", "name": "NGC 4147", "desig": "", "mag": 10.3, "dim": "4.4", "type": "GC", "sub": "MW", "pop": "YH", "str": "G-E", "br": 7.5857757502918358e-05 }, "geometry": { "type": "Point", "coordinates": [ -177.4742, 18.5419 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HydraII", "name": "Hydra II", "desig": "Hya II", "mag": 15.8, "dim": "3.4", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 4.7863009232263798e-07 }, "geometry": { "type": "Point", "coordinates": [ -174.5746, -31.9853 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC4372", "name": "NGC 4372", "desig": "", "mag": 7.2, "dim": "5.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.0013182567385564075 }, "geometry": { "type": "Point", "coordinates": [ -173.5608, -72.6592 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "ComaBerenices I", "name": "Coma Berenices I", "desig": "Com I", "mag": 14.5, "dim": "5.0x2.5", "type": "UFD", "sub": "MW", "pop": "", "str": "FLS Sag?", "br": 1.5848931924611141e-06 }, "geometry": { "type": "Point", "coordinates": [ -173.3525, 23.9042 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CentaurusI", "name": "Centaurus I", "desig": "Cen I", "mag": 15.5, "dim": "4.6", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 6.3095734448019296e-07 }, "geometry": { "type": "Point", "coordinates": [ -170.415, -40.9019 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Rup106", "name": "Rup 106", "desig": "", "mag": 10.9, "dim": "2.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Hel", "br": 4.3651583224016566e-05 }, "geometry": { "type": "Point", "coordinates": [ -170.3325, -51.1503 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M68", "name": "M68", "desig": "NGC 4590", "mag": 7.8, "dim": "11.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Hel", "br": 0.00075857757502918364 }, "geometry": { "type": "Point", "coordinates": [ -170.1333, -26.7428 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CanesVenatici II", "name": "Canes Venatici II", "desig": "CVn II", "mag": 15.1, "dim": "3.0x2.1", "type": "UFD", "sub": "MW", "pop": "", "str": "FLS", "br": 9.1201083935590964e-07 }, "geometry": { "type": "Point", "coordinates": [ -165.7083, 34.3208 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "GR8", "name": "GR 8", "desig": "DDO 155", "mag": 14.7, "dim": "1.1x1.0", "type": "Im V-VI", "sub": "LG??", "pop": "", "str": "", "br": 1.3182567385564074e-06 }, "geometry": { "type": "Point", "coordinates": [ -165.3317, 14.2175 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC4833", "name": "NGC 4833", "desig": "", "mag": 6.9, "dim": "14.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 0.0017378008287493745 }, "geometry": { "type": "Point", "coordinates": [ -165.1042, -70.8747 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M53", "name": "M53", "desig": "NGC 5024", "mag": 7.6, "dim": "13.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Hel", "br": 0.00091201083935590964 }, "geometry": { "type": "Point", "coordinates": [ -161.7696, 18.1692 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5053", "name": "NGC 5053", "desig": "", "mag": 9.5, "dim": "10.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Hel", "br": 0.00015848931924611142 }, "geometry": { "type": "Point", "coordinates": [ -160.8875, 17.6981 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5139", "name": "NGC 5139", "desig": "Omega Cen", "mag": 3.7, "dim": "55.0", "type": "GC", "sub": "MW", "pop": "", "str": "Seq (N) (R)", "br": 0.033113112148259113 }, "geometry": { "type": "Point", "coordinates": [ -158.3087, -47.4769 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CanesVenatici I", "name": "Canes Venatici I", "desig": "CVn I", "mag": 13.9, "dim": "8.4x5.0", "type": "dSph", "sub": "MW", "pop": "", "str": "FLS", "br": 2.7542287033381634e-06 }, "geometry": { "type": "Point", "coordinates": [ -157.9854, 33.5558 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M3", "name": "M3", "desig": "NGC 5272", "mag": 6.2, "dim": "18.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Hel", "br": 0.0033113112148259109 }, "geometry": { "type": "Point", "coordinates": [ -154.4533, 28.3756 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5286", "name": "NGC 5286", "desig": "", "mag": 7.3, "dim": "11.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 0.001202264434617413 }, "geometry": { "type": "Point", "coordinates": [ -153.3896, -51.3733 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AM4", "name": "AM 4", "desig": "", "mag": 15.9, "dim": "3.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Sag", "br": 4.3651583224016567e-07 }, "geometry": { "type": "Point", "coordinates": [ -151.0413, -27.1728 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "BoötesIII", "name": "Boötes III", "desig": "Boö III", "mag": 12.6, "dim": "1.5x0.8", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 9.1201083935590964e-06 }, "geometry": { "type": "Point", "coordinates": [ -150.75, 26.8 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "BoötesII", "name": "Boötes II", "desig": "Boö II", "mag": 15.8, "dim": "8.2", "type": "UFD", "sub": "MW", "pop": "", "str": "Sag?", "br": 4.7863009232263798e-07 }, "geometry": { "type": "Point", "coordinates": [ -150.5, 12.85 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "BoötesI", "name": "Boötes I", "desig": "Boötes I", "mag": 13.6, "dim": "13.0x8.7", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 3.6307805477010175e-06 }, "geometry": { "type": "Point", "coordinates": [ -149.975, 14.5 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5466", "name": "NGC 5466", "desig": "", "mag": 9.0, "dim": "9.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Seq G-E (R)", "br": 0.00025118864315095795 }, "geometry": { "type": "Point", "coordinates": [ -148.6362, 28.5344 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5634", "name": "NGC 5634", "desig": "", "mag": 9.5, "dim": "5.5", "type": "GC", "sub": "MW", "pop": "OH", "str": "Hel G-E?", "br": 0.00015848931924611142 }, "geometry": { "type": "Point", "coordinates": [ -142.5946, -5.9764 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5694", "name": "NGC 5694", "desig": "", "mag": 10.2, "dim": "4.3", "type": "GC", "sub": "MW", "pop": "OH", "str": "HE G-E?", "br": 8.317637711026709e-05 }, "geometry": { "type": "Point", "coordinates": [ -140.0979, -26.5383 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IC4499", "name": "IC 4499", "desig": "", "mag": 9.8, "dim": "8.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Seq", "br": 0.00012022644346174119 }, "geometry": { "type": "Point", "coordinates": [ -134.9229, -82.2136 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Muñoz1", "name": "Muñoz 1", "desig": "", "mag": null, "dim": "3.6", "type": "GC", "sub": "MW", "pop": "", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -134.55, 66.9686 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5824", "name": "NGC 5824", "desig": "", "mag": 9.1, "dim": "7.4", "type": "GC", "sub": "MW", "pop": "OH", "str": "Sag Hel?", "br": 0.00022908676527677748 }, "geometry": { "type": "Point", "coordinates": [ -134.0062, -33.0678 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UrsaMinor I", "name": "Ursa Minor I", "desig": "DDO 199", "mag": 11.9, "dim": "30.2x19.1", "type": "dSph", "sub": "MW", "pop": "", "str": "Mag", "br": 1.7378008287493764e-05 }, "geometry": { "type": "Point", "coordinates": [ -132.7146, 67.2225 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar5", "name": "Palomar 5", "desig": "Pal 5", "mag": 11.8, "dim": "8.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Hel", "br": 1.9054607179632443e-05 }, "geometry": { "type": "Point", "coordinates": [ -130.9779, 0.1114 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5897", "name": "NGC 5897", "desig": "", "mag": 8.5, "dim": "11.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 0.00039810717055349735 }, "geometry": { "type": "Point", "coordinates": [ -130.6479, -21.0103 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M5", "name": "M5", "desig": "NGC 5904", "mag": 5.7, "dim": "3.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Hel G-E?", "br": 0.0052480746024977229 }, "geometry": { "type": "Point", "coordinates": [ -130.3592, 2.0828 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5927", "name": "NGC 5927", "desig": "", "mag": 8.0, "dim": "6.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00063095734448019298 }, "geometry": { "type": "Point", "coordinates": [ -127.9979, -50.6728 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "BoötesIV", "name": "Boötes IV", "desig": "Boö IV", "mag": 17.0, "dim": "15.2", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 1.5848931924611141e-07 }, "geometry": { "type": "Point", "coordinates": [ -126.311, 43.726 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5946", "name": "NGC 5946", "desig": "", "mag": 9.6, "dim": "3.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.0001445439770745928 }, "geometry": { "type": "Point", "coordinates": [ -126.1312, -50.6594 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "ESO224-8", "name": "ESO 224-8", "desig": "BH 176", "mag": 14.0, "dim": "3.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 2.5118864315095823e-06 }, "geometry": { "type": "Point", "coordinates": [ -125.2196, -50.0506 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC5986", "name": "NGC 5986", "desig": "", "mag": 7.5, "dim": "9.6", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.001 }, "geometry": { "type": "Point", "coordinates": [ -123.4854, -37.7861 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "DracoII", "name": "Draco II", "desig": "Laevens 4", "mag": 14.0, "dim": "5.4", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 2.5118864315095823e-06 }, "geometry": { "type": "Point", "coordinates": [ -121.8017, 64.5653 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "FSR1716", "name": "FSR 1716", "desig": "VVV-CL005", "mag": 13.4, "dim": "3", "type": "GC", "sub": "MW", "pop": "OH", "str": "MD", "br": 4.3651583224016566e-06 }, "geometry": { "type": "Point", "coordinates": [ -117.375, -53.7489 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Lynga7", "name": "Lynga 7", "desig": "BH 184", "mag": 7.8, "dim": "2.5", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00075857757502918364 }, "geometry": { "type": "Point", "coordinates": [ -117.2375, -55.3144 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar14", "name": "Palomar 14", "desig": "AvdB", "mag": 14.7, "dim": "2.2", "type": "GC", "sub": "MW", "pop": "YH", "str": "FLS", "br": 1.3182567385564074e-06 }, "geometry": { "type": "Point", "coordinates": [ -117.2296, 14.9581 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M80", "name": "M80", "desig": "NGC 6093", "mag": 7.3, "dim": "10.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.001202264434617413 }, "geometry": { "type": "Point", "coordinates": [ -115.7396, -22.975 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "RLGC1", "name": "RLGC 1", "desig": "", "mag": 10.3, "dim": "1.1", "type": "GC", "sub": "MW", "pop": "OH", "str": "", "br": 7.5857757502918358e-05 }, "geometry": { "type": "Point", "coordinates": [ -115.715, -44.5942 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M4", "name": "M4", "desig": "NGC 6121", "mag": 5.6, "dim": "36.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "LE (R)", "br": 0.0057543993733715727 }, "geometry": { "type": "Point", "coordinates": [ -114.1021, -26.5253 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6101", "name": "NGC 6101", "desig": "", "mag": 9.2, "dim": "5.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Seq", "br": 0.00020892961308540409 }, "geometry": { "type": "Point", "coordinates": [ -113.5475, -72.2017 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6144", "name": "NGC 6144", "desig": "", "mag": 9.0, "dim": "7.4", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa (R)", "br": 0.00025118864315095795 }, "geometry": { "type": "Point", "coordinates": [ -113.1913, -26.0247 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6139", "name": "NGC 6139", "desig": "", "mag": 9.0, "dim": "8.2", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.00025118864315095795 }, "geometry": { "type": "Point", "coordinates": [ -113.0817, -38.8489 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan3", "name": "Terzan 3", "desig": "", "mag": 12.0, "dim": "3.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 1.5848931924611141e-05 }, "geometry": { "type": "Point", "coordinates": [ -112.8329, -35.3536 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HerculesI", "name": "Hercules I", "desig": "Her I", "mag": 14.7, "dim": "8.0x4.0", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 1.3182567385564074e-06 }, "geometry": { "type": "Point", "coordinates": [ -112.2417, 12.7917 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M107", "name": "M107", "desig": "NGC 6171", "mag": 7.9, "dim": "13.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00069183097091893623 }, "geometry": { "type": "Point", "coordinates": [ -111.8671, -13.0536 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "ESO452-SC11", "name": "ESO 452-SC11", "desig": "1636-283", "mag": 12.0, "dim": "1.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 1.5848931924611141e-05 }, "geometry": { "type": "Point", "coordinates": [ -110.1437, -28.3978 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M13", "name": "M13", "desig": "NGC 6205", "mag": 5.8, "dim": "20.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E (R)", "br": 0.0047863009232263854 }, "geometry": { "type": "Point", "coordinates": [ -109.5771, 36.4603 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6229", "name": "NGC 6229", "desig": "", "mag": 9.4, "dim": "4.5", "type": "GC", "sub": "MW", "pop": "YH", "str": "G-E", "br": 0.00017378008287493744 }, "geometry": { "type": "Point", "coordinates": [ -108.2546, 47.5278 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M12", "name": "M12", "desig": "NGC 6218", "mag": 6.7, "dim": "16.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.0020892961308540386 }, "geometry": { "type": "Point", "coordinates": [ -108.1896, -1.9478 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "FSR1735", "name": "FSR 1735", "desig": "", "mag": 12.9, "dim": "0.8", "type": "GC", "sub": "MW", "pop": "", "str": "Koa", "br": 6.9183097091893625e-06 }, "geometry": { "type": "Point", "coordinates": [ -106.9558, -47.0581 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6235", "name": "NGC 6235", "desig": "", "mag": 10.0, "dim": "5.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 0.0001 }, "geometry": { "type": "Point", "coordinates": [ -106.6442, -22.1772 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M10", "name": "M10", "desig": "NGC 6254", "mag": 6.6, "dim": "20.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.0022908676527677745 }, "geometry": { "type": "Point", "coordinates": [ -105.7129, -4.0994 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6256", "name": "NGC 6256", "desig": "", "mag": 11.3, "dim": "4.1", "type": "GC", "sub": "MW", "pop": "BD", "str": "Koa", "br": 3.0199517204020131e-05 }, "geometry": { "type": "Point", "coordinates": [ -105.1142, -37.1214 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar15", "name": "Palomar 15", "desig": "Pal 15", "mag": 14.0, "dim": "3.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 2.5118864315095823e-06 }, "geometry": { "type": "Point", "coordinates": [ -104.99, 0.5419 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M62", "name": "M62", "desig": "NGC 6266", "mag": 6.5, "dim": "15.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.0025118864315095794 }, "geometry": { "type": "Point", "coordinates": [ -104.6967, -30.1136 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M19", "name": "M19", "desig": "NGC 6273", "mag": 6.8, "dim": "17.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.0019054607179632482 }, "geometry": { "type": "Point", "coordinates": [ -104.3425, -26.2681 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6284", "name": "NGC 6284", "desig": "", "mag": 8.8, "dim": "6.2", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 0.00030199517204020131 }, "geometry": { "type": "Point", "coordinates": [ -103.88, -24.7647 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6287", "name": "NGC 6287", "desig": "", "mag": 9.4, "dim": "4.8", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.00017378008287493744 }, "geometry": { "type": "Point", "coordinates": [ -103.7108, -22.7081 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6293", "name": "NGC 6293", "desig": "", "mag": 8.2, "dim": "8.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00052480746024977283 }, "geometry": { "type": "Point", "coordinates": [ -102.4575, -26.5819 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6304", "name": "NGC 6304", "desig": "", "mag": 8.2, "dim": "8.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00052480746024977283 }, "geometry": { "type": "Point", "coordinates": [ -101.3662, -29.4622 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6316", "name": "NGC 6316", "desig": "", "mag": 8.4, "dim": "54", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB (R)", "br": 0.00043651583224016562 }, "geometry": { "type": "Point", "coordinates": [ -100.8446, -28.14 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M92", "name": "M92", "desig": "NGC 6341", "mag": 6.4, "dim": "14.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 0.002754228703338166 }, "geometry": { "type": "Point", "coordinates": [ -100.7196, 43.1364 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6325", "name": "NGC 6325", "desig": "", "mag": 10.3, "dim": "4.1", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 7.5857757502918358e-05 }, "geometry": { "type": "Point", "coordinates": [ -100.5033, -23.7658 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M9", "name": "M9", "desig": "NGC 6333", "mag": 7.7, "dim": "12.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.00083176377110267088 }, "geometry": { "type": "Point", "coordinates": [ -100.2008, -18.5164 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "DracoI", "name": "Draco I", "desig": "DDO 208", "mag": 10.9, "dim": "35.5x24.5", "type": "dSph pec", "sub": "MW", "pop": "", "str": "Mag", "br": 4.3651583224016566e-05 }, "geometry": { "type": "Point", "coordinates": [ -99.9483, 57.9153 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6342", "name": "NGC 6342", "desig": "", "mag": 9.7, "dim": "4.4", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00013182567385564074 }, "geometry": { "type": "Point", "coordinates": [ -99.7075, -19.5872 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6356", "name": "NGC 6356", "desig": "", "mag": 8.3, "dim": "10.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00047863009232263805 }, "geometry": { "type": "Point", "coordinates": [ -99.1042, -17.8131 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6355", "name": "NGC 6355", "desig": "", "mag": 9.1, "dim": "4.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00022908676527677748 }, "geometry": { "type": "Point", "coordinates": [ -99.0058, -26.3536 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6352", "name": "NGC 6352", "desig": "", "mag": 8.0, "dim": "9.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00063095734448019298 }, "geometry": { "type": "Point", "coordinates": [ -98.6283, -48.4228 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IC1257", "name": "IC 1257", "desig": "", "mag": 13.1, "dim": "5.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 5.7543993733715667e-06 }, "geometry": { "type": "Point", "coordinates": [ -98.0063, -7.0931 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan2", "name": "Terzan 2", "desig": "HP 3", "mag": 14.3, "dim": "0.6", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 1.9054607179632443e-06 }, "geometry": { "type": "Point", "coordinates": [ -98.1121, -30.8022 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6366", "name": "NGC 6366", "desig": "", "mag": 9.2, "dim": "13.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00020892961308540409 }, "geometry": { "type": "Point", "coordinates": [ -98.0654, -5.0767 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan4", "name": "Terzan 4", "desig": "HP 4", "mag": 16.0, "dim": "0.7", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 3.9810717055349692e-07 }, "geometry": { "type": "Point", "coordinates": [ -97.3375, -31.5956 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "HP1", "name": "HP 1", "desig": "BH 229", "mag": 11.6, "dim": "1.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 2.2908676527677749e-05 }, "geometry": { "type": "Point", "coordinates": [ -97.2283, -29.9817 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "FSR1758", "name": "FSR 1758", "desig": "", "mag": null, "dim": "1.6", "type": "GC/UFD", "sub": "MW", "pop": "BD", "str": "Seq (N)?", "br": null }, "geometry": { "type": "Point", "coordinates": [ -97.2, -39.8083 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6362", "name": "NGC 6362", "desig": "", "mag": 7.7, "dim": "15.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00083176377110267088 }, "geometry": { "type": "Point", "coordinates": [ -97.0217, -67.0481 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Liller1", "name": "Liller 1", "desig": "", "mag": 16.8, "dim": "12.5", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 1.9054607179632443e-07 }, "geometry": { "type": "Point", "coordinates": [ -96.6479, -33.3889 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6380", "name": "NGC 6380", "desig": "Ton 1", "mag": 11.3, "dim": "3.6", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 3.0199517204020131e-05 }, "geometry": { "type": "Point", "coordinates": [ -96.3833, -39.0692 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "FSR1767", "name": "FSR 1767", "desig": "", "mag": null, "dim": "", "type": "GC", "sub": "MW", "pop": "", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -96.0708, -36.3578 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan1", "name": "Terzan 1", "desig": "HP 2", "mag": 15.9, "dim": "2.4", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 4.3651583224016567e-07 }, "geometry": { "type": "Point", "coordinates": [ -96.0533, -30.4817 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Ton2", "name": "Ton 2", "desig": "Pismis 26", "mag": 12.2, "dim": "2.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "Koa", "br": 1.3182567385564074e-05 }, "geometry": { "type": "Point", "coordinates": [ -95.9562, -38.5533 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6388", "name": "NGC 6388", "desig": "", "mag": 6.7, "dim": "10.4", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB Seq?", "br": 0.0020892961308540386 }, "geometry": { "type": "Point", "coordinates": [ -95.9292, -44.735 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Camargo1107", "name": "Camargo 1107", "desig": "", "mag": null, "dim": "10.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -95.7575, -30.1472 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M14", "name": "M14", "desig": "NGC 6402", "mag": 7.6, "dim": "11.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.00091201083935590964 }, "geometry": { "type": "Point", "coordinates": [ -95.5996, -3.2458 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6401", "name": "NGC 6401", "desig": "", "mag": 9.5, "dim": "4.8", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa Seq?", "br": 0.00015848931924611142 }, "geometry": { "type": "Point", "coordinates": [ -95.3475, -23.9094 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6397", "name": "NGC 6397", "desig": "", "mag": 5.7, "dim": "31.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.0052480746024977229 }, "geometry": { "type": "Point", "coordinates": [ -94.8279, -53.6736 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "VVVCL002", "name": "VVV CL002", "desig": "", "mag": null, "dim": "1.7", "type": "GC", "sub": "MW", "pop": "", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -94.7237, -28.845 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar6", "name": "Palomar 6", "desig": "Pal 6", "mag": 11.6, "dim": "1.2", "type": "GC", "sub": "MW", "pop": "YH", "str": "Koa", "br": 2.2908676527677749e-05 }, "geometry": { "type": "Point", "coordinates": [ -94.0742, -26.2225 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "VVVCL143", "name": "VVV CL143", "desig": "", "mag": null, "dim": "0.8", "type": "GC", "sub": "MW", "pop": "BD", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -93.85, -33.7383 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6426", "name": "NGC 6426", "desig": "", "mag": 11.0, "dim": "4.2", "type": "GC", "sub": "MW", "pop": "YH", "str": "FLS Hel?", "br": 3.9810717055349695e-05 }, "geometry": { "type": "Point", "coordinates": [ -93.7721, 3.1703 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "MilkyWay", "name": "Milky Way", "desig": "Gal.Cntr.", "mag": null, "dim": "", "type": "SABbc I-II", "sub": "MW", "pop": "", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -93.5838, -29.0078 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Camargo1108", "name": "Camargo 1108", "desig": "", "mag": null, "dim": "8.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -93.4825, -30.8647 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Camargo1109", "name": "Camargo 1109", "desig": "", "mag": null, "dim": "7.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -93.1392, -26.6478 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Djorg1", "name": "Djorg 1", "desig": "", "mag": 13.6, "dim": "10.0", "type": "GC", "sub": "MW", "pop": "", "str": "G-E", "br": 3.6307805477010175e-06 }, "geometry": { "type": "Point", "coordinates": [ -93.1321, -33.0656 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan5", "name": "Terzan 5", "desig": "Terzan 11", "mag": 13.9, "dim": "2.4", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB (N)", "br": 2.7542287033381634e-06 }, "geometry": { "type": "Point", "coordinates": [ -92.9796, -24.7792 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6440", "name": "NGC 6440", "desig": "", "mag": 9.2, "dim": "4.4", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00020892961308540409 }, "geometry": { "type": "Point", "coordinates": [ -92.7804, -20.3603 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6441", "name": "NGC 6441", "desig": "", "mag": 7.2, "dim": "9.6", "type": "GC", "sub": "MW", "pop": "BD", "str": "LE", "br": 0.0013182567385564075 }, "geometry": { "type": "Point", "coordinates": [ -92.4462, -37.0514 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "VVVCL150", "name": "VVV CL150", "desig": "", "mag": null, "dim": "0.4", "type": "GC", "sub": "MW", "pop": "BD", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -92.3292, -25.2183 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan6", "name": "Terzan 6", "desig": "HP 5", "mag": 13.9, "dim": "1.4", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 2.7542287033381634e-06 }, "geometry": { "type": "Point", "coordinates": [ -92.3067, -31.2753 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6453", "name": "NGC 6453", "desig": "", "mag": 10.1, "dim": "7.6", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 9.1201083935590964e-05 }, "geometry": { "type": "Point", "coordinates": [ -92.2846, -34.5992 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UKS1", "name": "UKS 1", "desig": "", "mag": 17.3, "dim": "2.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "", "br": 1.2022644346174132e-07 }, "geometry": { "type": "Point", "coordinates": [ -91.3867, -24.1453 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "VVVCL001", "name": "VVV CL001", "desig": "", "mag": null, "dim": "", "type": "GC", "sub": "MW", "pop": "BD", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -91.3229, -24.0147 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Pfleiderer2", "name": "Pfleiderer 2", "desig": "", "mag": 16.3, "dim": "2.5", "type": "GC", "sub": "MW", "pop": "BD", "str": "", "br": 3.0199517204020128e-07 }, "geometry": { "type": "Point", "coordinates": [ -90.3333, -5.075 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6496", "name": "NGC 6496", "desig": "", "mag": 8.5, "dim": "5.6", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00039810717055349735 }, "geometry": { "type": "Point", "coordinates": [ -90.2417, -44.265 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan9", "name": "Terzan 9", "desig": "", "mag": 16.0, "dim": "0.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 3.9810717055349692e-07 }, "geometry": { "type": "Point", "coordinates": [ -89.5883, -26.8397 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Djorg2", "name": "Djorg 2", "desig": "ESO 456-SC38", "mag": 9.9, "dim": "9.9", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00010964781961431851 }, "geometry": { "type": "Point", "coordinates": [ -89.5454, -27.8258 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6517", "name": "NGC 6517", "desig": "", "mag": 10.2, "dim": "4.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 8.317637711026709e-05 }, "geometry": { "type": "Point", "coordinates": [ -89.5392, -8.9589 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan10", "name": "Terzan 10", "desig": "", "mag": 14.9, "dim": "1.5", "type": "GC", "sub": "MW", "pop": "BD", "str": "G-E", "br": 1.0964781961431851e-06 }, "geometry": { "type": "Point", "coordinates": [ -89.2608, -26.0667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6522", "name": "NGC 6522", "desig": "", "mag": 8.3, "dim": "9.4", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00047863009232263805 }, "geometry": { "type": "Point", "coordinates": [ -89.1079, -30.0339 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6535", "name": "NGC 6535", "desig": "", "mag": 10.5, "dim": "3.4", "type": "GC", "sub": "MW", "pop": "OH", "str": "Seq", "br": 6.3095734448019293e-05 }, "geometry": { "type": "Point", "coordinates": [ -89.0388, 0.2969 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6528", "name": "NGC 6528", "desig": "", "mag": 9.6, "dim": "5.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.0001445439770745928 }, "geometry": { "type": "Point", "coordinates": [ -88.7933, -30.0558 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6539", "name": "NGC 6539", "desig": "", "mag": 9.3, "dim": "7.9", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB MD?", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ -88.7925, -7.5858 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6540", "name": "NGC 6540", "desig": "Djorg 3", "mag": 9.3, "dim": "1.5", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB MD?", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ -88.4642, -27.7653 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6544", "name": "NGC 6544", "desig": "", "mag": 7.8, "dim": "9.2", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa G-E?", "br": 0.00075857757502918364 }, "geometry": { "type": "Point", "coordinates": [ -88.1642, -24.9975 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6541", "name": "NGC 6541", "desig": "", "mag": 6.3, "dim": "15.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.0030199517204020161 }, "geometry": { "type": "Point", "coordinates": [ -87.9908, -43.5 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "2MASS-GC01", "name": "2MASS-GC01", "desig": "Hurt 1", "mag": 27.7, "dim": "3.3", "type": "GC", "sub": "MW", "pop": "", "str": "", "br": 8.3176377110267085e-12 }, "geometry": { "type": "Point", "coordinates": [ -87.9092, -19.8297 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "ESO280-SC06", "name": "ESO 280-SC06", "desig": "", "mag": 12.7, "dim": "1.5", "type": "GC", "sub": "MW", "pop": "", "str": "G-E", "br": 8.3176377110267094e-06 }, "geometry": { "type": "Point", "coordinates": [ -87.725, -46.4231 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6553", "name": "NGC 6553", "desig": "", "mag": 8.1, "dim": "9.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB MD?", "br": 0.00057543993733715718 }, "geometry": { "type": "Point", "coordinates": [ -87.6767, -25.9086 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "2MASS-GC02", "name": "2MASS-GC02", "desig": "Hurt 2", "mag": 24.6, "dim": "1.9", "type": "GC", "sub": "MW", "pop": "", "str": "", "br": 1.4454397707459281e-10 }, "geometry": { "type": "Point", "coordinates": [ -87.5979, -20.7789 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6558", "name": "NGC 6558", "desig": "", "mag": 9.3, "dim": "4.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ -87.4267, -31.7639 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IC1276", "name": "IC 1276", "desig": "Palomar 7", "mag": 10.3, "dim": "8.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 7.5857757502918358e-05 }, "geometry": { "type": "Point", "coordinates": [ -87.3158, -7.2075 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan12", "name": "Terzan 12", "desig": "", "mag": 15.6, "dim": "1.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 5.7543993733715665e-07 }, "geometry": { "type": "Point", "coordinates": [ -86.9342, -22.7419 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6569", "name": "NGC 6569", "desig": "", "mag": 8.6, "dim": "6.4", "type": "GC", "sub": "MW", "pop": "OH", "str": "MB MD?", "br": 0.0003630780547701014 }, "geometry": { "type": "Point", "coordinates": [ -86.5883, -31.8269 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "BH261", "name": "BH 261", "desig": "ESO 456-78", "mag": 9.9, "dim": "1.3", "type": "GC", "sub": "MW", "pop": "", "str": "MB MD?", "br": 0.00010964781961431851 }, "geometry": { "type": "Point", "coordinates": [ -86.4762, -28.6356 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Mercer3", "name": "Mercer 3", "desig": "GLIMPSE-C02", "mag": null, "dim": "", "type": "GC", "sub": "MW", "pop": "", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -85.3729, -16.9772 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6584", "name": "NGC 6584", "desig": "", "mag": 8.3, "dim": "6.6", "type": "GC", "sub": "MW", "pop": "YH", "str": "HE G-E?", "br": 0.00047863009232263805 }, "geometry": { "type": "Point", "coordinates": [ -85.3429, -52.215 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Mercer5", "name": "Mercer 5", "desig": "", "mag": null, "dim": "1.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -84.1708, -13.6672 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6624", "name": "NGC 6624", "desig": "", "mag": 7.9, "dim": "8.8", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00069183097091893623 }, "geometry": { "type": "Point", "coordinates": [ -84.0812, -30.3611 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M28", "name": "M28", "desig": "NGC 6626", "mag": 6.8, "dim": "11.2", "type": "GC", "sub": "MW", "pop": "OH", "str": "MB", "br": 0.0019054607179632482 }, "geometry": { "type": "Point", "coordinates": [ -83.8629, -24.87 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6638", "name": "NGC 6638", "desig": "", "mag": 9.0, "dim": "7.3", "type": "GC", "sub": "MW", "pop": "OH", "str": "MB", "br": 0.00025118864315095795 }, "geometry": { "type": "Point", "coordinates": [ -82.2663, -25.4975 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M69", "name": "M69", "desig": "NGC 6637", "mag": 7.6, "dim": "9.8", "type": "GC", "sub": "MW", "pop": "BD", "str": "MB", "br": 0.00091201083935590964 }, "geometry": { "type": "Point", "coordinates": [ -82.1533, -32.3481 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6642", "name": "NGC 6642", "desig": "", "mag": 9.1, "dim": "5.8", "type": "GC", "sub": "MW", "pop": "YH", "str": "MB", "br": 0.00022908676527677748 }, "geometry": { "type": "Point", "coordinates": [ -82.0246, -23.4753 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6652", "name": "NGC 6652", "desig": "", "mag": 8.6, "dim": "6.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "MB", "br": 0.0003630780547701014 }, "geometry": { "type": "Point", "coordinates": [ -81.0596, -32.9903 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M22", "name": "M22", "desig": "NGC 6656", "mag": 5.1, "dim": "32.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "MD", "br": 0.0091201083935590968 }, "geometry": { "type": "Point", "coordinates": [ -80.8992, -23.9033 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar8", "name": "Palomar 8", "desig": "Pal 8", "mag": 11.0, "dim": "5.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 3.9810717055349695e-05 }, "geometry": { "type": "Point", "coordinates": [ -79.6254, -19.8258 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M70", "name": "M70", "desig": "NGC 6681", "mag": 7.9, "dim": "8.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.00069183097091893623 }, "geometry": { "type": "Point", "coordinates": [ -79.1971, -32.2919 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "RLGC2", "name": "RLGC 2", "desig": "", "mag": 10.0, "dim": "0.9", "type": "GC", "sub": "MW", "pop": "OH", "str": "", "br": 0.0001 }, "geometry": { "type": "Point", "coordinates": [ -78.6325, -5.1925 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "GLIMPSE-C01", "name": "GLIMPSE-C01", "desig": "", "mag": 22.2, "dim": "4.5", "type": "GC", "sub": "MW", "pop": "", "str": "", "br": 1.3182567385564101e-09 }, "geometry": { "type": "Point", "coordinates": [ -77.7929, -1.4972 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6712", "name": "NGC 6712", "desig": "", "mag": 8.1, "dim": "9.8", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa (R)", "br": 0.00057543993733715718 }, "geometry": { "type": "Point", "coordinates": [ -76.7321, -8.7061 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M54", "name": "M54", "desig": "NGC 6715", "mag": 7.6, "dim": "12.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "Sag (N)", "br": 0.00091201083935590964 }, "geometry": { "type": "Point", "coordinates": [ -76.2363, -30.4783 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6717", "name": "NGC 6717", "desig": "Palomar 9", "mag": 9.3, "dim": "5.4", "type": "GC", "sub": "MW", "pop": "OH", "str": "MB", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ -76.2242, -22.7008 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SagittariusI", "name": "Sagittarius I", "desig": "SagDEG", "mag": 4.5, "dim": "450x216", "type": "dSph(t)", "sub": "MW", "pop": "", "str": "Sag", "br": 0.015848931924611134 }, "geometry": { "type": "Point", "coordinates": [ -76.1687, -30.5453 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6723", "name": "NGC 6723", "desig": "", "mag": 7.0, "dim": "13.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "MB", "br": 0.0015848931924611141 }, "geometry": { "type": "Point", "coordinates": [ -75.1117, -36.6317 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6749", "name": "NGC 6749", "desig": "", "mag": 12.4, "dim": "4.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "MD", "br": 1.0964781961431852e-05 }, "geometry": { "type": "Point", "coordinates": [ -73.6863, 1.9008 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6752", "name": "NGC 6752", "desig": "", "mag": 5.4, "dim": "29.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.0069183097091893627 }, "geometry": { "type": "Point", "coordinates": [ -72.2833, -59.9847 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6760", "name": "NGC 6760", "desig": "", "mag": 8.9, "dim": "9.6", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00027542287033381662 }, "geometry": { "type": "Point", "coordinates": [ -72.1996, 1.0306 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M56", "name": "M56", "desig": "NGC 6779", "mag": 8.3, "dim": "8.8", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E (R)", "br": 0.00047863009232263805 }, "geometry": { "type": "Point", "coordinates": [ -70.8521, 30.1847 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan7", "name": "Terzan 7", "desig": "", "mag": 12.0, "dim": "1.2", "type": "GC", "sub": "MW", "pop": "YH", "str": "Sag", "br": 1.5848931924611141e-05 }, "geometry": { "type": "Point", "coordinates": [ -70.5679, -34.6575 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar10", "name": "Palomar 10", "desig": "Pal 10", "mag": 13.2, "dim": "4.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 5.2480746024977341e-06 }, "geometry": { "type": "Point", "coordinates": [ -70.4912, 18.5717 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Arp2", "name": "Arp 2", "desig": "", "mag": 12.3, "dim": "2.3", "type": "GC", "sub": "MW", "pop": "YH", "str": "Sag", "br": 1.2022644346174132e-05 }, "geometry": { "type": "Point", "coordinates": [ -67.8162, -30.3539 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SagDIG", "name": "SagDIG", "desig": "Sagittarius dIrr", "mag": 15.5, "dim": "2.9x2.1", "type": "IBm V-VI:", "sub": "LG", "pop": "", "str": "", "br": 6.3095734448019296e-07 }, "geometry": { "type": "Point", "coordinates": [ -67.5042, -17.6781 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M55", "name": "M55", "desig": "NGC 6809", "mag": 6.3, "dim": "19.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "Koa", "br": 0.0030199517204020161 }, "geometry": { "type": "Point", "coordinates": [ -65.0025, -30.9622 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Terzan8", "name": "Terzan 8", "desig": "", "mag": 12.4, "dim": "3.5", "type": "GC", "sub": "MW", "pop": "OH", "str": "Sag", "br": 1.0964781961431852e-05 }, "geometry": { "type": "Point", "coordinates": [ -64.5625, -34.0003 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6822", "name": "NGC 6822", "desig": "DDO 209", "mag": 9.3, "dim": "15.5x13.5", "type": "IBm V-VI", "sub": "LG", "pop": "", "str": "", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ -63.7642, -14.7892 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar11", "name": "Palomar 11", "desig": "Pal 11", "mag": 9.8, "dim": "10.0", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00012022644346174119 }, "geometry": { "type": "Point", "coordinates": [ -63.69, -8.0072 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SagittariusII", "name": "Sagittarius II", "desig": "Laevens 5", "mag": 13.9, "dim": "4.0", "type": "UFD", "sub": "MW", "pop": "", "str": "Sag?", "br": 2.7542287033381634e-06 }, "geometry": { "type": "Point", "coordinates": [ -61.8312, -22.0681 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M71", "name": "M71", "desig": "NGC 6838", "mag": 8.2, "dim": "7.2", "type": "GC", "sub": "MW", "pop": "BD", "str": "MD", "br": 0.00052480746024977283 }, "geometry": { "type": "Point", "coordinates": [ -61.5579, 18.7783 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M75", "name": "M75", "desig": "NGC 6864", "mag": 8.5, "dim": "6.8", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 0.00039810717055349735 }, "geometry": { "type": "Point", "coordinates": [ -58.48, -21.9214 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC6934", "name": "NGC 6934", "desig": "", "mag": 8.8, "dim": "7.1", "type": "GC", "sub": "MW", "pop": "YH", "str": "HE (R)", "br": 0.00030199517204020131 }, "geometry": { "type": "Point", "coordinates": [ -51.4517, 7.4042 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IndusII", "name": "Indus II", "desig": "", "mag": 17.4, "dim": "5.8", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 1.0964781961431874e-07 }, "geometry": { "type": "Point", "coordinates": [ -50.2842, -46.165 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AquariusI", "name": "Aquarius I", "desig": "DDO 210", "mag": 14.0, "dim": "2.2x1.1", "type": "IBm V-VI", "sub": "LG", "pop": "", "str": "", "br": 2.5118864315095823e-06 }, "geometry": { "type": "Point", "coordinates": [ -48.2842, -12.8481 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M72", "name": "M72", "desig": "NGC 6981", "mag": 9.3, "dim": "6.6", "type": "GC", "sub": "MW", "pop": "YH", "str": "Hel G-E?", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ -46.6337, -12.5369 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC7006", "name": "NGC 7006", "desig": "", "mag": 10.6, "dim": "3.6", "type": "GC", "sub": "MW", "pop": "YH", "str": "Seq G-E?", "br": 5.7543993733715664e-05 }, "geometry": { "type": "Point", "coordinates": [ -44.6271, 16.1875 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Laevens3", "name": "Laevens 3", "desig": "", "mag": 14.7, "dim": "0.8", "type": "GC/UFD", "sub": "MW", "pop": "YH", "str": "", "br": 1.3182567385564074e-06 }, "geometry": { "type": "Point", "coordinates": [ -43.2737, 14.98 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Kim2", "name": "Kim 2", "desig": "", "mag": 17.2, "dim": "2.5x1.6", "type": "GC", "sub": "MW", "pop": "YH", "str": "", "br": 1.3182567385564074e-07 }, "geometry": { "type": "Point", "coordinates": [ -42.7958, -51.1556 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IndusI", "name": "Indus I", "desig": "", "mag": 16.5, "dim": "2.6", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 2.5118864315095823e-07 }, "geometry": { "type": "Point", "coordinates": [ -41.9875, -50.9833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "SegueIII", "name": "Segue III", "desig": "", "mag": 14.9, "dim": "0.65", "type": "GC", "sub": "MW", "pop": "YH", "str": "", "br": 1.0964781961431851e-06 }, "geometry": { "type": "Point", "coordinates": [ -39.6208, 19.1253 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M15", "name": "M15", "desig": "NGC 7078", "mag": 6.2, "dim": "18.0", "type": "GC", "sub": "MW", "pop": "YH", "str": "MD", "br": 0.0033113112148259109 }, "geometry": { "type": "Point", "coordinates": [ -37.5071, 12.1669 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M2", "name": "M2", "desig": "NGC 7089", "mag": 6.5, "dim": "16.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E (R)(N)", "br": 0.0025118864315095794 }, "geometry": { "type": "Point", "coordinates": [ -36.6279, 0.8231 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M30", "name": "M30", "desig": "NGC 7099", "mag": 7.2, "dim": "12.0", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E (R)", "br": 0.0013182567385564075 }, "geometry": { "type": "Point", "coordinates": [ -34.9083, -23.1792 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar12", "name": "Palomar 12", "desig": "Pal 12", "mag": 12.0, "dim": "2.9", "type": "GC", "sub": "MW", "pop": "YH", "str": "Sag", "br": 1.5848931924611141e-05 }, "geometry": { "type": "Point", "coordinates": [ -33.3383, -21.2508 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "IC5152", "name": "IC 5152", "desig": "ESO 237-27", "mag": 11.1, "dim": "5.2x3.2", "type": "IAm V-VI", "sub": "LG??", "pop": "", "str": "", "br": 3.6307805477010174e-05 }, "geometry": { "type": "Point", "coordinates": [ -29.3271, -51.2964 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "GrusII", "name": "Grus II", "desig": "", "mag": 14.7, "dim": "12.0", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag??", "br": 1.3182567385564074e-06 }, "geometry": { "type": "Point", "coordinates": [ -28.98, -46.44 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Balbinot1", "name": "Balbinot 1", "desig": "", "mag": null, "dim": "0.8", "type": "GC", "sub": "MW", "pop": "OH", "str": "", "br": null }, "geometry": { "type": "Point", "coordinates": [ -27.32, 14.9497 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Kim1", "name": "Kim 1", "desig": "", "mag": 16.4, "dim": "", "type": "GC", "sub": "MW", "pop": "", "str": "", "br": 2.754228703338169e-07 }, "geometry": { "type": "Point", "coordinates": [ -27.0779, 7.0256 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PegasusIII", "name": "Pegasus III", "desig": "", "mag": 17.5, "dim": "1.6", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 9.9999999999999995e-08 }, "geometry": { "type": "Point", "coordinates": [ -23.9058, 5.42 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXVIII", "name": "Andromeda XXVIII", "desig": "", "mag": 15.6, "dim": "1.1", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 5.7543993733715665e-07 }, "geometry": { "type": "Point", "coordinates": [ -21.8283, 31.2161 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AquariusII", "name": "Aquarius II", "desig": "", "mag": 15.8, "dim": "10.2", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 4.7863009232263798e-07 }, "geometry": { "type": "Point", "coordinates": [ -21.52, -9.3275 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TucanaI", "name": "Tucana I", "desig": "", "mag": 15.7, "dim": "2.9x1.2", "type": "dE4", "sub": "LG", "pop": "", "str": "", "br": 5.2480746024977339e-07 }, "geometry": { "type": "Point", "coordinates": [ -19.5433, -64.4194 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TucanaII", "name": "Tucana II", "desig": "", "mag": 15.7, "dim": "19.7x12.0", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 5.2480746024977339e-07 }, "geometry": { "type": "Point", "coordinates": [ -17.0004, -58.5683 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "GrusI", "name": "Grus I", "desig": "", "mag": 17.7, "dim": "3.5x2.1", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 8.3176377110267087e-08 }, "geometry": { "type": "Point", "coordinates": [ -15.8238, -50.1633 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "LacertaI", "name": "Lacerta I", "desig": "Andromeda XXXI", "mag": 12.7, "dim": "8.4x4.9", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 8.3176377110267094e-06 }, "geometry": { "type": "Point", "coordinates": [ -15.4321, 41.2911 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PiscesII", "name": "Pisces II", "desig": "", "mag": 16.3, "dim": "2.2", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 3.0199517204020128e-07 }, "geometry": { "type": "Point", "coordinates": [ -15.3708, 5.9525 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "Palomar13", "name": "Palomar 13", "desig": "Pal 13", "mag": 13.5, "dim": "0.7", "type": "GC", "sub": "MW", "pop": "YH", "str": "Seq (R)", "br": 3.9810717055349691e-06 }, "geometry": { "type": "Point", "coordinates": [ -13.315, 12.7719 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "NGC7492", "name": "NGC 7492", "desig": "", "mag": 11.3, "dim": "4.2", "type": "GC", "sub": "MW", "pop": "OH", "str": "G-E", "br": 3.0199517204020131e-05 }, "geometry": { "type": "Point", "coordinates": [ -12.8887, -15.6114 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "UKS2323-326", "name": "UKS 2323-326", "desig": "UGCA 438", "mag": 13.9, "dim": "1.5x1.2", "type": "IBm V-VI pec", "sub": "LG??", "pop": "", "str": "", "br": 2.7542287033381634e-06 }, "geometry": { "type": "Point", "coordinates": [ -8.3854, -32.3889 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "CassiopeiaI", "name": "Cassiopeia I", "desig": "Andromeda VII", "mag": 12.9, "dim": "2.5x2.0", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 6.9183097091893625e-06 }, "geometry": { "type": "Point", "coordinates": [ -8.3708, 50.6919 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PegDIG", "name": "PegDIG", "desig": "DDO 216", "mag": 13.2, "dim": "5.0x2.7", "type": "Im V-VI", "sub": "M31?", "pop": "", "str": "", "br": 5.2480746024977341e-06 }, "geometry": { "type": "Point", "coordinates": [ -7.8492, 14.7431 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TucanaV", "name": "Tucana V", "desig": "", "mag": 17.1, "dim": "1.8x0.54", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 1.445439770745925e-07 }, "geometry": { "type": "Point", "coordinates": [ -5.6525, -63.2719 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PhenixII", "name": "Phenix II", "desig": "", "mag": 17.5, "dim": "2.2x1.2", "type": "UFD", "sub": "MW", "pop": "", "str": "Mag?", "br": 9.9999999999999995e-08 }, "geometry": { "type": "Point", "coordinates": [ -5.0029, -54.4061 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "PegasusI", "name": "Pegasus I", "desig": "Andromeda VI", "mag": 14.2, "dim": "4.0x2.0", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 2.0892961308540407e-06 }, "geometry": { "type": "Point", "coordinates": [ -2.0571, 24.5825 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXI", "name": "Andromeda XXI", "desig": "", "mag": 14.7, "dim": "7.0", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 1.3182567385564074e-06 }, "geometry": { "type": "Point", "coordinates": [ -1.3013, 42.4708 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "TucanaIII", "name": "Tucana III", "desig": "", "mag": 14.6, "dim": "6.0", "type": "UFD", "sub": "MW", "pop": "", "str": "", "br": 1.4454397707459279e-06 }, "geometry": { "type": "Point", "coordinates": [ -0.2988, -58.8981 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "AndromedaXXIX", "name": "Andromeda XXIX", "desig": "", "mag": 16.0, "dim": "1.7", "type": "dSph", "sub": "M31", "pop": "", "str": "", "br": 3.9810717055349692e-07 }, "geometry": { "type": "Point", "coordinates": [ -0.2683, 30.7556 ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,117 @@
|
||||
{ |
||||
"type": "FeatureCollection", |
||||
"name": "messier", |
||||
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, |
||||
"features": [ |
||||
{ "type": "Feature", "properties": { "id": "M1", "name": "M1", "desig": "NGC 1952", "alt": "Crab Nebula", "type": "snr", "mag": 8.4, "dim": "6x4", "cl": "", "br": 0.00043651583224016562 }, "geometry": { "type": "Point", "coordinates": [ 83.625, 22.0167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M2", "name": "M2", "desig": "NGC 7089", "alt": "", "type": "gc", "mag": 6.5, "dim": "13", "cl": "II", "br": 0.0025118864315095794 }, "geometry": { "type": "Point", "coordinates": [ -36.625, -0.8167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M3", "name": "M3", "desig": "NGC 5272", "alt": "", "type": "gc", "mag": 6.4, "dim": "16", "cl": "VI", "br": 0.002754228703338166 }, "geometry": { "type": "Point", "coordinates": [ -154.45, 28.3833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M4", "name": "M4", "desig": "NGC 6121", "alt": "", "type": "gc", "mag": 5.9, "dim": "26", "cl": "IX", "br": 0.0043651583224016566 }, "geometry": { "type": "Point", "coordinates": [ -114.1, -26.5333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M5", "name": "M5", "desig": "NGC 5904", "alt": "", "type": "gc", "mag": 5.8, "dim": "17", "cl": "V", "br": 0.0047863009232263854 }, "geometry": { "type": "Point", "coordinates": [ -130.35, 2.0833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M6", "name": "M6", "desig": "NGC 6405", "alt": "Butterfly Cluster", "type": "oc", "mag": 4.2, "dim": "15", "cl": "III2p", "br": 0.020892961308540386 }, "geometry": { "type": "Point", "coordinates": [ -94.9751, -32.2167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M7", "name": "M7", "desig": "NGC 6475", "alt": "Ptolemy´s Cluster", "type": "oc", "mag": 3.3, "dim": "80", "cl": "II2r", "br": 0.047863009232263852 }, "geometry": { "type": "Point", "coordinates": [ -91.525, -34.8167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M8", "name": "M8", "desig": "NGC 6523", "alt": "Lagoon Nebula", "type": "sfr", "mag": 5.8, "dim": "90x40", "cl": "", "br": 0.0047863009232263854 }, "geometry": { "type": "Point", "coordinates": [ -89.05, -24.3833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M9", "name": "M9", "desig": "NGC 6333", "alt": "", "type": "gc", "mag": 7.9, "dim": "9", "cl": "VIII", "br": 0.00069183097091893623 }, "geometry": { "type": "Point", "coordinates": [ -100.2, -18.5167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M10", "name": "M10", "desig": "NGC 6254", "alt": "", "type": "gc", "mag": 6.6, "dim": "15", "cl": "VII", "br": 0.0022908676527677745 }, "geometry": { "type": "Point", "coordinates": [ -105.7249, -4.1 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M11", "name": "M11", "desig": "NGC 6705", "alt": "Wild Duck Cluster", "type": "oc", "mag": 5.8, "dim": "14", "cl": "I2r", "br": 0.0047863009232263854 }, "geometry": { "type": "Point", "coordinates": [ -77.225, -6.2667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M12", "name": "M12", "desig": "NGC 6218", "alt": "", "type": "gc", "mag": 6.6, "dim": "14", "cl": "IX", "br": 0.0022908676527677745 }, "geometry": { "type": "Point", "coordinates": [ -108.1999, -1.95 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M13", "name": "M13", "desig": "NGC 6205", "alt": "Great Hercules Cluster", "type": "gc", "mag": 5.9, "dim": "17", "cl": "V", "br": 0.0043651583224016566 }, "geometry": { "type": "Point", "coordinates": [ -109.575, 36.4667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M14", "name": "M14", "desig": "NGC 6402", "alt": "", "type": "gc", "mag": 7.6, "dim": "12", "cl": "VIII", "br": 0.00091201083935590964 }, "geometry": { "type": "Point", "coordinates": [ -95.5999, -3.25 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M15", "name": "M15", "desig": "NGC 7078", "alt": "", "type": "gc", "mag": 6.4, "dim": "12", "cl": "IV", "br": 0.002754228703338166 }, "geometry": { "type": "Point", "coordinates": [ -37.5, 12.1667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M16", "name": "M16", "desig": "NGC 6611", "alt": "Eagle Nebula", "type": "sfr", "mag": 6.0, "dim": "7", "cl": "II3mn", "br": 0.0039810717055349734 }, "geometry": { "type": "Point", "coordinates": [ -85.3, -13.7833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M17", "name": "M17", "desig": "NGC 6618", "alt": "Omega Nebula", "type": "sfr", "mag": 7.0, "dim": "46x37", "cl": "", "br": 0.0015848931924611141 }, "geometry": { "type": "Point", "coordinates": [ -84.8, -16.1833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M18", "name": "M18", "desig": "NGC 6613", "alt": "", "type": "oc", "mag": 6.9, "dim": "9", "cl": "II3pn", "br": 0.0017378008287493745 }, "geometry": { "type": "Point", "coordinates": [ -85.0249, -17.1333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M19", "name": "M19", "desig": "NGC 6273", "alt": "", "type": "gc", "mag": 7.2, "dim": "14", "cl": "VIII", "br": 0.0013182567385564075 }, "geometry": { "type": "Point", "coordinates": [ -104.35, -26.2667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M20", "name": "M20", "desig": "NGC 6514", "alt": "Trifid Nebula", "type": "sfr", "mag": 8.5, "dim": "29x27", "cl": "", "br": 0.00039810717055349735 }, "geometry": { "type": "Point", "coordinates": [ -89.3501, -23.0333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M21", "name": "M21", "desig": "NGC 6531", "alt": "", "type": "oc", "mag": 5.9, "dim": "13", "cl": "I3m", "br": 0.0043651583224016566 }, "geometry": { "type": "Point", "coordinates": [ -88.8499, -22.5 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M22", "name": "M22", "desig": "NGC 6656", "alt": "", "type": "gc", "mag": 5.1, "dim": "24", "cl": "VII", "br": 0.0091201083935590968 }, "geometry": { "type": "Point", "coordinates": [ -80.8999, -23.9 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M23", "name": "M23", "desig": "NGC 6494", "alt": "", "type": "oc", "mag": 5.5, "dim": "27", "cl": "III1m", "br": 0.0063095734448019303 }, "geometry": { "type": "Point", "coordinates": [ -90.7999, -19.0167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M24", "name": "M24", "desig": "", "alt": "Milky Way patch", "type": "pos", "mag": 4.5, "dim": "90", "cl": "", "br": 0.015848931924611134 }, "geometry": { "type": "Point", "coordinates": [ -85.775, -18.4833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M25", "name": "M25", "desig": "IC 4725", "alt": "", "type": "oc", "mag": 4.6, "dim": "32", "cl": "I2p", "br": 0.014454397707459279 }, "geometry": { "type": "Point", "coordinates": [ -82.1, -19.25 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M26", "name": "M26", "desig": "NGC 6694", "alt": "", "type": "oc", "mag": 8.0, "dim": "15", "cl": "I1m", "br": 0.00063095734448019298 }, "geometry": { "type": "Point", "coordinates": [ -78.7001, -9.4 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M27", "name": "M27", "desig": "NGC 6853", "alt": "Dumbbell Nebula", "type": "pn", "mag": 8.1, "dim": "8x4", "cl": "IV(II)", "br": 0.00057543993733715718 }, "geometry": { "type": "Point", "coordinates": [ -60.1001, 22.7167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M28", "name": "M28", "desig": "NGC 6626", "alt": "", "type": "gc", "mag": 6.9, "dim": "11", "cl": "IV", "br": 0.0017378008287493745 }, "geometry": { "type": "Point", "coordinates": [ -83.875, -24.8667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M29", "name": "M29", "desig": "NGC 6913", "alt": "", "type": "oc", "mag": 6.6, "dim": "7", "cl": "III3p", "br": 0.0022908676527677745 }, "geometry": { "type": "Point", "coordinates": [ -54.025, 38.5333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M30", "name": "M30", "desig": "NGC 7099", "alt": "", "type": "gc", "mag": 7.5, "dim": "11", "cl": "V", "br": 0.001 }, "geometry": { "type": "Point", "coordinates": [ -34.9001, -23.1833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M31", "name": "M31", "desig": "NGC 224", "alt": "Andromeda", "type": "s", "mag": 3.4, "dim": "190x60", "cl": "SA(s)b LINER", "br": 0.043651583224016612 }, "geometry": { "type": "Point", "coordinates": [ 10.6751, 41.2667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M32", "name": "M32", "desig": "NGC 221", "alt": "", "type": "e", "mag": 8.2, "dim": "9x7", "cl": "cE2", "br": 0.00052480746024977283 }, "geometry": { "type": "Point", "coordinates": [ 10.6751, 40.8667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M33", "name": "M33", "desig": "NGC 598", "alt": "Triangulum", "type": "s", "mag": 5.7, "dim": "71x42", "cl": "SA(s)cd", "br": 0.0052480746024977229 }, "geometry": { "type": "Point", "coordinates": [ 23.475, 30.65 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M34", "name": "M34", "desig": "NGC 1039", "alt": "", "type": "oc", "mag": 5.2, "dim": "35", "cl": "II3m", "br": 0.008317637711026709 }, "geometry": { "type": "Point", "coordinates": [ 40.5, 42.7833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M35", "name": "M35", "desig": "NGC 2168", "alt": "", "type": "oc", "mag": 5.1, "dim": "28", "cl": "III2m", "br": 0.0091201083935590968 }, "geometry": { "type": "Point", "coordinates": [ 92.2249, 24.3333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M36", "name": "M36", "desig": "NGC 1960", "alt": "", "type": "oc", "mag": 6.0, "dim": "12", "cl": "II3m", "br": 0.0039810717055349734 }, "geometry": { "type": "Point", "coordinates": [ 84.0251, 34.1333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M37", "name": "M37", "desig": "NGC 2099", "alt": "", "type": "oc", "mag": 5.6, "dim": "24", "cl": "II1r", "br": 0.0057543993733715727 }, "geometry": { "type": "Point", "coordinates": [ 88.1, 32.55 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M38", "name": "M38", "desig": "NGC 1912", "alt": "", "type": "oc", "mag": 6.4, "dim": "21", "cl": "III2m", "br": 0.002754228703338166 }, "geometry": { "type": "Point", "coordinates": [ 82.175, 35.8333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M39", "name": "M39", "desig": "NGC 7092", "alt": "", "type": "oc", "mag": 4.6, "dim": "32", "cl": "III2p", "br": 0.014454397707459279 }, "geometry": { "type": "Point", "coordinates": [ -36.9499, 48.4333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M40", "name": "M40", "desig": "WN 4", "alt": "", "type": "pos", "mag": 8.0, "dim": "", "cl": "", "br": 0.00063095734448019298 }, "geometry": { "type": "Point", "coordinates": [ -174.4001, 58.0833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M41", "name": "M41", "desig": "NGC 2287", "alt": "", "type": "oc", "mag": 4.5, "dim": "38", "cl": "II3m", "br": 0.015848931924611134 }, "geometry": { "type": "Point", "coordinates": [ 101.75, -20.7333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M42", "name": "M42", "desig": "NGC 1976", "alt": "Orion Nebula", "type": "sfr", "mag": 4.0, "dim": "66x60", "cl": "", "br": 0.025118864315095794 }, "geometry": { "type": "Point", "coordinates": [ 83.85, -5.45 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M43", "name": "M43", "desig": "NGC 1982", "alt": "", "type": "sfr", "mag": 9.0, "dim": "20x15", "cl": "", "br": 0.00025118864315095795 }, "geometry": { "type": "Point", "coordinates": [ 83.9, -5.2667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M44", "name": "M44", "desig": "NGC 2632", "alt": "Praesepe", "type": "oc", "mag": 3.1, "dim": "95", "cl": "II2m", "br": 0.057543993733715694 }, "geometry": { "type": "Point", "coordinates": [ 130.025, 19.9833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M45", "name": "M45", "desig": "", "alt": "Pleiades", "type": "oc", "mag": 1.2, "dim": "110", "cl": "I3rn", "br": 0.33113112148259111 }, "geometry": { "type": "Point", "coordinates": [ 56.75, 24.1167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M46", "name": "M46", "desig": "NGC 2437", "alt": "", "type": "oc", "mag": 6.1, "dim": "27", "cl": "III2m", "br": 0.003630780547701014 }, "geometry": { "type": "Point", "coordinates": [ 115.4501, -14.8167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M47", "name": "M47", "desig": "NGC 2422", "alt": "", "type": "oc", "mag": 4.4, "dim": "30", "cl": "III2m", "br": 0.017378008287493744 }, "geometry": { "type": "Point", "coordinates": [ 114.15, -14.5 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M48", "name": "M48", "desig": "NGC 2548", "alt": "", "type": "oc", "mag": 5.8, "dim": "54", "cl": "I2m", "br": 0.0047863009232263854 }, "geometry": { "type": "Point", "coordinates": [ 123.45, -5.8 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M49", "name": "M49", "desig": "NGC 4472", "alt": "", "type": "e", "mag": 8.4, "dim": "10x8", "cl": "E2 Sy2", "br": 0.00043651583224016562 }, "geometry": { "type": "Point", "coordinates": [ -172.5499, 8.0 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M50", "name": "M50", "desig": "NGC 2323", "alt": "", "type": "oc", "mag": 5.9, "dim": "16", "cl": "II3m", "br": 0.0043651583224016566 }, "geometry": { "type": "Point", "coordinates": [ 105.8, -8.3333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M51", "name": "M51", "desig": "NGC 5194/5", "alt": "Whirlpool", "type": "s", "mag": 8.1, "dim": "11x8", "cl": "SA(s)bc pec", "br": 0.00057543993733715718 }, "geometry": { "type": "Point", "coordinates": [ -157.5251, 47.2 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M52", "name": "M52", "desig": "NGC 7654", "alt": "", "type": "oc", "mag": 6.9, "dim": "13", "cl": "I2r", "br": 0.0017378008287493745 }, "geometry": { "type": "Point", "coordinates": [ -8.95, 61.5833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M53", "name": "M53", "desig": "NGC 5024", "alt": "", "type": "gc", "mag": 7.7, "dim": "13", "cl": "V", "br": 0.00083176377110267088 }, "geometry": { "type": "Point", "coordinates": [ -161.775, 18.1667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M54", "name": "M54", "desig": "NGC 6715", "alt": "", "type": "gc", "mag": 7.7, "dim": "9", "cl": "III", "br": 0.00083176377110267088 }, "geometry": { "type": "Point", "coordinates": [ -76.2251, -30.4833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M55", "name": "M55", "desig": "NGC 6809", "alt": "", "type": "gc", "mag": 7.0, "dim": "19", "cl": "XI", "br": 0.0015848931924611141 }, "geometry": { "type": "Point", "coordinates": [ -65.0, -30.9667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M56", "name": "M56", "desig": "NGC 6779", "alt": "", "type": "gc", "mag": 8.2, "dim": "7", "cl": "X", "br": 0.00052480746024977283 }, "geometry": { "type": "Point", "coordinates": [ -70.85, 30.1833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M57", "name": "M57", "desig": "NGC 6720", "alt": "Ring Nebula", "type": "pn", "mag": 9.0, "dim": "1", "cl": "IV(III)", "br": 0.00025118864315095795 }, "geometry": { "type": "Point", "coordinates": [ -76.6001, 33.0333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M58", "name": "M58", "desig": "NGC 4579", "alt": "", "type": "s", "mag": 9.8, "dim": "6x5", "cl": "SAB(rs)b Sy1.9", "br": 0.00012022644346174119 }, "geometry": { "type": "Point", "coordinates": [ -170.575, 11.8167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M59", "name": "M59", "desig": "NGC 4621", "alt": "", "type": "e", "mag": 9.8, "dim": "5x4", "cl": "E5", "br": 0.00012022644346174119 }, "geometry": { "type": "Point", "coordinates": [ -169.5, 11.65 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M60", "name": "M60", "desig": "NGC 4649", "alt": "", "type": "e", "mag": 8.8, "dim": "7x6", "cl": "E2", "br": 0.00030199517204020131 }, "geometry": { "type": "Point", "coordinates": [ -169.075, 11.55 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M61", "name": "M61", "desig": "NGC 4303", "alt": "", "type": "s", "mag": 9.7, "dim": "7x6", "cl": "SAB(rs)bc Sy2", "br": 0.00013182567385564074 }, "geometry": { "type": "Point", "coordinates": [ -174.525, 4.4667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M62", "name": "M62", "desig": "NGC 6266", "alt": "", "type": "gc", "mag": 6.6, "dim": "14", "cl": "IV", "br": 0.0022908676527677745 }, "geometry": { "type": "Point", "coordinates": [ -104.7, -30.1167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M63", "name": "M63", "desig": "NGC 5055", "alt": "Sunflower Galaxy", "type": "s", "mag": 8.6, "dim": "13x7", "cl": "SA(rs)bc LINER", "br": 0.0003630780547701014 }, "geometry": { "type": "Point", "coordinates": [ -161.05, 42.0333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M64", "name": "M64", "desig": "NGC 4826", "alt": "Blackeye Galaxy", "type": "s", "mag": 8.5, "dim": "10x5", "cl": "(R)SA(rs)ab Sy2", "br": 0.00039810717055349735 }, "geometry": { "type": "Point", "coordinates": [ -165.825, 21.6833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M65", "name": "M65", "desig": "NGC 3623", "alt": "", "type": "s", "mag": 9.3, "dim": "10x3", "cl": "SAB(rs)a LINER", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ 169.725, 13.0833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M66", "name": "M66", "desig": "NGC 3627", "alt": "", "type": "s", "mag": 9.0, "dim": "9x4", "cl": "SAB(s)b Sy2", "br": 0.00025118864315095795 }, "geometry": { "type": "Point", "coordinates": [ 170.0501, 12.9833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M67", "name": "M67", "desig": "NGC 2682", "alt": "", "type": "oc", "mag": 6.9, "dim": "30", "cl": "II2m", "br": 0.0017378008287493745 }, "geometry": { "type": "Point", "coordinates": [ 132.6, 11.8167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M68", "name": "M68", "desig": "NGC 4590", "alt": "", "type": "gc", "mag": 8.2, "dim": "12", "cl": "X", "br": 0.00052480746024977283 }, "geometry": { "type": "Point", "coordinates": [ -170.1251, -26.75 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M69", "name": "M69", "desig": "NGC 6637", "alt": "", "type": "gc", "mag": 7.7, "dim": "7", "cl": "V", "br": 0.00083176377110267088 }, "geometry": { "type": "Point", "coordinates": [ -82.15, -32.35 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M70", "name": "M70", "desig": "NGC 6681", "alt": "", "type": "gc", "mag": 8.1, "dim": "8", "cl": "V", "br": 0.00057543993733715718 }, "geometry": { "type": "Point", "coordinates": [ -79.2, -32.3 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M71", "name": "M71", "desig": "NGC 6838", "alt": "", "type": "gc", "mag": 8.3, "dim": "7", "cl": "X-XI", "br": 0.00047863009232263805 }, "geometry": { "type": "Point", "coordinates": [ -61.5499, 18.7833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M72", "name": "M72", "desig": "NGC 6981", "alt": "", "type": "gc", "mag": 9.4, "dim": "6", "cl": "IX", "br": 0.00017378008287493744 }, "geometry": { "type": "Point", "coordinates": [ -46.6249, -12.5333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M73", "name": "M73", "desig": "NGC 6994", "alt": "4 Star asterism", "type": "pos", "mag": 10.0, "dim": "", "cl": "", "br": 0.0001 }, "geometry": { "type": "Point", "coordinates": [ -45.2749, -12.6333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M74", "name": "M74", "desig": "NGC 628", "alt": "", "type": "s", "mag": 9.2, "dim": "11x10", "cl": "SA(s)c", "br": 0.00020892961308540409 }, "geometry": { "type": "Point", "coordinates": [ 24.1751, 15.7833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M75", "name": "M75", "desig": "NGC 6864", "alt": "", "type": "gc", "mag": 8.6, "dim": "6", "cl": "I", "br": 0.0003630780547701014 }, "geometry": { "type": "Point", "coordinates": [ -58.475, -21.9167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M76", "name": "M76", "desig": "NGC 650/1", "alt": "Little Dumbbell Nebula", "type": "pn", "mag": 11.5, "dim": "2x1", "cl": "III(VI)", "br": 2.5118864315095822e-05 }, "geometry": { "type": "Point", "coordinates": [ 25.6001, 51.5667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M77", "name": "M77", "desig": "NGC 1068", "alt": "Cetus A", "type": "s", "mag": 8.8, "dim": "7x6", "cl": "(R)SA(rs)b pec Sy2", "br": 0.00030199517204020131 }, "geometry": { "type": "Point", "coordinates": [ 40.6751, -0.0167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M78", "name": "M78", "desig": "NGC 2068", "alt": "", "type": "rn", "mag": 8.0, "dim": "8x6", "cl": "", "br": 0.00063095734448019298 }, "geometry": { "type": "Point", "coordinates": [ 86.675, 0.05 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M79", "name": "M79", "desig": "NGC 1904", "alt": "", "type": "gc", "mag": 8.0, "dim": "9", "cl": "V", "br": 0.00063095734448019298 }, "geometry": { "type": "Point", "coordinates": [ 81.125, -24.55 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M80", "name": "M80", "desig": "NGC 6093", "alt": "", "type": "gc", "mag": 7.2, "dim": "9", "cl": "II", "br": 0.0013182567385564075 }, "geometry": { "type": "Point", "coordinates": [ -115.7501, -22.9833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M81", "name": "M81", "desig": "NGC 3031", "alt": "Bode´s Galaxy", "type": "s", "mag": 6.8, "dim": "27x14", "cl": "SA(s)ab Sy1.8", "br": 0.0019054607179632482 }, "geometry": { "type": "Point", "coordinates": [ 148.8996, 69.0667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M82", "name": "M82", "desig": "NGC 3034", "alt": "Cigar Galaxy", "type": "i", "mag": 8.4, "dim": "11x4", "cl": "I0 sbrst", "br": 0.00043651583224016562 }, "geometry": { "type": "Point", "coordinates": [ 148.9496, 69.6833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M83", "name": "M83", "desig": "NGC 5236", "alt": "Southern Pinwheel", "type": "s", "mag": 7.6, "dim": "13x12", "cl": "SAB(s)c sbrst", "br": 0.00091201083935590964 }, "geometry": { "type": "Point", "coordinates": [ -155.75, -29.8667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M84", "name": "M84", "desig": "NGC 4374", "alt": "", "type": "e", "mag": 9.3, "dim": "7x6", "cl": "E1 Sy2", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ -173.725, 12.8833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M85", "name": "M85", "desig": "NGC 4382", "alt": "", "type": "e", "mag": 9.2, "dim": "7x5", "cl": "SA(s)0+ pec", "br": 0.00020892961308540409 }, "geometry": { "type": "Point", "coordinates": [ -173.65, 18.1833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M86", "name": "M86", "desig": "NGC 4406", "alt": "", "type": "e", "mag": 9.2, "dim": "9x6", "cl": "S0(3)/E3", "br": 0.00020892961308540409 }, "geometry": { "type": "Point", "coordinates": [ -173.4499, 12.95 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M87", "name": "M87", "desig": "NGC 4486", "alt": "Virgo A", "type": "e", "mag": 8.6, "dim": "8x7", "cl": "cD0-1 pec LINER", "br": 0.0003630780547701014 }, "geometry": { "type": "Point", "coordinates": [ -172.3, 12.4 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M88", "name": "M88", "desig": "NGC 4501", "alt": "", "type": "s", "mag": 9.5, "dim": "7x4", "cl": "SA(rs)b Sy2", "br": 0.00015848931924611142 }, "geometry": { "type": "Point", "coordinates": [ -172.0001, 14.4167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M89", "name": "M89", "desig": "NGC 4552", "alt": "", "type": "e", "mag": 9.8, "dim": "5x5", "cl": "E0-1 Sy2", "br": 0.00012022644346174119 }, "geometry": { "type": "Point", "coordinates": [ -171.075, 12.55 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M90", "name": "M90", "desig": "NGC 4569", "alt": "", "type": "s", "mag": 9.5, "dim": "10x5", "cl": "SAB(rs)ab", "br": 0.00015848931924611142 }, "geometry": { "type": "Point", "coordinates": [ -170.8, 13.1667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M91", "name": "M91", "desig": "NGC 4548", "alt": "", "type": "s", "mag": 10.2, "dim": "5x4", "cl": "SB(rs)b LINER", "br": 8.317637711026709e-05 }, "geometry": { "type": "Point", "coordinates": [ -171.15, 14.5 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M92", "name": "M92", "desig": "NGC 6341", "alt": "", "type": "gc", "mag": 6.5, "dim": "11", "cl": "IV", "br": 0.0025118864315095794 }, "geometry": { "type": "Point", "coordinates": [ -100.725, 43.1333 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M93", "name": "M93", "desig": "NGC 2447", "alt": "", "type": "oc", "mag": 6.2, "dim": "22", "cl": "IV1p", "br": 0.0033113112148259109 }, "geometry": { "type": "Point", "coordinates": [ 116.15, -23.8667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M94", "name": "M94", "desig": "NGC 4736", "alt": "Cat’s Eye Galaxy", "type": "s", "mag": 8.1, "dim": "11x9", "cl": "(R)SA(r)ab Sy2", "br": 0.00057543993733715718 }, "geometry": { "type": "Point", "coordinates": [ -167.275, 41.1167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M95", "name": "M95", "desig": "NGC 3351", "alt": "", "type": "s", "mag": 9.7, "dim": "3x3", "cl": "SB(r)b sbrst", "br": 0.00013182567385564074 }, "geometry": { "type": "Point", "coordinates": [ 161.0, 11.7 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M96", "name": "M96", "desig": "NGC 3368", "alt": "", "type": "s", "mag": 9.2, "dim": "8x5", "cl": "SAB(rs)ab LINER", "br": 0.00020892961308540409 }, "geometry": { "type": "Point", "coordinates": [ 161.7, 11.8167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M97", "name": "M97", "desig": "NGC 3587", "alt": "Owl Nebula", "type": "pn", "mag": 11.2, "dim": "3", "cl": "IIIa", "br": 3.3113112148259144e-05 }, "geometry": { "type": "Point", "coordinates": [ 168.7001, 55.0167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M98", "name": "M98", "desig": "NGC 4192", "alt": "", "type": "s", "mag": 10.1, "dim": "10x3", "cl": "SAB(s)ab LINER", "br": 9.1201083935590964e-05 }, "geometry": { "type": "Point", "coordinates": [ -176.55, 14.9 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M99", "name": "M99", "desig": "NGC 4254", "alt": "", "type": "s", "mag": 9.8, "dim": "5x5", "cl": "SA(s)c LINER", "br": 0.00012022644346174119 }, "geometry": { "type": "Point", "coordinates": [ -175.3, 14.4167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M100", "name": "M100", "desig": "NGC 4321", "alt": "", "type": "s", "mag": 9.4, "dim": "7x6", "cl": "SAB(s)bc LINER", "br": 0.00017378008287493744 }, "geometry": { "type": "Point", "coordinates": [ -174.2749, 15.8167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M101", "name": "M101", "desig": "NGC 5457", "alt": "Pinwheel", "type": "s", "mag": 7.7, "dim": "29x27", "cl": "SAB(rs)cd", "br": 0.00083176377110267088 }, "geometry": { "type": "Point", "coordinates": [ -149.2, 54.35 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M102", "name": "M102", "desig": "NGC 5866", "alt": "Spindle", "type": "s", "mag": 9.9, "dim": "5x2", "cl": "S0-a+ LINER", "br": 0.00010964781961431851 }, "geometry": { "type": "Point", "coordinates": [ -133.3774, 55.76 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M103", "name": "M103", "desig": "NGC 581", "alt": "", "type": "oc", "mag": 7.4, "dim": "6", "cl": "III2p", "br": 0.0010964781961431851 }, "geometry": { "type": "Point", "coordinates": [ 23.3, 60.7 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M104", "name": "M104", "desig": "NGC 4594", "alt": "Sombrero", "type": "s", "mag": 8.3, "dim": "9x4", "cl": "SA(s)a Sy1.9", "br": 0.00047863009232263805 }, "geometry": { "type": "Point", "coordinates": [ -170.0, -11.6167 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M105", "name": "M105", "desig": "NGC 3379", "alt": "", "type": "e", "mag": 9.3, "dim": "5x5", "cl": "E1 LINER", "br": 0.00019054607179632462 }, "geometry": { "type": "Point", "coordinates": [ 161.9501, 12.5833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M106", "name": "M106", "desig": "NGC 4258", "alt": "", "type": "s", "mag": 8.3, "dim": "19x7", "cl": "SAB(s)bc Sy1.9", "br": 0.00047863009232263805 }, "geometry": { "type": "Point", "coordinates": [ -175.2499, 47.3 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M107", "name": "M107", "desig": "NGC 6171", "alt": "", "type": "gc", "mag": 8.1, "dim": "10", "cl": "X", "br": 0.00057543993733715718 }, "geometry": { "type": "Point", "coordinates": [ -111.875, -13.05 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M108", "name": "M108", "desig": "NGC 3556", "alt": "", "type": "s", "mag": 10.0, "dim": "9x2", "cl": "SB(s)cd", "br": 0.0001 }, "geometry": { "type": "Point", "coordinates": [ 167.8751, 55.6667 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M109", "name": "M109", "desig": "NGC 3992", "alt": "", "type": "s", "mag": 9.8, "dim": "8x5", "cl": "SB(rs)bc LINER", "br": 0.00012022644346174119 }, "geometry": { "type": "Point", "coordinates": [ 179.4, 53.3833 ] } }, |
||||
{ "type": "Feature", "properties": { "id": "M110", "name": "M110", "desig": "NGC 205", "alt": "", "type": "e", "mag": 8.0, "dim": "22x11", "cl": "E5 pec", "br": 0.00063095734448019298 }, "geometry": { "type": "Point", "coordinates": [ 10.1, 41.6833 ] } } |
||||
] |
||||
} |
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,8 @@
|
||||
--- |
||||
layout: default |
||||
title: Celestial Data |
||||
header_type: hero |
||||
subtitle: json files of celestial object |
||||
--- |
||||
|
||||
TBD |
@ -0,0 +1,105 @@
|
||||
@misc{frohn2015, |
||||
title = {{d3-celestial}}, |
||||
author = {Frohn, Olaf}, |
||||
year = 2015, |
||||
url = {https://github.com/ofrohn/d3-celestial/} |
||||
} |
||||
@article{pebesma2018, |
||||
title = {Simple Features for {R}: Standardized Support for Spatial Vector Data}, |
||||
author = {Pebesma, Edzer}, |
||||
year = 2018, |
||||
journal = {The R Journal}, |
||||
volume = 10, |
||||
number = 1, |
||||
pages = {439{\textendash}446}, |
||||
doi = {10.32614/RJ-2018-009}, |
||||
url = {https://doi.org/10.32614/RJ-2018-009}, |
||||
date = 2018 |
||||
} |
||||
@misc{gliese_preliminary_1991, |
||||
title = {Preliminary {Version} of the {Third} {Catalogue} of {Nearby} {Stars}}, |
||||
author = {Gliese, W. and Jahreiß, H.}, |
||||
year = 1991, |
||||
month = jan, |
||||
url = {https://ui.adsabs.harvard.edu/abs/1991adc..rept.....G}, |
||||
urldate = {2023-01-17}, |
||||
note = {ADS Bibcode: 1991adc..rept.....G} |
||||
} |
||||
@article{samus_general_2017, |
||||
title = {General catalogue of variable stars: {Version} {GCVS} 5.1}, |
||||
shorttitle = {General catalogue of variable stars}, |
||||
author = {Samus’, N. N. and Kazarovets, E. V. and Durlevich, O. V. and Kireeva, N. N. and Pastukhova, E. N.}, |
||||
year = 2017, |
||||
month = jan, |
||||
journal = {Astronomy Reports}, |
||||
volume = 61, |
||||
number = 1, |
||||
pages = {80--88}, |
||||
doi = {10.1134/S1063772917010085}, |
||||
issn = {1063-7729, 1562-6881}, |
||||
url = {http://link.springer.com/10.1134/S1063772917010085}, |
||||
urldate = {2023-01-17}, |
||||
language = {en} |
||||
} |
||||
@article{smith_vizier_1996, |
||||
title = {{VizieR} {Online} {Data} {Catalog}: {FK5} - {SAO} - {HD} - {Common} {Name} {Cross} {Index}}, |
||||
shorttitle = {{VizieR} {Online} {Data} {Catalog}}, |
||||
author = {Smith, W. B.}, |
||||
year = 1996, |
||||
month = aug, |
||||
journal = {VizieR Online Data Catalog}, |
||||
pages = {IV/22}, |
||||
url = {https://ui.adsabs.harvard.edu/abs/1996yCat.4022....0S}, |
||||
urldate = {2023-01-17}, |
||||
note = {ADS Bibcode: 1996yCat.4022....0S}, |
||||
abstract = {The author has combined data from various catalogs to produce a cross index of the numbers in the FK5 (I/149, I/175), SAO (I/131), and HD (III/135) catalogs. He has also added the Bayer or Flamsteed designations and the common or variable star names. (1 data file).}, |
||||
keywords = {Cross identifications, Positional data} |
||||
} |
||||
@article{kostjuk_vizier_2002, |
||||
title = {{VizieR} {Online} {Data} {Catalog}: {HD}-{DM}-{GC}-{HR}-{HIP}-{Bayer}-{Flamsteed} {Cross} {Index}}, |
||||
shorttitle = {{VizieR} {Online} {Data} {Catalog}}, |
||||
author = {Kostjuk, N. D.}, |
||||
year = 2002, |
||||
journal = {VizieR Online Data Catalog}, |
||||
pages = {IV/27A}, |
||||
url = {https://ui.adsabs.harvard.edu/abs/2004yCat.4027....0K}, |
||||
urldate = {2023-01-17}, |
||||
note = {ADS Bibcode: 2004yCat.4027....0K}, |
||||
abstract = {New Cross Index is constructed on the basis of data analyse of basic catalogs: BSC5 (), Hipparcos () and CSI ().The full list of the stars with HD-number and Bayer-Flamsteed designations with later extension of various authors was edited according to printed atlases [1,2,3,4]. Some names of variable stars from these atlases was added to the list. The resulting list was edited after the review and the analyses of star names in catalogue list 'refs.dat'. The DM, GC, HR and HIP numbers were added. The DM numbers were taken from the Henry Draper Catalogue (),the GC numbers were taken from General Catalogue of 33342 stars (),the HR numbers were taken from BSC5 (). Finally the list of proper names of stars was made from information analyses of the atlases [1,2,3,4] and the catalogs BSC5, Hipparcos, CSI and . The right ascensions, declinations and visual magnitudes for all stars were taken from Hipparcos and CSI catalogue if the star has no number in Hipparcos. (6 data files).}, |
||||
keywords = {Cross identifications} |
||||
} |
||||
@article{anderson_xhip_2012, |
||||
title = {{XHIP}: {An} extended hipparcos compilation}, |
||||
shorttitle = {{XHIP}}, |
||||
author = {Anderson, E. and Francis, Ch.}, |
||||
year = 2012, |
||||
month = may, |
||||
journal = {Astronomy Letters}, |
||||
volume = 38, |
||||
number = 5, |
||||
pages = {331--346}, |
||||
doi = {10.1134/S1063773712050015}, |
||||
issn = {1063-7737, 1562-6873}, |
||||
url = {http://link.springer.com/10.1134/S1063773712050015}, |
||||
urldate = {2023-01-17}, |
||||
language = {en} |
||||
} |
||||
@techreport{butler_geojson_2016, |
||||
title = {The {GeoJSON} {Format}}, |
||||
author = {Butler, H. and Daly, M. and Doyle, A. and Gillies, S. and Hagen, S. and Schaub, T.}, |
||||
year = 2016, |
||||
month = aug, |
||||
number = {RFC7946}, |
||||
pages = {RFC7946}, |
||||
doi = {10.17487/RFC7946}, |
||||
url = {https://www.rfc-editor.org/info/rfc7946}, |
||||
urldate = {2023-01-17}, |
||||
language = {en}, |
||||
institution = {RFC Editor} |
||||
} |
||||
@misc{davenhall1989misc, |
||||
title = {Catalogue of Constellation Boundary Data}, |
||||
author = {Davenhall, A.C. and Leggett, S.K.}, |
||||
year = 1989, |
||||
url = {http://vizier.cfa.harvard.edu/viz-bin/Cat?VI/49} |
||||
} |
Loading…
Reference in new issue