Crédit d'image | Image credit: ASC-CSA
Description brĂšve : Ce tutoriel guide les utilisateurs dans la crĂ©ation dâune carte 3D en Python Ă partir des donnĂ©es ouvertes du terrain dâĂ©mulation planĂ©taire canadienne, en utilisant la bibliothĂšque open3d.
Le tutoriel suivant a Ă©tĂ© créé pour aider les utilisateurs Ă utiliser les donnĂ©es ouvertes du terrain dâĂ©mulation planĂ©taire canadienne pour crĂ©er une carte 3D en Python. Les scripts sont créés Ă lâaide de la bibliothĂšque open3d. Les donnĂ©es se composent de 102 scans laser obtenus Ă lâaide dâun MobileRobots Pioneer P2AT modifiĂ©. Plus dâinformations sur les donnĂ©es peuvent ĂȘtre trouvĂ©es via ce lien ici.
- đŠ Cloner le dĂ©pĂŽt
git clone https://github.com/asc-csa/Canadian-Planetary-Emulation-Terrain-3D-Mapping-Tutorial.git cd Canadian-Planetary-Emulation-Terrain-3D-Mapping-Tutorial
- đ CrĂ©er un environnement
# Avec virtualenv python -m venv env source env/bin/activate # Ou avec conda conda create -n map_env conda activate map_env
- đ„ Installer les dĂ©pendances
pip install -r requirements.txt
- đ Lancer le tutoriel
jupyter notebook Canadian Planetary Emulation Terrain 3D Mapping Dataset Tutorial.ipynb
Remarque : Si les graphiques ou cartes ne sâaffichent pas, redĂ©marrez Jupyter Notebook ou ajoutez
%matplotlib inline
dans la premiĂšre cellule.
Ce projet est sous une licence MIT modifiĂ©e â voir le fichier LICENSE pour plus de dĂ©tails.
Brief description: This tutorial guides users in creating a 3D map in Python using open data from the Canadian planetary analogue terrain and the open3d library.
The following tutorial has been created to help users use the open data of the Canadian Planetary Emulation terrain to create a 3D map in Python. The scripts are created using the open3d library. The data consists of of 102 laser scans obtained using a modified MobileRobots Pioneer P2AT. More information about the data can be found via this link here.
- đŠ Clone the repo
git clone https://github.com/asc-csa/Canadian-Planetary-Emulation-Terrain-3D-Mapping-Tutorial.git cd Canadian-Planetary-Emulation-Terrain-3D-Mapping-Tutorial
- đ Create environment
# Using virtualenv python -m venv env source env/bin/activate # Or using conda conda create -n map_env conda activate map_env
- đ„ Install dependencies
pip install -r requirements.txt
- đ Run the tutorial
jupyter notebook Canadian Planetary Emulation Terrain 3D Mapping Dataset Tutorial.ipynb
Note: If plots or maps do not display, restart Jupyter Notebook or run
%matplotlib inline
in the first cell.
This project is licensed under a modified MIT license - see the LICENSE file for details.