|
1 |
| -# A sample Python project |
| 1 | +# Turtle Locomotion Oracles |
2 | 2 |
|
3 |
| - |
| 3 | +This Python package contains oracles of the movement of turtle limbs during locomotion (e.g., swimming /) |
| 4 | +Some oracles are based on real-world observations of turtle locomotion, while others are based on theoretical/template models. |
4 | 5 |
|
5 |
| -A sample project that exists as an aid to the [Python Packaging User |
6 |
| -Guide][packaging guide]'s [Tutorial on Packaging and Distributing |
7 |
| -Projects][distribution tutorial]. |
| 6 | +## Installation |
8 | 7 |
|
9 |
| -This project does not aim to cover best practices for Python project |
10 |
| -development as a whole. For example, it does not provide guidance or tool |
11 |
| -recommendations for version control, documentation, or testing. |
| 8 | +Installation is very easy - just clone the repository and install the package using pip. |
12 | 9 |
|
13 |
| -[The source for this project is available here][src]. |
| 10 | +```bash |
| 11 | +pip install -e . |
| 12 | +``` |
14 | 13 |
|
15 |
| -The metadata for a Python project is defined in the `pyproject.toml` file, |
16 |
| -an example of which is included in this project. You should edit this file |
17 |
| -accordingly to adapt this sample project to your needs. |
| 14 | +## Usage |
18 | 15 |
|
19 |
| ----- |
| 16 | +## Provided Oracles |
20 | 17 |
|
21 |
| -This is the README file for the project. |
| 18 | +### Joint-space Oracles |
22 | 19 |
|
23 |
| -The file should use UTF-8 encoding and can be written using |
24 |
| -[reStructuredText][rst] or [markdown][md use] with the appropriate [key set][md |
25 |
| -use]. It will be used to generate the project webpage on PyPI and will be |
26 |
| -displayed as the project homepage on common code-hosting services, and should be |
27 |
| -written for that purpose. |
| 20 | +#### Cornelia Turtle Robot Joint Space Trajectory |
28 | 21 |
|
29 |
| -Typical contents for this file would include an overview of the project, basic |
30 |
| -usage examples, etc. Generally, including the project changelog in here is not a |
31 |
| -good idea, although a simple “What's New” section for the most recent version |
32 |
| -may be appropriate. |
| 22 | +This oracle provides a joint-space trajectory developed for the Cornelia turtle robot by (van der Geest et al., 2023). |
| 23 | +Please refer to the original paper for more information: https://doi.org/10.1038/s41598-023-37904-5 |
33 | 24 |
|
34 |
| -[packaging guide]: https://packaging.python.org |
35 |
| -[distribution tutorial]: https://packaging.python.org/tutorials/packaging-projects/ |
36 |
| -[src]: https://github.com/pypa/sampleproject |
37 |
| -[rst]: http://docutils.sourceforge.net/rst.html |
38 |
| -[md]: https://tools.ietf.org/html/rfc7764#section-3.5 "CommonMark variant" |
39 |
| -[md use]: https://packaging.python.org/specifications/core-metadata/#description-content-type-optional |
| 25 | +> van der Geest, N., Garcia, L., Borret, F., Nates, R., & Gonzalez, A. (2023). |
| 26 | +Soft-robotic green sea turtle (Chelonia mydas) developed to replace animal experimentation provides new insight |
| 27 | +into their propulsive strategies. Scientific Reports, 13(1), 11983. |
| 28 | + |
| 29 | +and cite it if you use this oracle in your research. |
| 30 | + |
| 31 | +```bibtex |
| 32 | +@article{van2023soft, |
| 33 | + title={Soft-robotic green sea turtle (Chelonia mydas) developed to replace animal experimentation provides new insight into their propulsive strategies}, |
| 34 | + author={van der Geest, Nick and Garcia, Lorenzo and Borret, Fraser and Nates, Roy and Gonzalez, Alberto}, |
| 35 | + journal={Scientific Reports}, |
| 36 | + volume={13}, |
| 37 | + number={1}, |
| 38 | + pages={11983}, |
| 39 | + year={2023}, |
| 40 | + publisher={Nature Publishing Group UK London} |
| 41 | +} |
| 42 | +``` |
| 43 | + |
| 44 | +### Task-space Oracles |
| 45 | + |
| 46 | +#### Green Sea Turtle Swimming Task Space Trajectory |
| 47 | + |
| 48 | +This oracle provides a task-space trajectory that was fitted to video recordings of the swimming of Green sea turtles (van der Geest et al., 2022). |
| 49 | +Please refer to the original paper for more information: https://doi.org/10.1038/s41598-022-21459-y |
| 50 | + |
| 51 | +> van der Geest, N., Garcia, L., Nates, R., & Godoy, D. A. (2022). |
| 52 | +New insight into the swimming kinematics of wild Green sea turtles (Chelonia mydas). |
| 53 | +Scientific Reports, 12(1), 18151. |
| 54 | + |
| 55 | +and cite it if you use this oracle in your research. |
| 56 | + |
| 57 | +```bibtex |
| 58 | +@article{van2022new, |
| 59 | + title={New insight into the swimming kinematics of wild Green sea turtles (Chelonia mydas)}, |
| 60 | + author={van der Geest, Nick and Garcia, Lorenzo and Nates, Roy and Godoy, Daniel A}, |
| 61 | + journal={Scientific Reports}, |
| 62 | + volume={12}, |
| 63 | + number={1}, |
| 64 | + pages={18151}, |
| 65 | + year={2022}, |
| 66 | + publisher={Nature Publishing Group UK London} |
| 67 | +} |
| 68 | +``` |
0 commit comments