sxs.load#
One of the main goals of the sxs package is to provide a simple and
consistent interface to the data provided by the SXS Collaboration.
The sxs.load function is the primary way to access the data,
ensuring that users do not need to understand the underlying data
formats, while also allowing the collaboration to change those formats
without affecting the user interface.
Load an SXS-format dataset, optionally downloading and caching
The dataset can be the full catalog of all SXS simulations, or metadata, horizon data, or a waveform from an individual simulation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
location
|
(str, Path)
|
A local file path, URL, SXS path, or SXS path pattern. See Notes below. |
str
|
download
|
(None, bool)
|
If this is True and the data is recognized as starting with an
SXS ID but cannot be found in the cache, the data will be
downloaded automatically. If this is None (the default) and
an SXS configuration file is found with a |
None
|
cache
|
(None, bool)
|
The cache directory is determined by |
None
|
progress
|
(None, bool)
|
If True, full file names will be shown and, if a nonzero
Content-Length header is returned, a progress bar will be
shown during any downloads. Default is None, which just reads
the configuration value with |
None
|
truepath
|
(None, str)
|
If the file is downloaded, this allows the output path to be
overridden, rather than selected automatically. The output
path will be stored in |
None
|
Keyword Parameters
All remaining parameters are passed to the load function
responsible for the requested data.
See Also
sxs.sxs_directory : Locate configuration and cache files
sxs.write_config : Set defaults for download and cache
parameters
Notes
This function can load data in various ways.
1) If truepath is set, and points to a file that exists —
whether absolute, relative to the current working directory,
or relative to the cache directory — that file will be
loaded.
2) Given an absolute or relative path to a local file, it just loads the data directly.
3) If location is one of "simulations" or "dataframe" (or the
deprecated "catalog"), the corresponding catalog data is
loaded. The "simulations" option returns a dictionary mapping
SXS IDs to raw metadata, while "dataframe" returns a pandas
DataFrame indexed by SXS ID, but the metadata is processed
into more consistent form.
4) If location is a valid URL including the scheme (https://,
or http://), it will be downloaded regardless of the
download parameter and optionally cached.
5) Given an SXS simulation specification — like "SXS:BBH:1234",
"SXS:BBH:1234v2.0", "SXS:BBH:1234/Lev5", or
"SXS:BBH:1234v2.0/Lev5" — the simulation is loaded as an
sxs.Simulation object.
6) Given an SXS path — like "SXS:BBH:1234/Lev5/h_Extrapolated_N2.h5" — the file is located in the catalog for details. This function then looks in the local cache directory and loads it if present.
7) If the SXS path is not found in the cache directory and
download is set to True (when this function is called, or
in the sxs config file) this function attempts to download
the data. Note that download must be explicitly set in
this case, or a ValueError will be raised.
If the file is downloaded, it will be stored in the cache
according to the location, unless truepath is set as noted
above, in which case it is stored there. Note that downloading is
switched off by default, but if it is switched on (set to True),
the cache is also switched on by default.
Source code in sxs/handlers.py
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 | |