sxs 2024.0.44__py3-none-any.whl → 2025.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sxs/__init__.py +1 -1
- sxs/__version__.py +1 -1
- sxs/handlers.py +23 -20
- sxs/metadata/__init__.py +1 -9
- sxs/metadata/metadata.py +1 -640
- sxs/metadata/metric.py +1 -152
- sxs/simulations/local.py +1 -227
- sxs/simulations/simulation.py +19 -4
- sxs/simulations/simulations.py +1 -572
- sxs/utilities/downloads.py +1 -103
- sxs/utilities/string_converters.py +1 -47
- sxs/utilities/sxs_directories.py +1 -205
- sxs/utilities/sxs_identifiers.py +1 -126
- sxs/waveforms/format_handlers/lvc.py +6 -5
- sxs/waveforms/format_handlers/rotating_paired_diff_multishuffle_bzip2.py +6 -0
- sxs/zenodo/__init__.py +1 -11
- {sxs-2024.0.44.dist-info → sxs-2025.0.2.dist-info}/METADATA +2 -1
- {sxs-2024.0.44.dist-info → sxs-2025.0.2.dist-info}/RECORD +20 -23
- sxs/caltechdata/__init__.py +0 -342
- sxs/caltechdata/catalog.py +0 -85
- sxs/caltechdata/login.py +0 -506
- {sxs-2024.0.44.dist-info → sxs-2025.0.2.dist-info}/WHEEL +0 -0
- {sxs-2024.0.44.dist-info → sxs-2025.0.2.dist-info}/licenses/LICENSE +0 -0
sxs/__init__.py
CHANGED
|
@@ -28,7 +28,7 @@ from .waveforms import WaveformModes, WaveformModesDict, to_lvc_conventions #, W
|
|
|
28
28
|
from .waveforms import rotating_paired_xor_multishuffle_bzip2 as rpxmb
|
|
29
29
|
from .waveforms import rotating_paired_diff_multishuffle_bzip2 as rpdmb
|
|
30
30
|
from .waveforms import spectre_cce_v1
|
|
31
|
-
from . import catalog, metadata, horizons, waveforms, zenodo
|
|
31
|
+
from . import catalog, metadata, horizons, waveforms, zenodo
|
|
32
32
|
from .simulations import Simulation, Simulations, write_local_simulations, local_simulations
|
|
33
33
|
from .handlers import load, load_via_sxs_id, loadcontext, load_lvc
|
|
34
34
|
|
sxs/__version__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "
|
|
1
|
+
__version__ = "2025.0.2"
|
sxs/handlers.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""Functions to facilitate generic handling of SXS-format data files"""
|
|
2
2
|
|
|
3
3
|
import contextlib
|
|
4
|
+
import sxscatalog
|
|
4
5
|
from . import waveforms, doi_url
|
|
5
6
|
|
|
6
7
|
|
|
@@ -236,7 +237,7 @@ def load(location, download=None, cache=None, progress=None, truepath=None, **kw
|
|
|
236
237
|
import pathlib
|
|
237
238
|
import urllib.request
|
|
238
239
|
from . import Simulations, Simulation, read_config, sxs_directory, Catalog
|
|
239
|
-
from .utilities import url, download_file, sxs_path_to_system_path, sxs_id_version_lev_exact_re, lev_path_re
|
|
240
|
+
from .utilities import url, download_file, sxs_path_to_system_path, sxs_id_version_lev_exact_re, lev_path_re, sxs_identifier_re
|
|
240
241
|
|
|
241
242
|
# Note: `download` and/or `cache` may still be `None` after this
|
|
242
243
|
if download is None:
|
|
@@ -280,25 +281,8 @@ def load(location, download=None, cache=None, progress=None, truepath=None, **kw
|
|
|
280
281
|
elif location == "catalog":
|
|
281
282
|
return Catalog.load(download=download)
|
|
282
283
|
|
|
283
|
-
elif location
|
|
284
|
-
return
|
|
285
|
-
download=download,
|
|
286
|
-
local=kwargs.get("local", False),
|
|
287
|
-
annex_dir=kwargs.get("annex_dir", None),
|
|
288
|
-
output_file=kwargs.get("output_file", None),
|
|
289
|
-
compute_md5=kwargs.get("compute_md5", False),
|
|
290
|
-
show_progress=kwargs.get("show_progress", False)
|
|
291
|
-
)
|
|
292
|
-
|
|
293
|
-
elif location == "dataframe":
|
|
294
|
-
return Simulations.load(
|
|
295
|
-
download=download,
|
|
296
|
-
local=kwargs.get("local", False),
|
|
297
|
-
annex_dir=kwargs.get("annex_dir", None),
|
|
298
|
-
output_file=kwargs.get("output_file", None),
|
|
299
|
-
compute_md5=kwargs.get("compute_md5", False),
|
|
300
|
-
show_progress=kwargs.get("show_progress", False)
|
|
301
|
-
).dataframe
|
|
284
|
+
elif location in ["simulations", "dataframe"]:
|
|
285
|
+
return sxscatalog.load(location, download=download, **kwargs)
|
|
302
286
|
|
|
303
287
|
elif sxs_id_version_lev_exact_re.match(location):
|
|
304
288
|
return Simulation(location, download=download, cache=cache, progress=progress, **kwargs)
|
|
@@ -310,11 +294,30 @@ def load(location, download=None, cache=None, progress=None, truepath=None, **kw
|
|
|
310
294
|
local=kwargs.get("local", False),
|
|
311
295
|
annex_dir=kwargs.get("annex_dir", None)
|
|
312
296
|
)
|
|
297
|
+
# If we chop off any "/LevN", and it's in the simulations, load it as a simulation
|
|
313
298
|
if lev_path_re.sub("", location) in simulations:
|
|
314
299
|
return Simulation(
|
|
315
300
|
location, download=download, cache=cache, progress=progress, **kwargs
|
|
316
301
|
)
|
|
317
302
|
|
|
303
|
+
# Now we look for a file in `simulations`
|
|
304
|
+
if sxs_identifier_re.match(location):
|
|
305
|
+
split_location = sxs_identifier_re.split(location)
|
|
306
|
+
# Currently we can only handle unversioned SXS ID files
|
|
307
|
+
if split_location[5] is None:
|
|
308
|
+
sxs_id = split_location[1]
|
|
309
|
+
file = split_location[-1].lstrip("/").lstrip("\\")
|
|
310
|
+
if sxs_id in simulations:
|
|
311
|
+
simulation = simulations[sxs_id]
|
|
312
|
+
if "files" in simulation:
|
|
313
|
+
file_info = simulation["files"][file]
|
|
314
|
+
location = file_info["link"]
|
|
315
|
+
truepath = truepath or (pathlib.Path(sxs_id) / file)
|
|
316
|
+
return load(
|
|
317
|
+
location, truepath=truepath,
|
|
318
|
+
download=download, cache=cache, progress=progress, **kwargs
|
|
319
|
+
)
|
|
320
|
+
|
|
318
321
|
# Try to find an appropriate SXS file in the catalog
|
|
319
322
|
catalog = Catalog.load(download=download)
|
|
320
323
|
selections = catalog.select_files(location)
|