Skip to content

Commit

Permalink
Remove aws link modified about page (#124)
Browse files Browse the repository at this point in the history
* updated title video to 0.9.15

* added oasis blog post

* finished blog

* typo

* small edits

* removed NVIDIA as sponsor

* remove about page

* modified about page
  • Loading branch information
MattRoweEAIF authored Jan 17, 2024
1 parent 8c2621d commit 2f4557e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion _posts/2019-03-01-release-0.9.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ In this release, we have simplified the process of creating and ingesting new co

### Importing maps into CARLA

New maps based on FBX and OpenDrive files, such as those created by [VectorZero's RoadRunner](https://www.vectorzero.io/){:target="_blank"} software. To this end maps just have to be placed as tar.gz files into the "ExportedMaps" folder within CARLA root folder. Then you can run ImportMaps.sh (for now only on Linux) to patch the map into the project. Then just load that map by invoking it in CARLA by name. An example of this functionality can be seen by downloading our new [Town06](https://carla-releases.s3.eu-west-3.amazonaws.com/Linux/Town06_0.9.5.tar.gz){:target="_blank"} and following these instructions:
New maps based on FBX and OpenDrive files, such as those created by [VectorZero's RoadRunner](https://www.vectorzero.io/){:target="_blank"} software. To this end maps just have to be placed as tar.gz files into the "ExportedMaps" folder within CARLA root folder. Then you can run ImportMaps.sh (for now only on Linux) to patch the map into the project. Then just load that map by invoking it in CARLA by name. An example of this functionality can be seen by downloading our new [Town06](https://carla-releases.s3.us-east-005.backblazeb2.com/Linux/Town06_0.9.5.tar.gz){:target="_blank"} and following these instructions:

```
mv Town06_0.9.4.tar.gz <CARLA_ROOT>/ExportedMaps
Expand Down
6 changes: 3 additions & 3 deletions _team/founders/01-german.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name_: German Ros
description:
name_: German Ros - NVIDIA
description: German is the director of Simulation Ecosystem Development at NVIDIA. He holds a PhD in Visual Simultaneous Localization and Mapping for Autonomous Cars from the Computer Vision Center in Barcelona. He manages several open source projects in autonomous driving and robotics.
portrait: img/team/researchers/german_ros.png
from: Intel Labs
from:
page: http://germanros.net/
github:
---
6 changes: 3 additions & 3 deletions _team/founders/02-vladlen.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name_: Vladlen Koltun
description:
name_: Vladlen Koltun - Apple
description: Vladlen is a Distinguished scientist at Apple, working on research in multiple areas of machine learning. He previously worked as Chief Scientest for Intelligent Systems at Intel, where he built an international research lab, focusing on robotics, computer vision, image synthesis and machine learning.
portrait: img/team/researchers/vladlen_koltun.png
from: Apple
from:
page: http://vladlen.info/
github:
---
6 changes: 3 additions & 3 deletions _team/founders/03-antonio.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name_: Antonio M. Lopez
description:
name_: Antonio M. Lopez - CVC & UAB
description: Antonio is the head of the Advanced Driver Assistance Systems (ADAS) Group at the Computer Vision Center and Associate Professor of the Computer Science Department at the the Universitat Autònoma de Barcelona (UAB).
portrait: img/team/researchers/antonio_lopez.png
from: CVC & UAB
from:
page: http://www.cvc.uab.es/~antonio/
github:
---
8 changes: 6 additions & 2 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
---

<div class="team text-center">
{% assign teams = "founders,developers,artists,former members" | split: ',' %}
{% assign teams = "founders,board members" | split: ',' %}
{% for team in teams%}
<h2 class="text-center">
{{ team | capitalize }}
</h2>
<br>
<br>
{% for member in site.team %}
{% assign member_team = member | relative_url | replace: '%20', ' ' | split:'/'%}
{% if member_team[2] == team %}
Expand All @@ -18,12 +20,14 @@ <h2 class="text-center">
{% else if member.github %}
{% assign url = member.github %}
{% endif %}
<div style="width: 25%; margin: 10px; display: inline-block; vertical-align: top;">
<a href="{{url}}">
<img src="/{{ member.portrait }}" alt="{{ member.name_ }}">
<p class="text-center team_name">{{ member.name_ }}</p>
</a>
<p class="text-center team_description">{{ member.description }}</p>
<p class="text-center team_from">{{ member.from }}</p>
</a>
</div>
{% endif %}
{% endfor %}
{% endfor %}
Expand Down

0 comments on commit 2f4557e

Please sign in to comment.