Metadata-Version: 2.4
Name: moveatlas
Version: 0.1.0.dev0
Summary: MoveAtlas: the open atlas of human movement data - one API over the movement-disorders corpus
Author: MoveAtlas contributors
License: BSD-3-Clause
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: pydata-sphinx-theme; extra == "docs"
Requires-Dist: sphinx-gallery; extra == "docs"
Requires-Dist: sphinx-design; extra == "docs"
Requires-Dist: matplotlib; extra == "docs"

# moveatlas

MoveAtlas is the open atlas of human movement data: one Python API over
the movement-disorders corpus, 83 catalogued datasets across six modality
families (pose, IMU, EMG, force, silhouette, EEG), harmonized into
canonical contracts, with patient-level evaluation splits.

The design deliberately follows MOABB (moabb.neurotechx.com), the
reproducibility framework for BCI, credited here as the model.

```python
import moveatlas

moveatlas.list_datasets()                  # the full catalogue with access cases
ds = moveatlas.dataset("nonan_gaitprint")  # a hosted CC-BY dataset
records, meta = ds.get_data()          # canonical records + metadata frame
```

Access cases surfaced by `get_data()`:

- `hosted`: served from MoveAtlas's own records (local store today; Zenodo/HF
  after the public launch), sha256-verified;
- `recipe`: fetched from the original host by our ingestion recipe;
- `local_only`: private or licence-held data read from a local path;
- `barrier`: raises an informative error carrying the documented access
  route.

License: BSD-3-Clause. Nothing in this package redistributes data whose
licence forbids it; see each dataset's card.
