Skip to content

Commit 0b6043c

Browse files
committed
first commit
0 parents  commit 0b6043c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+2584
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rosbags/*
2+
*.csv

AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Rafael Pérez Seguí
2+
Miguel Fernández Cortizas
3+
Pedro Arias Pérez
4+
David Pérez Saura
5+
Javier Melero Deza

LICENSE

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2022, aerostack2-developers
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
3. Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Project solar panel inspection
2+
3+
Project dependencies:
4+
5+
https://github.com/aerostack2/as2_external_object_to_tf
6+
7+
Clone this node in AS2 workspace and build.
8+
9+
In order to launch the project execute:
10+
11+
``` ./launch_as2 -n 4 -p 5 -r 4```
12+
13+
14+
15+
Please refer to https://aerostack2.github.io/ for more information.
16+
17+
785 KB
Loading
697 KB
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0"?>
2+
3+
<model>
4+
<name>grass patch</name>
5+
<version>1.0</version>
6+
<sdf version="1.3">model.sdf</sdf>
7+
8+
<author>
9+
<name>Luis Pinto</name>
10+
<email>[email protected]</email>
11+
</author>
12+
13+
<author>
14+
<name>Javier Melero</name>
15+
<email></email>
16+
</author>
17+
18+
<description>
19+
Ported to ROS2 Ignition.
20+
</description>
21+
22+
</model>
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?xml version='1.0'?>
2+
<sdf version='1.4'>
3+
<model name='grasspatch'>
4+
<static>true</static>
5+
<link name='link'>
6+
<collision name='collision'>
7+
<pose>0 0 0 0 0 0</pose>
8+
<geometry>
9+
<plane>
10+
<normal>0 0 1</normal>
11+
<size>100 100</size>
12+
</plane>
13+
</geometry>
14+
<surface>
15+
<friction>
16+
<ode>
17+
<mu>0.5</mu>
18+
<mu2>.5</mu2>
19+
</ode>
20+
</friction>
21+
</surface>
22+
</collision>
23+
24+
<visual name='visual_s10'>
25+
<pose>0 0 0 0 0 0</pose>
26+
<cast_shadows>false</cast_shadows>
27+
<geometry>
28+
<plane>
29+
<normal>0 0 1</normal>
30+
<size>100 100</size>
31+
</plane>
32+
</geometry>
33+
<material>
34+
<diffuse>1.0 1.0 1.0</diffuse>
35+
<specular>1.0 1.0 1.0</specular>
36+
<pbr>
37+
<metal>
38+
<albedo_map>materials/textures/grass_dry.jpg</albedo_map>
39+
<normal_map>materials/textures/grass_dry.jpg</normal_map>
40+
</metal>
41+
</pbr>
42+
</material>
43+
</visual>
44+
45+
</link>
46+
</model>
47+
</sdf>
48+
298 KB
Loading
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
material vrc/solar_field
2+
{
3+
receive_shadows on
4+
technique
5+
{
6+
pass
7+
{
8+
ambient 0.8 1.0 0.8 1.0
9+
diffuse 0.8 1.0 0.8 1.0
10+
specular 0.1 0.1 0.1 1.0 12.5
11+
12+
texture_unit
13+
{
14+
texture planta.png
15+
filtering anistropic
16+
max_anisotropy 16
17+
}
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)