Skip to content
Snippets Groups Projects
Commit 54516f34 authored by Montaño Sarria, Andres Felipe's avatar Montaño Sarria, Andres Felipe
Browse files

Add support to noether in melodic

parent b2bbbb0e
No related branches found
No related tags found
No related merge requests found
# Visitas
## Hernani
<https://www.idealista.com/inmueble/98916338/>
Liezaga 10, 1ero sin ascensor
230K
<https://www.idealista.com/inmueble/98280414/>
Calle Orkolaga
200K
<https://www.idealista.com/inmueble/99440162/>
Izpizua
230K
OTAÑO INMOBILIARIA
99440162
<https://www.idealista.com/inmueble/98755487/>
plaza Oleta, 8, 1D
305K
IBAN
98755487
Valorado en Kutxa por 270K
https://www.idealista.com/inmueble/99493725/
290K --> 1.2K
SUSANA
99493725
DERECHO DE SUPERFICIE (2073)
## Urnieta
<https://www.idealista.com/inmueble/99459653/>
275K + 22K Raya
<https://www.idealista.com/inmueble/98997633/>
San Juan
246K
OTAÑO INMOBILIARIA
98997633
## Andoain
<https://www.idealista.com/inmueble/99590177/>
Calle Plazaola, 11
170K
<https://www.idealista.com/inmueble/97074474/>
Plaza Arrate
170K
Inmobiliaria Ernio
ER2708
<https://www.idealista.com/inmueble/94454032/>
189K
De particular a particular. Sin comisiones. Llámanos y visita esta vivienda.
Housell
118470
<https://www.idealista.com/inmueble/96156060/>
205K
IRULEGI SERVICIOS INMOBILIARIOS
508-19693
<https://www.idealista.com/inmueble/96607031/>
Frente a Bastero kale Nagusi
210K
Xera inmobiliaria
707
<https://www.idealista.com/inmueble/99448595/>
Calle Galardi
210K
INMOBILIARIA LEIZARAN
99448595
<https://www.idealista.com/inmueble/39022030/>
210K
ULIA Servicios Inmobiliarios
39022030
<https://www.idealista.com/inmueble/39971641/>
Calle kaletxiki
179K
FOX GESTIÓN INMOBILIARIA
FX-684
<https://www.idealista.com/inmueble/99571269/>
Calle Rikardo Arregi
210K
Inmobiliaria Ernio
ER3036
<https://www.idealista.com/inmueble/99402189/>
calle Pio Baroja, 3 -- Sólo ver zona
220K
Yeelen Pellejero
00054
<https://www.idealista.com/pro/irulegi-servicios-inmobiliarios/>
2 Habitaciones a patio
<https://www.idealista.com/inmueble/98250392/>
Calle Aita Larramendi -- Ver Zona
Piso de cerámica
230K
<https://andoainberri.urumeaberri.com/es/promocion/andoainberri/tipologias>
## Añorga
<https://www.idealista.com/inmueble/89080194/>
360K + 35K Graje
## Lasarte
<https://www.idealista.com/inmueble/99625786/>
Kale Nagusia
280K
Amoblada
Baños a reformar
Inmobiliaria Etxaniz
871
## Errenteria
<https://www.idealista.com/inmueble/97196445/>
Larzabal, 5
260K
Noelia
97196445
## Astigarraga
<https://www.idealista.com/inmueble/98812580/>
Galtzaur, 4
290K
Leire
98812580
...@@ -25,6 +25,8 @@ RUN apt-get update && apt-get -y install --no-install-recommends \ ...@@ -25,6 +25,8 @@ RUN apt-get update && apt-get -y install --no-install-recommends \
# Verify if git, process tools, lsb-release (common in install instructions for CLIs) are installed # Verify if git, process tools, lsb-release (common in install instructions for CLIs) are installed
# Install the https transport support package for The Artifactory debian repository # Install the https transport support package for The Artifactory debian repository
clang-format \ clang-format \
checkinstall \
cmake-curses-gui \
direnv \ direnv \
git \ git \
git-lfs \ git-lfs \
...@@ -33,6 +35,7 @@ RUN apt-get update && apt-get -y install --no-install-recommends \ ...@@ -33,6 +35,7 @@ RUN apt-get update && apt-get -y install --no-install-recommends \
openssh-client \ openssh-client \
terminator \ terminator \
xterm \ xterm \
wget \
zsh \ zsh \
# #
ros-${ROS_DISTRO}-catkin \ ros-${ROS_DISTRO}-catkin \
...@@ -50,14 +53,16 @@ RUN if [ "${ROS_DISTRO}" = "noetic" ]; \ ...@@ -50,14 +53,16 @@ RUN if [ "${ROS_DISTRO}" = "noetic" ]; \
python3-catkin-tools \ python3-catkin-tools \
python3-click \ python3-click \
python3-numpy \ python3-numpy \
python3-osrf-pycommon; \ python3-osrf-pycommon \
python3-vcstool; \
elif [ "${ROS_DISTRO}" = "melodic" ]; \ elif [ "${ROS_DISTRO}" = "melodic" ]; \
then \ then \
apt-get -y install \ apt-get -y install \
ipython \ ipython \
python-catkin-tools \ python-catkin-tools \
python-pip \ python-pip \
python-osrf-pycommon; \ python-osrf-pycommon\
python-vcstool; \
else \ else \
echo "Not supported version"; \ echo "Not supported version"; \
fi fi
...@@ -182,6 +187,16 @@ RUN if [ "${ROS_DISTRO}" = "noetic" ]; \ ...@@ -182,6 +187,16 @@ RUN if [ "${ROS_DISTRO}" = "noetic" ]; \
echo "Not supported version"; \ echo "Not supported version"; \
fi fi
WORKDIR /tmp/srcs/
COPY /extra_libs/*.deb ./
RUN if [ "${ROS_DISTRO}" = "melodic" ]; \
then \
dpkg -i *.deb; \
fi
RUN rm -rf *.deb
# Update this date to re-run the image final update # Update this date to re-run the image final update
LABEL image.date=01-12-2022 LABEL image.date=01-12-2022
......
...@@ -18,6 +18,12 @@ function dockbuild(){ ...@@ -18,6 +18,12 @@ function dockbuild(){
# usage: rundock {noetic, melodic} [{remodel_ws, odin_ws}] [cmd] # usage: rundock {noetic, melodic} [{remodel_ws, odin_ws}] [cmd]
# To share docker --volume /var/run/docker.sock:/var/run/docker.sock:ro # To share docker --volume /var/run/docker.sock:/var/run/docker.sock:ro
function rundock() { function rundock() {
# Check if the image exist
if [[ "$(docker images -q devenv:$1 2> /dev/null)" == "" ]]; then
# build the image
dockbuild $1
fi
# Check if the container exist # Check if the container exist
if [[ $(docker ps -aq -f name=$1) ]]; then if [[ $(docker ps -aq -f name=$1) ]]; then
# Attach to conayiner # Attach to conayiner
......
...@@ -7,6 +7,12 @@ then ...@@ -7,6 +7,12 @@ then
alias l='lsd --group-dirs=first' alias l='lsd --group-dirs=first'
alias lla='lsd -lha --group-dirs=first' alias lla='lsd -lha --group-dirs=first'
alias ls='lsd --group-dirs=first' alias ls='lsd --group-dirs=first'
else
alias ll='ls -lh'
alias la='ls -a'
alias l='ls'
alias lla='ls -lha'
alias ls='ls'
fi fi
if command -v bat &> /dev/null if command -v bat &> /dev/null
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
trac_ik_kinematics_plugin/TRAC_IKKinematicsPlugin OK -- 169.979193, 196.798529, 157.477506, 160.484606, 174.703986 trac_ik_kinematics_plugin/TRAC_IKKinematicsPlugin OK -- 169.979193, 196.798529, 157.477506, 160.484606, 174.703986
ur_kinematics/UR16eKinematicsPlugin ERROR ur_kinematics/UR16eKinematicsPlugin ERROR
descartes (cpability) is not compatible with bio_ik descartes (descartes_capability) is not compatible with bio_ik
Se generó un ikfast plugin con la escena de smart3d Se generó un ikfast plugin con la escena de smart3d
smart3d_manipulator_kinematics/IKFastKinematicsPlugin_manipulator smart3d_manipulator_kinematics/IKFastKinematicsPlugin_manipulator
...@@ -22,9 +22,9 @@ Para limitar los joints del ur, modificar el archivo: ...@@ -22,9 +22,9 @@ Para limitar los joints del ur, modificar el archivo:
## Closed form IK with calibration ## Closed form IK with calibration
This is an open issue in official UR repository <https://github.com/ros-industrial/universal_robot/issues/564> This is an open issue in official UR repository <https://github.com/ros-industrial/universal_robot/issues/564> and a closed one here: <https://github.com/UniversalRobots/Universal_Robots_ROS_Driver/issues/226>
As @miguel.prada suggest one option could be take the IKFast solutions as input seeds to other gradient descendent IK solver (e.g., KDL, bio_ik, track_ik, ...). The package everything in a IK_moveit_pluging. As @miguel.prada suggest one option could be take the IKFast solutions as input seeds to other gradient descendent IK solver (e.g., KDL, bio_ik, track_ik, ...). Then package everything in a IK_moveit_pluging.
## References ## References
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment