Add/Update README and hero figure

#1
Files changed (2) hide show
  1. README.md +123 -52
  2. example_figure.png +3 -0
README.md CHANGED
@@ -1,55 +1,126 @@
 
 
 
 
 
1
  ---
2
- {}
 
 
 
 
 
 
 
 
3
  ---
4
 
5
- ---
6
- description: 'The "VIMOS Public Extragalactic Redshift Survey" (VIPERS) mapped the
7
- spatial distribution of over 90,000 galaxies at z~1, using the VIMOS spectrograph
8
- at the Very Large Telescope, covering nearly 24 square degrees. It optimized multi-band
9
- photometry and VIMOS''s multiplexing capability to focus on the 0.5 < z < 1.2 redshift
10
- range, producing a data set comparable to local universe surveys like SDSS and 2dFGRS.
11
- The HATS catalog was generated from https://huggingface.co/datasets/MultimodalUniverse/vipers
12
-
13
- '
14
- homepage: http://www.vipers.inaf.it/
15
- version: 1.0.0
16
- citation: "% % ACKNOWLEDGEMENTS\n% % From: http://www.vipers.inaf.it/ \n% \n% We kindly\
17
- \ request all papers using VIPERS data to add the following text to their acknowledgment\
18
- \ section: \n% \n% This paper uses data from the VIMOS Public Extragalactic Redshift\
19
- \ Survey (VIPERS). VIPERS has been performed using the ESO Very Large Telescope,\
20
- \ under the \"Large Programme\" 182.A-0886. The participating institutions and funding\
21
- \ agencies are listed at http://vipers.inaf.it\n% \n% CITATION\n@article{scodeggio2018vimos,\n\
22
- \ title={The VIMOS Public Extragalactic Redshift Survey (VIPERS)-Full spectroscopic\
23
- \ data and auxiliary information release (PDR-2)},\n author={Scodeggio, MARCO and\
24
- \ Guzzo, L and Garilli, BIANCA and Granett, BR and Bolzonella, M and De La Torre,\
25
- \ S and Abbas, U and Adami, C and Arnouts, S and Bottini, D and others},\n journal={Astronomy\
26
- \ \\& Astrophysics},\n volume={609},\n pages={A84},\n year={2018},\n publisher={EDP\
27
- \ Sciences}\n}\n"
28
- ---
29
-
30
- # Vipers Dataset
31
-
32
-
33
-
34
- The "VIMOS Public Extragalactic Redshift Survey" (VIPERS) mapped the spatial distribution of over 90,000 galaxies at z~1, using the VIMOS spectrograph at the Very Large Telescope, covering nearly 24 square degrees. It optimized multi-band photometry and VIMOS's multiplexing capability to focus on the 0.5 < z < 1.2 redshift range, producing a data set comparable to local universe surveys like SDSS and 2dFGRS.
35
-
36
-
37
- % % ACKNOWLEDGEMENTS
38
- % % From: http://www.vipers.inaf.it/
39
- %
40
- % We kindly request all papers using VIPERS data to add the following text to their acknowledgment section:
41
- %
42
- % This paper uses data from the VIMOS Public Extragalactic Redshift Survey (VIPERS). VIPERS has been performed using the ESO Very Large Telescope, under the "Large Programme" 182.A-0886. The participating institutions and funding agencies are listed at http://vipers.inaf.it
43
- %
44
- % CITATION
45
- @article{scodeggio2018vimos,
46
- title={The VIMOS Public Extragalactic Redshift Survey (VIPERS)-Full spectroscopic data and auxiliary information release (PDR-2)},
47
- author={Scodeggio, MARCO and Guzzo, L and Garilli, BIANCA and Granett, BR and Bolzonella, M and De La Torre, S and Abbas, U and Adami, C and Arnouts, S and Bottini, D and others},
48
- journal={Astronomy \& Astrophysics},
49
- volume={609},
50
- pages={A84},
51
- year={2018},
52
- publisher={EDP Sciences}
53
- }
54
-
55
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <div align="center">
3
+ <img src="example_figure.png" width="600">
4
+ </div>
5
+
6
  ---
7
+ configs:
8
+ - config_name: default
9
+ data_dir: mmu_vipers_w1/dataset
10
+ tags:
11
+ - astronomy
12
+ license: cc-by-4.0
13
+ pretty_name: mmu_vipers_w1
14
+ size_categories:
15
+ - 10K<n<100K
16
  ---
17
 
18
+ # mmu_vipers_w1 HATS Catalog Collection
19
+
20
+ This is the collection of HATS catalogs representing mmu_vipers_w1.
21
+
22
+ This dataset is part of the [Multimodal Universe](https://github.com/MultimodalUniverse/MultimodalUniverse),
23
+ a large-scale collection of multimodal astronomical data. For full details, see the paper:
24
+ [The Multimodal Universe: Enabling Large-Scale Machine Learning with 100TBs of Astronomical Scientific Data](https://arxiv.org/abs/2412.02527).
25
+
26
+ ### Access the catalog
27
+
28
+ We recommend the use of the [LSDB](https://lsdb.io) Python framework to access HATS catalogs.
29
+ LSDB can be installed via `pip install lsdb` or `conda install conda-forge::lsdb`,
30
+ see more details [in the docs](https://docs.lsdb.io/).
31
+ The following code provides a minimal example of opening this catalog:
32
+
33
+ ```python
34
+ import lsdb
35
+
36
+ # Full sky coverage.
37
+ catalog = lsdb.open_catalog("https://huggingface.co/datasets/LSDB/mmu_vipers_w1")
38
+ # One-degree cone.
39
+ catalog = lsdb.open_catalog(
40
+ "https://huggingface.co/datasets/LSDB/mmu_vipers_w1",
41
+ search_filter=lsdb.ConeSearch(ra=36.0, dec=-6.0, radius_arcsec=3600.0),
42
+ )
43
+ ```
44
+
45
+ Each catalog in this collection is represented as a separate [Apache Parquet dataset](https://arrow.apache.org/docs/python/dataset.html) and can be accessed with a variety of tools, including `pandas`, `pyarrow`, `dask`, `Spark`, `DuckDB`.
46
+
47
+ ### File structure
48
+
49
+ This catalog is represented by the following files and directories:
50
+
51
+ - [`collection.properties`](https://huggingface.co/datasets/LSDB/mmu_vipers_w1/collection.properties) — textual metadata file describing the HATS collection of catalogs
52
+ - [`mmu_vipers_w1`](https://huggingface.co/datasets/LSDB/mmu_vipers_w1/mmu_vipers_w1) — main HATS catalog directory
53
+ - [`dataset/`](https://huggingface.co/datasets/LSDB/mmu_vipers_w1/mmu_vipers_w1/dataset/) Apache Parquet dataset directory for the main catalog
54
+ - ... parquet metadata and data files in sub directories ...
55
+ - [`hats.properties`](https://huggingface.co/datasets/LSDB/mmu_vipers_w1/mmu_vipers_w1/hats.properties) textual metadata file describing the main HATS catalog
56
+ - [`partition_info.csv`](https://huggingface.co/datasets/LSDB/mmu_vipers_w1/mmu_vipers_w1/partition_info.csv) — CSV file with a list of catalog HEALPix tiles (catalog partitions)
57
+ - [`skymap.fits`](https://huggingface.co/datasets/LSDB/mmu_vipers_w1/mmu_vipers_w1/skymap.fits) — HEALPix skymap FITS file with row-counts per HEALPix tile of fixed order 10
58
+ - [`mmu_vipers_w1_10arcs/`](https://huggingface.co/datasets/LSDB/mmu_vipers_w1/mmu_vipers_w1_10arcs) — default margin catalog to ensure data completeness in cross-matching, the margin threshold is 10.0 arcseconds
59
+ - ... margin catalog files and directories ...
60
+
61
+ ### Catalog metadata
62
+
63
+ Metadata of the main HATS catalog, excluding margins and indexes:
64
+
65
+ | **Number of rows** | **Number of columns** | **Number of partitions** | **Size on disk** | **HATS Builder** |
66
+ | --- | --- | --- | --- | --- |
67
+ | 60,528 | 9 | 20 | 447.3 MiB | hats-import v0.7.1, hats v0.7.1 |
68
+
69
+
70
+ ### Catalog columns
71
+
72
+ The main HATS catalog contains the following columns:
73
+
74
+ | **Name** | **`_healpix_29`** | **`spectrum.flux`** | **`spectrum.ivar`** | **`spectrum.lambda`** | **`spectrum.mask`** | **`REDSHIFT`** | **`REDFLAG`** | **`EXPTIME`** | **`NORM`** | **`MAG`** | **`ra`** | **`dec`** | **`object_id`** |
75
+ | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
76
+ | **Data Type** | int64 | list[float] | list[float] | list[float] | list[float] | float | float | float | float | float | float | float | string |
77
+ | **Nested?** | — | spectrum | spectrum | spectrum | spectrum | — | — | — | — | — | — | — | — |
78
+ | **Value count** | 60,528 | 33,714,096 | 33,714,096 | 33,714,096 | 33,714,096 | 60,528 | 60,528 | 60,528 | 60,528 | 60,528 | 60,528 | 60,528 | 60,528 |
79
+ | **Example row** | 1244368854977221770 | [0.1494, 0.1505, 0.1503, 0.1502, … (557 total)] | [1.471e-17, 1.777e-17, 2.024e-17, … (557 total)] | [5514, 5521, 5529, 5536, 5543, … (557 total)] | [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, … (557 total)] | 0.8462 | 0.8462 | 540 | 6.217 | 21.93 | 36.11 | -5.501 | 116024139.0 |
80
+ | **Minimum value** | 1243931779419333962 | -92.83397674560547 | -3.101720243426774e-19 | 5514.27978515625 | -0.0 | -0.0 | -0.0 | 540.0 | -99.0 | 15.56879997253418 | 30.189260482788086 | -5.980062007904053 | 101121877.0 |
81
+ | **Maximum value** | 2589547514245821801 | 986.7094116210938 | 1.3494081035675311e-14 | 9484.1201171875 | 3.0 | 4.558800220489502 | 4.558800220489502 | 540.0 | 1385.6070556640625 | 23.991300582885742 | 38.80224609375 | -4.171539783477783 | 127112147.0 |
82
+
83
+
84
+ "Nested" indicates whether the column is stored as a nested field inside another "struct" column.
85
+
86
+
87
+ "Value count" may be different from the total number of rows for nested columns: each nested element is counted as a single value.
88
+
89
+
90
+
91
+
92
+ ### Crossmatch with another catalog
93
+
94
+ HATS catalogs can be efficiently crossmatched using [LSDB](https://lsdb.io),
95
+ which leverages the HEALPix partitioning to avoid loading the full datasets into memory:
96
+
97
+ ```python
98
+ import lsdb
99
+
100
+ mmu_vipers_w1 = lsdb.open_catalog("https://huggingface.co/datasets/LSDB/mmu_vipers_w1")
101
+ other = lsdb.open_catalog("https://huggingface.co/datasets/<org>/<other_catalog>")
102
+
103
+ crossmatched = mmu_vipers_w1.crossmatch(other, radius_arcsec=1.0)
104
+ print(crossmatched)
105
+ ```
106
+
107
+ See the [LSDB documentation](https://docs.lsdb.io/) for more details on crossmatching and other operations.
108
+
109
+ ### Dataset-specific context
110
+
111
+ **Original survey**
112
+ This dataset is based on the VIMOS Public Extragalactic Redshift Survey (VIPERS), which provides optical spectra of galaxies in the redshift range 0.5 < z < 1.0.
113
+
114
+ **Data modality**
115
+ The dataset consists of fixed-size optical spectra (1 × 557) covering a wavelength range from 5514 Å to 9484 Å. Each spectrum includes flux values, the corresponding wavelength vector, inverse variance (ivar), and a mask indicating the quality of each measurement. The dataset contains approximately 90,000 galaxy spectra.
116
+
117
+ **Typical use cases**
118
+ This dataset has been used in a number of scientific publications, as well as in
119
+ machine learning specific applications, including source identification with SVMs and
120
+ galaxy classification with unsupervised methods.
121
+
122
+ **Caveats**
123
+ The dataset includes spectra that have been normalized and transformed during preprocessing to ensure consistency with other datasets.
124
+
125
+ **Citation**
126
+ This dataset uses data from the VIMOS Public Extragalactic Redshift Survey (VIPERS), obtained with the ESO Very Large Telescope. Users should acknowledge the [VIPERS survey](http://vipers.inaf.it) and its participating institutions.
example_figure.png ADDED

Git LFS Details

  • SHA256: c33b8186e556a0868e2b38a0cb849daa9442beef36cd91deca481daf67819b6d
  • Pointer size: 130 Bytes
  • Size of remote file: 80.4 kB