juliensimon commited on
Commit
47c239a
·
verified ·
1 Parent(s): 24e8132

Update brown dwarf catalog: 14,168 dwarfs

Browse files
Files changed (2) hide show
  1. README.md +71 -0
  2. data/brown_dwarfs.parquet +3 -0
README.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "Ultracool and Brown Dwarf Catalog (40 pc)"
4
+ language:
5
+ - en
6
+ description: "Ultracool and brown dwarf catalog within 40 pc. JWST-relevant. Sourced via VizieR CDS Strasbourg."
7
+ task_categories:
8
+ - tabular-classification
9
+ tags:
10
+ - space
11
+ - brown-dwarf
12
+ - ultracool
13
+ - jwst
14
+ - stellar
15
+ - astronomy
16
+ - open-data
17
+ size_categories:
18
+ - 10K<n<100K
19
+ ---
20
+
21
+ # Ultracool and Brown Dwarf Catalog (40 pc)
22
+
23
+ Comprehensive catalog of **14,168** ultracool and brown dwarfs within 40 parsecs,
24
+ highly relevant for JWST atmospheric characterization studies.
25
+
26
+ ## Dataset description
27
+
28
+ Brown dwarfs are substellar objects too low in mass to sustain hydrogen fusion. Ultracool
29
+ dwarfs (spectral types M7 and later) bridge the gap between the lowest-mass stars and
30
+ giant planets. This volume-complete 40 pc sample from Sebastian et al. (2021) provides
31
+ the most comprehensive census of the solar neighborhood's ultracool population, including
32
+ L, T, and Y dwarfs ideal for JWST follow-up.
33
+
34
+ ## Quick stats
35
+
36
+ - **14,168** ultracool dwarfs within 40 pc
37
+ - **14,168** with spectral type classification
38
+ - **14,168** with distance estimates
39
+
40
+ ## Usage
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ ds = load_dataset("juliensimon/brown-dwarf-catalog", split="train")
46
+ df = ds.to_pandas()
47
+
48
+ # T and Y dwarfs (coldest brown dwarfs)
49
+ if "spectral_type" in df.columns:
50
+ cold = df[df["spectral_type"].str.startswith(("T", "Y"), na=False)]
51
+ print(f"{len(cold):,} T/Y dwarfs")
52
+
53
+ # Nearest brown dwarfs
54
+ if "distance_pc" in df.columns:
55
+ nearby = df.dropna(subset=["distance_pc"]).sort_values("distance_pc").head(20)
56
+ print(nearby[["ra_deg", "dec_deg", "distance_pc"]].to_string())
57
+ ```
58
+
59
+ ## Data source
60
+
61
+ Sebastian, D. et al. (2021), "The census of the solar neighbourhood ultracool dwarf
62
+ volume-complete 40 pc sample", A&A, 645, A100. Accessed via
63
+ [VizieR](https://vizier.cds.unistra.fr/), CDS Strasbourg.
64
+
65
+ ## Pipeline
66
+
67
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
68
+
69
+ ## License
70
+
71
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/brown_dwarfs.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d093b3f9bbcec0aade0331c0771cc88b928db4fb096d255dbd78a23107c5538c
3
+ size 1050001