nrcatalogtools.sxs¶
SXS catalog interface wrapping the sxs package.
SXSCatalog
¶
Bases: CatalogBase
Catalog interface for the SXS (SpEC) NR waveform collection.
Wraps the sxs package to provide a CatalogBase-compatible
interface over the SXS Zenodo-hosted catalog. Key design points:
- Metadata is loaded via
sxs.load("catalog", download=None), which returns asxs.Catalogdict of all ~2000 simulations. - Path columns in the metadata are set to empty strings at load
time (lazy stub) because resolving real on-disk paths would
require one
sxs.load()call per simulation (~2000 requests). Paths are resolved on demand insideget(). get()delegates tosxs.load(sim_name, auto_supersede=True)and wraps the returnedsxs.WaveformModesin the localWaveformModessubclass.- A module-level singleton prevents redundant catalog loads when
load()is called multiple times in the same process.
Example: >>> import nrcatalogtools as nrcat >>> cat = nrcat.SXSCatalog.load(download=False) >>> wfm = cat.get("SXS:BBH:0001")
Source code in nrcatalogtools/sxs.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | |
load
classmethod
¶
Load the SXS catalog.
This is a wrapper around sxs.load. The result is cached in a
module-level singleton; pass download=True or call
SXSCatalog.reload() to force a fresh download.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
download
|
(None, bool)
|
If False, this function will look for the catalog in the cache and raise an error if it is not found. If True, this function will download the catalog and raise an error if the download fails. If None (the default), it will try to download the file, warn but fall back to the cache if that fails, and only raise an error if the catalog is not found in the cache. |
None
|
Source code in nrcatalogtools/sxs.py
reload
classmethod
¶
Force a fresh download and replace the cached singleton.
Equivalent to calling sxs.Simulations.reload() and then reloading.
Source code in nrcatalogtools/sxs.py
get
¶
Load the strain waveform for sim_name and return a WaveformModes object.
Overrides CatalogBase.get() because SXS waveform loading goes
entirely through the sxs package rather than via direct HDF5 reads.
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Deprecated IDs are resolved automatically via
auto_supersede=True.
extrapolation_order (int): Waveform extrapolation order used as a
fallback when sim_obj.strain is unavailable. Defaults to 2.
download (bool): Whether to download the waveform if not cached.
Defaults to True.
Returns: nrcatalogtools.waveform.WaveformModes: Waveform object with the catalog metadata attached.
Source code in nrcatalogtools/sxs.py
download_waveform_data
¶
Download the strain waveform data for sim_name via sxs.load().
First fetches the simulation metadata JSON, then downloads the
rhOverM strain file. Both are handled by the sxs package's
download and caching machinery.
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Returns:
sxs.WaveformModes: Raw waveform object returned by sxs.load().
Source code in nrcatalogtools/sxs.py
download_psi4_data
¶
Download the psi4 data for sim_name via the sxs package.
Accesses sim.psi4 to trigger the download; the file is cached
in the sxs package's own cache directory.
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Source code in nrcatalogtools/sxs.py
waveform_filename_from_simname
¶
Return the bare filename for the strain waveform file.
Resolves the path on demand by calling sxs.load(sim_name,
download=False) and extracting sim.strain_path[0].
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Returns: str: Filename component only (no directory).
Source code in nrcatalogtools/sxs.py
waveform_filepath_from_simname
¶
Return the absolute local path for the strain waveform file.
Path resolution is lazy: this calls sxs.load(sim_name,
download=False) each time it is invoked. The file may not yet
exist locally if it has never been downloaded.
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Returns: str: POSIX-style absolute path string.
Source code in nrcatalogtools/sxs.py
waveform_url_from_simname
¶
Not implemented for SXS; downloads are managed by sxs.load().
Raises: NotImplementedError: Always.
psi4_filename_from_simname
¶
Return the bare filename for the psi4 data file.
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Returns: str: Filename component only (no directory).
Source code in nrcatalogtools/sxs.py
psi4_filepath_from_simname
¶
Return the absolute local path for the psi4 data file.
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Returns: str: POSIX-style absolute path string.
Source code in nrcatalogtools/sxs.py
psi4_url_from_simname
¶
Return the remote download URL for the psi4 data file.
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Returns: str: Full HTTP(S) URL from the SXS file manifest.
Source code in nrcatalogtools/sxs.py
metadata_filename_from_simname
¶
Return the bare filename for the per-simulation metadata file.
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Returns: str: Filename component only (no directory).
Source code in nrcatalogtools/sxs.py
metadata_filepath_from_simname
¶
Return the absolute local path for the per-simulation metadata file.
Args:
sim_name (str): SXS simulation name, e.g. "SXS:BBH:0001".
Returns: str: POSIX-style absolute path string.
Source code in nrcatalogtools/sxs.py
metadata_url_from_simname
¶
Not implemented for SXS; use sxs.load() instead.
Raises: NotImplementedError: Always.