-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'projects' into 16-nautical-archaeology-link
- Loading branch information
Showing
491 changed files
with
3,019 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
ErrorDocument 404 /404.html | ||
RewriteEngine on | ||
RewriteCond %{REQUEST_FILENAME} -d | ||
RewriteRule ^(.*?)/$ /$1.html [L] | ||
|
||
RewriteCond %{REQUEST_FILENAME}.html -f | ||
RewriteRule ^(.*?)/?$ /$1.html [L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<div class="gallery"> | ||
{%- for media_url in include.media -%} | ||
<div class="image_container"> | ||
<img | ||
src="{{site.url | append: "/" | append: media_url}}" | ||
class="gallery_img" | ||
decoding="async" alt=""> | ||
</div> | ||
{%- endfor -%} | ||
</div> | ||
|
||
|
||
{%- if include.grid -%} | ||
<!-- https://www.w3schools.com/css/css_grid.asp --> | ||
<style> | ||
.gallery { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: space-evenly; | ||
/* grid-template-columns: auto auto auto; */ | ||
gap: 10px; | ||
} | ||
|
||
.image_container { | ||
height: 200px; | ||
width: 200px; | ||
} | ||
|
||
img { | ||
object-fit: cover; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
|
||
</style> | ||
{% else %} | ||
<!-- the css to handle nice image resizing from--> | ||
<!-- https://blog.logrocket.com/responsive-image-gallery-css-flexbox/ --> | ||
<style> | ||
.gallery { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-evenly; | ||
gap: 10px; | ||
} | ||
|
||
.gallery::after { | ||
content: ""; | ||
flex-grow: 999; | ||
|
||
} | ||
|
||
.image_container { | ||
height: 300px; | ||
} | ||
|
||
img { | ||
object-fit: cover; | ||
width: 100%; | ||
height: 100%; | ||
flex: 1 1 auto; | ||
} | ||
|
||
|
||
</style> | ||
{%- endif -%} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div clas="captioned-img-container"> | ||
{% if include.src3 %} | ||
<div class="img-container"> | ||
<img class="side_img" src="{{ include.src}}"> | ||
<img class="side_img" src="{{ include.src2}}"> | ||
<img class="side_img" src="{{ include.src3}}"> | ||
</div> | ||
{% elsif include.src2 %} | ||
<div class="img-container"> | ||
<img class="side_img" src="{{ include.src}}"> | ||
<img class="side_img" src="{{ include.src2}}"> | ||
</div> | ||
{% else %} | ||
<img src="{{ include.src}}"> | ||
{% endif %} | ||
<p class="caption"> | ||
{{include.caption}} | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<div clas="captioned-img-container"> | ||
{% if include.src2 %} | ||
<div class="img-container"> | ||
<iframe width="500" height="400" src="https://www.youtube.com/embed/Tw7VNB5Eo6c" title="3D reconstruction of Native Diver Excavation" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> | ||
<iframe width="500" height="400" src="https://www.youtube.com/embed/Tw7VNB5Eo6c" title="3D reconstruction of Native Diver Excavation" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> | ||
</div> | ||
{% else %} | ||
<iframe width="500" height="400" src="https://www.youtube.com/embed/Tw7VNB5Eo6c" title="3D reconstruction of Native Diver Excavation" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> | ||
{% endif %} | ||
<p class="caption"> | ||
{{include.caption}} | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
layout: default | ||
|
||
--- | ||
|
||
<div class="feed"> | ||
{%- if page.title -%} | ||
<h1 class="page-heading">{{ page.title }} Media</h1> | ||
{%- endif -%} | ||
|
||
{%- if page.enable_nav -%} | ||
<nav id="project-navigation"> | ||
<ul id="menu-project-nav" class="menu-project"> | ||
<li id="" class="menu-projects"> | ||
<a href={{ "./" }}> | ||
{{ page.title }} | ||
</a> | ||
</li> | ||
<li id="" class="menu-projects"> | ||
<a href={{ "./project-updates" }}> | ||
Project Updates | ||
</a> | ||
</li> | ||
<li id="" class="menu-projects"> | ||
<a aria-current="page"> | ||
Media | ||
</a> | ||
</li> | ||
|
||
</ul> | ||
</nav> | ||
{%- endif -%} | ||
|
||
|
||
{% include gallery_component.html media=page.media grid=page.grid %} | ||
</div> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<div class="feed"> | ||
{%- if page.title -%} | ||
<h1 class="page-heading">{{ page.title }} Posts</h1> | ||
{%- endif -%} | ||
|
||
{%- if page.enable_nav -%} | ||
<nav id="project-navigation"> | ||
<ul id="menu-project-nav" class="menu-project"> | ||
<li id="" class="menu-projects"> | ||
<a href={{ "./" }}> | ||
{{ page.title }} | ||
</a> | ||
</li> | ||
<li id="" class="menu-projects"> | ||
<a aria-current="page"> | ||
Project Updates | ||
</a> | ||
</li> | ||
<li id="" class="menu-projects"> | ||
<a href={{ "./media" }}> | ||
Media | ||
</a> | ||
</li> | ||
|
||
</ul> | ||
</nav> | ||
{%- endif -%} | ||
|
||
|
||
|
||
{%- if site.posts.size > 0 -%} | ||
<ul class="post-list"> | ||
{%- for post in site.posts -%} | ||
{%- if post.categories contains page.category -%} | ||
|
||
<li> | ||
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} | ||
<span class="post-meta">{{ post.date | date: date_format }}</span> | ||
<h3> | ||
<a class="post-link" href="{{ post.url | relative_url }}"> | ||
{{ post.title | escape }} | ||
</a> | ||
</h3> | ||
{%- if site.show_excerpts -%} | ||
{{ post.excerpt }} | ||
{%- endif -%} | ||
</li> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
</ul> | ||
|
||
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p> | ||
{%- endif -%} | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<!-- TODO what is itemtype + itemscope--> | ||
<article class="project h-entry" itemscope itemtype="http://schema.org/BlogPosting"> | ||
<h1 class="page-heading">{{ page.title }}</h1> | ||
|
||
{%- if page.enable_nav -%} | ||
<nav id="project-navigation"> | ||
<ul id="menu-project-nav" class="menu-project"> | ||
<li id="" class="menu-projects"> | ||
<a href={{ page.permalink }} aria-current="page"> | ||
{{ page.title }} | ||
</a> | ||
</li> | ||
<li id="" class="menu-projects"> | ||
<a href={{ page.permalink | append: "/project-updates" }}> | ||
Project Updates | ||
</a> | ||
</li> | ||
<li id="" class="menu-projects"> | ||
<a href={{ page.permalink | append: "/media" }}> | ||
Media | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
{%- endif -%} | ||
|
||
|
||
<div class="project-content"> | ||
{{ content }} | ||
</div> | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<!-- Contains data for indivual project webpage --> | ||
<div class="projects-overview"> | ||
<h1 class="page-heading">{{ page.title }}</h1> | ||
|
||
{{ content }} | ||
|
||
<div class="project-gallery"> | ||
{%- for project_data in page.blurbs -%} | ||
<div class="project-container"> | ||
<a href={{ project_data.redict }}> | ||
<img | ||
src="{{site.url | append: "/" | append: project_data.photo}}" | ||
class="gallery_img" | ||
decoding="async" alt=""> | ||
</a> | ||
<div description> | ||
<a href={{ project_data.redict }}> | ||
{{ project_data.project_name }} | ||
</a> | ||
|
||
<p> | ||
{{ project_data.text }} | ||
</p> | ||
</div> | ||
</div> | ||
{%- endfor -%} | ||
</div> | ||
|
||
<style> | ||
.project-gallery { | ||
display: flex; | ||
flex: auto; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: space-evenly; | ||
gap: 10px; | ||
} | ||
|
||
.project-container { | ||
width: 250px; | ||
} | ||
|
||
img { | ||
width: 250px; | ||
height: 250px; | ||
} | ||
</style> | ||
</div> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: post | ||
title: "TESTING ACOUSTIC SPECIES NEWS FEED" | ||
date: 2024-01-18 20:29:36 -0800 | ||
categories: | ||
- acoustic-species-identification | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
.menu-project { | ||
display: flex; | ||
flex-wrap: wrap; | ||
flex-direction: row; | ||
justify-content: flex-end; | ||
align-items: center; | ||
gap: 15px; | ||
} | ||
|
||
.menu-projects { | ||
list-style-type: none; | ||
} | ||
|
||
.captioned-img-container { | ||
width: fit-content; | ||
margin: auto; | ||
} | ||
|
||
.project-content img { | ||
max-width: 100%; | ||
vertical-align: middle; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
.captioned-img-container{ | ||
width: fit-content; margin: auto; text-align: center; | ||
} | ||
|
||
.img-container{ | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 10px; | ||
height: 100%; | ||
} | ||
|
||
.side_img{ | ||
min-width: 0; | ||
flex: 2 0 10%; | ||
object-fit: cover; | ||
width: auto; | ||
min-height: 200px; | ||
height: auto; | ||
} | ||
|
||
.caption{ | ||
text-align: center; | ||
} | ||
|
||
iframe { | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+159 KB
assets/projects-floods-of-lubra-2022-2016-comparison-line-label-1074x465.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.18 MB
assets/projects-floods-of-lubra-luprak_field-loss-cropped-1074x638.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+81.7 KB
assets/projects-old_projects-Intelligent-camera-trap-11377712165_2ecc15a995.jpg
Oops, something went wrong.
Binary file added
BIN
+42.3 KB
assets/projects-old_projects-Intelligent-camera-trap-11377712685_5dfe495b30.jpg
Oops, something went wrong.
Binary file added
BIN
+61.7 KB
assets/projects-old_projects-Intelligent-camera-trap-11377714005_37585474f0.jpg
Oops, something went wrong.
Binary file added
BIN
+102 KB
assets/projects-old_projects-Intelligent-camera-trap-11377714345_e13b92b860.jpg
Oops, something went wrong.
Binary file added
BIN
+57.8 KB
assets/projects-old_projects-Intelligent-camera-trap-11377726326_fb7860eae8.jpg
Oops, something went wrong.
Binary file added
BIN
+80.1 KB
assets/projects-old_projects-Intelligent-camera-trap-11377727726_c8f43dee9f.jpg
Oops, something went wrong.
Binary file added
BIN
+79.6 KB
assets/projects-old_projects-Intelligent-camera-trap-11377804025_73aef57f70.jpg
Oops, something went wrong.
Binary file added
BIN
+79.2 KB
assets/projects-old_projects-Intelligent-camera-trap-11377804635_7d6870dcb7.jpg
Oops, something went wrong.
Binary file added
BIN
+89.9 KB
assets/projects-old_projects-Intelligent-camera-trap-11377817986_49995957bd.jpg
Oops, something went wrong.
Binary file added
BIN
+58.6 KB
assets/projects-old_projects-Intelligent-camera-trap-11377818756_c2f3283056.jpg
Oops, something went wrong.
Binary file added
BIN
+102 KB
assets/projects-old_projects-Intelligent-camera-trap-11377940123_9e9640fb0f.jpg
Oops, something went wrong.
Binary file added
BIN
+70.7 KB
assets/projects-old_projects-Intelligent-camera-trap-11377940313_b55a649b3c.jpg
Oops, something went wrong.
Binary file added
BIN
+74.3 KB
assets/projects-old_projects-Intelligent-camera-trap-project_cameratrap.jpg
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+807 KB
assets/projects-old_projects-angry-birds-Angry-Birds-front-cropped2.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+24 KB
assets/projects-old_projects-autonomous-copters-11375950055_d1f9a73241.jpg
Oops, something went wrong.
Binary file added
BIN
+30.1 KB
assets/projects-old_projects-autonomous-copters-11375963476_1c122918ee.jpg
Oops, something went wrong.
Binary file added
BIN
+50.6 KB
assets/projects-old_projects-autonomous-copters-11375964436_4a7b00fa91.jpg
Oops, something went wrong.
Binary file added
BIN
+29.7 KB
assets/projects-old_projects-autonomous-copters-11377430535_25845ac7d7.jpg
Oops, something went wrong.
Binary file added
BIN
+60.7 KB
assets/projects-old_projects-autonomous-copters-11390271815_7b02d422aa.jpg
Oops, something went wrong.
Binary file added
BIN
+40 KB
assets/projects-old_projects-autonomous-copters-11390395653_da0ee7cc47.jpg
Oops, something went wrong.
Binary file added
BIN
+27.2 KB
assets/projects-old_projects-autonomous-copters-11390397043_ea01dd63d1.jpg
Oops, something went wrong.
Binary file added
BIN
+72.6 KB
assets/projects-old_projects-autonomous-copters-11390398723_b3da8f212a.jpg
Oops, something went wrong.
Binary file added
BIN
+51.2 KB
assets/projects-old_projects-autonomous-copters-11486703216_0de6208e12.jpg
Oops, something went wrong.
Binary file added
BIN
+48.4 KB
assets/projects-old_projects-autonomous-copters-11486703776_08a5dec250.jpg
Oops, something went wrong.
Binary file added
BIN
+45.8 KB
assets/projects-old_projects-autonomous-copters-15265257347_32bb4c0efd.jpg
Oops, something went wrong.
Binary file added
BIN
+124 KB
.../projects-old_projects-autonomous-copters-15265257347_a991ec448f_o-1024x682.jpg
Oops, something went wrong.
Binary file added
BIN
+88 KB
assets/projects-old_projects-autonomous-copters-15266149739_7dc30accd2.jpg
Oops, something went wrong.
Binary file added
BIN
+88.4 KB
assets/projects-old_projects-autonomous-copters-15266212630_4f9a51526e.jpg
Oops, something went wrong.
Binary file added
BIN
+102 KB
assets/projects-old_projects-autonomous-copters-15452566922_ae1cfdf7ee.jpg
Oops, something went wrong.
Binary file added
BIN
+30.8 KB
assets/projects-old_projects-autonomous-copters-16224404846_f5e57b4028.jpg
Oops, something went wrong.
Binary file added
BIN
+85.8 KB
assets/projects-old_projects-autonomous-copters-19909683568_55b2d449de.jpg
Oops, something went wrong.
Binary file added
BIN
+14.2 KB
assets/projects-old_projects-autonomous-copters-20089828312_fb4c120bff.jpg
Oops, something went wrong.
Binary file added
BIN
+86.2 KB
assets/projects-old_projects-autonomous-copters-20753482458_85daed9efb.jpg
Oops, something went wrong.
Binary file added
BIN
+135 KB
assets/projects-old_projects-autonomous-copters-giant_copter-1024x576.jpg
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+21.4 KB
assets/projects-old_projects-autonomous-planes-11390274535_9f59a1a177.jpg
Oops, something went wrong.
Binary file added
BIN
+43.9 KB
assets/projects-old_projects-autonomous-planes-15265209610_699957b4e1.jpg
Oops, something went wrong.
Binary file added
BIN
+18.4 KB
assets/projects-old_projects-autonomous-planes-15265211690_9d26dc39b5.jpg
Oops, something went wrong.
Binary file added
BIN
+20.3 KB
assets/projects-old_projects-autonomous-planes-15265304598_de8c5efa52.jpg
Oops, something went wrong.
Binary file added
BIN
+19.8 KB
assets/projects-old_projects-autonomous-planes-15265305168_f01068134c.jpg
Oops, something went wrong.
Binary file added
BIN
+24 KB
assets/projects-old_projects-autonomous-planes-15428841966_2b91c9def7.jpg
Oops, something went wrong.
Binary file added
BIN
+26.2 KB
assets/projects-old_projects-autonomous-planes-15448754291_ba6e5a494d.jpg
Oops, something went wrong.
Binary file added
BIN
+16 KB
assets/projects-old_projects-autonomous-planes-15451912895_cc45fb41ac.jpg
Oops, something went wrong.
Binary file added
BIN
+38.7 KB
assets/projects-old_projects-autonomous-planes-15451913455_1fcb21fd1b.jpg
Oops, something went wrong.
Binary file added
BIN
+23.8 KB
assets/projects-old_projects-autonomous-planes-15451915725_450e78e0b2.jpg
Oops, something went wrong.
Binary file added
BIN
+28.1 KB
assets/projects-old_projects-autonomous-planes-16147813780_62dacf221a.jpg
Oops, something went wrong.
Binary file added
BIN
+40.7 KB
assets/projects-old_projects-autonomous-planes-16250313265_ae952edf4a.jpg
Oops, something went wrong.
Binary file added
BIN
+18.9 KB
assets/projects-old_projects-autonomous-planes-19932567388_a95f2a8257.jpg
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+88.5 KB
assets/projects-old_projects-aye-aye-2023.01.09.on-box-render-1074x604.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+88.5 KB
assets/projects-old_projects-aye-aye2023.01.09.on-box-render-1074x604.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+60.5 KB
assets/projects-old_projects-bird-nest-tracker-29009402960_6cd7ff4c3c.jpg
Oops, something went wrong.
Binary file added
BIN
+107 KB
assets/projects-old_projects-bird-nest-tracker-29010895400_369b8136d7.jpg
Oops, something went wrong.
Binary file added
BIN
+64.8 KB
assets/projects-old_projects-bird-nest-tracker-29297461905_71aa1dd6d8.jpg
Oops, something went wrong.
Binary file added
BIN
+69.1 KB
assets/projects-old_projects-bird-nest-tracker-29298757605_0324fe77fd.jpg
Oops, something went wrong.
Binary file added
BIN
+1.25 MB
assets/projects-old_projects-bird-nest-tracker-Birdnest-Deployment-1024x683.png
Oops, something went wrong.
Binary file added
BIN
+147 KB
assets/projects-old_projects-bird-nest-tracker-Birdnest-Payload-222x300.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+182 KB
assets/projects-old_projects-burrowing-owls-img_0013_detections-1074x604.jpg
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+53.9 KB
assets/projects-old_projects-del-dios-monitoring-11377732024_68f2a33cba.jpg
Oops, something went wrong.
Binary file added
BIN
+59.1 KB
assets/projects-old_projects-del-dios-monitoring-11377732954_827c877193.jpg
Oops, something went wrong.
Binary file added
BIN
+75 KB
assets/projects-old_projects-del-dios-monitoring-11378152446_d07051a928.jpg
Oops, something went wrong.
Binary file added
BIN
+63.6 KB
assets/projects-old_projects-del-dios-monitoring-28638563574_bec1632f35.jpg
Oops, something went wrong.
Binary file added
BIN
+86 KB
assets/projects-old_projects-del-dios-monitoring-28638592324_73c1f95e63.jpg
Oops, something went wrong.
Binary file added
BIN
+47.6 KB
assets/projects-old_projects-del-dios-monitoring-28638597794_c010f9a0a1.jpg
Oops, something went wrong.
Binary file added
BIN
+93 KB
assets/projects-old_projects-del-dios-monitoring-28638603144_127e8f680d.jpg
Oops, something went wrong.
Binary file added
BIN
+89.1 KB
assets/projects-old_projects-del-dios-monitoring-28640535213_0aca8f0839.jpg
Oops, something went wrong.
Binary file added
BIN
+58.4 KB
assets/projects-old_projects-del-dios-monitoring-28640541713_9a11481bec.jpg
Oops, something went wrong.
Binary file added
BIN
+83.3 KB
assets/projects-old_projects-del-dios-monitoring-28640548833_94d1160f16.jpg
Oops, something went wrong.
Binary file added
BIN
+81.3 KB
assets/projects-old_projects-del-dios-monitoring-28640551483_8ab3bb3817.jpg
Oops, something went wrong.
Binary file added
BIN
+74 KB
assets/projects-old_projects-del-dios-monitoring-28640570193_575c6696df.jpg
Oops, something went wrong.
Binary file added
BIN
+83.2 KB
assets/projects-old_projects-del-dios-monitoring-28973320270_3a5523dc4b.jpg
Oops, something went wrong.
Binary file added
BIN
+71.6 KB
assets/projects-old_projects-del-dios-monitoring-28973325050_a7d9494b74.jpg
Oops, something went wrong.
Binary file added
BIN
+76.1 KB
assets/projects-old_projects-del-dios-monitoring-28973354450_d6db39757f.jpg
Oops, something went wrong.
Binary file added
BIN
+68.8 KB
assets/projects-old_projects-del-dios-monitoring-28973362840_9b1ceaebcb.jpg
Oops, something went wrong.
Binary file added
BIN
+71.1 KB
assets/projects-old_projects-del-dios-monitoring-28973364810_bb4ddabd22.jpg
Oops, something went wrong.
Binary file added
BIN
+51.7 KB
assets/projects-old_projects-del-dios-monitoring-28973366460_db71e598c0.jpg
Oops, something went wrong.
Binary file added
BIN
+57 KB
assets/projects-old_projects-del-dios-monitoring-28973370680_7017a1a7f0.jpg
Oops, something went wrong.
Binary file added
BIN
+39.2 KB
assets/projects-old_projects-del-dios-monitoring-28973373320_ced544d05f.jpg
Oops, something went wrong.
Binary file added
BIN
+46.9 KB
assets/projects-old_projects-del-dios-monitoring-28973376770_4dcb78166d.jpg
Oops, something went wrong.
Binary file added
BIN
+87.3 KB
assets/projects-old_projects-del-dios-monitoring-29153472502_69af5dd337.jpg
Oops, something went wrong.
Binary file added
BIN
+78.2 KB
assets/projects-old_projects-del-dios-monitoring-29153487562_53d1e96828.jpg
Oops, something went wrong.
Binary file added
BIN
+70.8 KB
assets/projects-old_projects-del-dios-monitoring-29153497062_d77478d2ba.jpg
Oops, something went wrong.
Binary file added
BIN
+22.8 KB
assets/projects-old_projects-del-dios-monitoring-29153499782_d10f42d68c.jpg
Oops, something went wrong.
Binary file added
BIN
+63.1 KB
assets/projects-old_projects-del-dios-monitoring-29153501752_2f476f95ce.jpg
Oops, something went wrong.
Binary file added
BIN
+84.4 KB
assets/projects-old_projects-del-dios-monitoring-29153508622_01264de310.jpg
Oops, something went wrong.
Binary file added
BIN
+63.1 KB
assets/projects-old_projects-del-dios-monitoring-29153513642_84ae61e8ce.jpg
Oops, something went wrong.
Binary file added
BIN
+75.4 KB
assets/projects-old_projects-del-dios-monitoring-29153518652_6f9be46a18.jpg
Oops, something went wrong.
Binary file added
BIN
+62.8 KB
assets/projects-old_projects-del-dios-monitoring-29153526042_1cc9499318.jpg
Oops, something went wrong.
Binary file added
BIN
+61.8 KB
assets/projects-old_projects-del-dios-monitoring-29153527662_9e1f40af20.jpg
Oops, something went wrong.
Binary file added
BIN
+80.5 KB
assets/projects-old_projects-del-dios-monitoring-29153530702_082e7d624e.jpg
Oops, something went wrong.
Binary file added
BIN
+79.1 KB
assets/projects-old_projects-del-dios-monitoring-29153532992_f2049a0a6a.jpg
Oops, something went wrong.
Binary file added
BIN
+70.3 KB
assets/projects-old_projects-del-dios-monitoring-29153535052_109acff50c.jpg
Oops, something went wrong.
Binary file added
BIN
+55.8 KB
assets/projects-old_projects-del-dios-monitoring-29153540862_c798975bcf.jpg
Oops, something went wrong.
Binary file added
BIN
+69.6 KB
assets/projects-old_projects-del-dios-monitoring-29183041461_faff368402.jpg
Oops, something went wrong.
Binary file added
BIN
+71.1 KB
assets/projects-old_projects-del-dios-monitoring-29183049281_1859bbf884.jpg
Oops, something went wrong.
Binary file added
BIN
+106 KB
assets/projects-old_projects-del-dios-monitoring-29183050981_8d7120b8b5.jpg
Oops, something went wrong.
Binary file added
BIN
+95.4 KB
assets/projects-old_projects-del-dios-monitoring-29183053621_b793a60769.jpg
Oops, something went wrong.
Binary file added
BIN
+96.1 KB
assets/projects-old_projects-del-dios-monitoring-29183055871_eb081e9aab.jpg
Oops, something went wrong.
Binary file added
BIN
+60.9 KB
assets/projects-old_projects-del-dios-monitoring-29183058681_0656805ed6.jpg
Oops, something went wrong.
Binary file added
BIN
+83.8 KB
assets/projects-old_projects-del-dios-monitoring-29227370206_d85c697e55.jpg
Oops, something went wrong.
Binary file added
BIN
+97.9 KB
assets/projects-old_projects-del-dios-monitoring-29227371666_4716e59099.jpg
Oops, something went wrong.
Binary file added
BIN
+97.8 KB
assets/projects-old_projects-del-dios-monitoring-29227374686_7d63958672.jpg
Oops, something went wrong.
Binary file added
BIN
+53.6 KB
assets/projects-old_projects-del-dios-monitoring-29227399466_656228d31a.jpg
Oops, something went wrong.
Binary file added
BIN
+45.2 KB
assets/projects-old_projects-del-dios-monitoring-29227400776_5898488aa9.jpg
Oops, something went wrong.
Binary file added
BIN
+65.2 KB
assets/projects-old_projects-del-dios-monitoring-29261684705_633a74832c.jpg
Oops, something went wrong.
Binary file added
BIN
+73.9 KB
assets/projects-old_projects-del-dios-monitoring-29261687375_003328971a.jpg
Oops, something went wrong.
Binary file added
BIN
+75 KB
assets/projects-old_projects-del-dios-monitoring-29261688745_6a03eb7430.jpg
Oops, something went wrong.
Binary file added
BIN
+56.6 KB
assets/projects-old_projects-del-dios-monitoring-29261702385_740ea56862.jpg
Oops, something went wrong.
Binary file added
BIN
+48.9 KB
assets/projects-old_projects-del-dios-monitoring-deldios_13-e1423176387551.jpg
Oops, something went wrong.
Binary file added
BIN
+120 KB
assets/projects-old_projects-del-dios-monitoring-deldios_13_2-e1423176368730.jpg
Oops, something went wrong.
Binary file added
BIN
+67.1 KB
assets/projects-old_projects-elephant-monitoring-28648796553_7e70d0a869.jpg
Oops, something went wrong.
Binary file added
BIN
+71.7 KB
assets/projects-old_projects-elephant-monitoring-28648799313_6a910bcda9.jpg
Oops, something went wrong.
Binary file added
BIN
+714 KB
assets/projects-old_projects-elephant-monitoring-Elephant_Circuitry-1024x768.png
Oops, something went wrong.
Binary file added
BIN
+177 KB
assets/projects-old_projects-elephant-monitoring-elephant-1024x683.jpg
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+137 KB
assets/projects-old_projects-harpy_find-KasiaBiernacka_MG_8411-1024x683.jpg
Oops, something went wrong.
Binary file added
BIN
+20.7 KB
assets/projects-old_projects-lubrak-village-frontal-ps3_edited-e1654024061974.jpg
Oops, something went wrong.
Binary file added
BIN
+45.2 KB
assets/projects-old_projects-maya-archaeology-15266303808_2f385acc95_n.jpg
Oops, something went wrong.
Binary file added
BIN
+29.9 KB
assets/projects-old_projects-maya-archaeology-29008736970_a393afb9a5_n.jpg
Oops, something went wrong.
Binary file added
BIN
+41 KB
assets/projects-old_projects-maya-archaeology-29366249232_17565cab29_n.jpg
Oops, something went wrong.
Binary file added
BIN
+86.4 KB
assets/projects-old_projects-maya-archaeology-CaveWallScan-350x244.png
Oops, something went wrong.
Binary file added
BIN
+78 KB
assets/projects-old_projects-maya-archaeology-LiDARm71insideoutside-350x173.png
Oops, something went wrong.
Binary file added
BIN
+67.2 KB
assets/projects-old_projects-maya-archaeology-LimestoneStuccoScan-350x244.png
Oops, something went wrong.
Binary file added
BIN
+169 KB
...projects-old_projects-maya-archaeology-SpiderMonkeyBowlUnrealEngine-350x255.png
Oops, something went wrong.
Binary file added
BIN
+110 KB
assets/projects-old_projects-maya-archaeology-sfmlidarintegeration-350x184.png
Oops, something went wrong.
Binary file added
BIN
+51.7 KB
assets/projects-old_projects-nautical-archaeology-14329117520_5e7b66646e.jpg
Oops, something went wrong.
Binary file added
BIN
+33.4 KB
assets/projects-old_projects-nautical-archaeology-14329120460_8eaa2a88de.jpg
Oops, something went wrong.
Binary file added
BIN
+70.5 KB
assets/projects-old_projects-nautical-archaeology-14329126730_3f377941c2.jpg
Oops, something went wrong.
Binary file added
BIN
+62.2 KB
assets/projects-old_projects-nautical-archaeology-14329126950_fa6dc9a113.jpg
Oops, something went wrong.
Binary file added
BIN
+51.3 KB
assets/projects-old_projects-nautical-archaeology-14329127560_8d2cd78ef7.jpg
Oops, something went wrong.
Binary file added
BIN
+97.6 KB
assets/projects-old_projects-nautical-archaeology-14329127900_995a5dcc29.jpg
Oops, something went wrong.
Binary file added
BIN
+91 KB
assets/projects-old_projects-nautical-archaeology-14329128640_3db34bda10.jpg
Oops, something went wrong.
Binary file added
BIN
+76 KB
assets/projects-old_projects-nautical-archaeology-14329175229_18216a3ff2.jpg
Oops, something went wrong.
Binary file added
BIN
+60.7 KB
assets/projects-old_projects-nautical-archaeology-14329176619_81e64d7980.jpg
Oops, something went wrong.
Binary file added
BIN
+81.6 KB
assets/projects-old_projects-nautical-archaeology-14329177889_5484a1a919.jpg
Oops, something went wrong.
Binary file added
BIN
+71.4 KB
assets/projects-old_projects-nautical-archaeology-14329184149_4c4094c16f.jpg
Oops, something went wrong.
Binary file added
BIN
+65.3 KB
assets/projects-old_projects-nautical-archaeology-14329185289_7557092971.jpg
Oops, something went wrong.
Binary file added
BIN
+59.9 KB
assets/projects-old_projects-nautical-archaeology-14329185789_c7b5736a28.jpg
Oops, something went wrong.
Binary file added
BIN
+69.7 KB
assets/projects-old_projects-nautical-archaeology-14329187489_f13994c05a.jpg
Oops, something went wrong.
Binary file added
BIN
+66.7 KB
assets/projects-old_projects-nautical-archaeology-14329193928_5a14a88f66.jpg
Oops, something went wrong.
Binary file added
BIN
+80.8 KB
assets/projects-old_projects-nautical-archaeology-14329199698_4fce381381.jpg
Oops, something went wrong.
Binary file added
BIN
+61.8 KB
assets/projects-old_projects-nautical-archaeology-14329200248_e02b638149.jpg
Oops, something went wrong.
Binary file added
BIN
+52.2 KB
assets/projects-old_projects-nautical-archaeology-14329200788_3698e48f47.jpg
Oops, something went wrong.
Binary file added
BIN
+70.7 KB
assets/projects-old_projects-nautical-archaeology-14329325967_fa2f79d10a.jpg
Oops, something went wrong.
Binary file added
BIN
+69.9 KB
assets/projects-old_projects-nautical-archaeology-14329326127_3ffb0e9e07.jpg
Oops, something went wrong.
Binary file added
BIN
+96 KB
assets/projects-old_projects-nautical-archaeology-14329330307_7c82d8a458.jpg
Oops, something went wrong.
Binary file added
BIN
+61 KB
assets/projects-old_projects-nautical-archaeology-14329334357_198e0f196c.jpg
Oops, something went wrong.
Binary file added
BIN
+58.8 KB
assets/projects-old_projects-nautical-archaeology-14329337387_2cb1bd3be8.jpg
Oops, something went wrong.
Binary file added
BIN
+80.2 KB
assets/projects-old_projects-nautical-archaeology-14492674266_1165a85b74.jpg
Oops, something went wrong.
Binary file added
BIN
+61.5 KB
assets/projects-old_projects-nautical-archaeology-14492682356_99fbefdbbd.jpg
Oops, something went wrong.
Binary file added
BIN
+42.9 KB
assets/projects-old_projects-nautical-archaeology-14512387171_d11b2f7683.jpg
Oops, something went wrong.
Binary file added
BIN
+63 KB
assets/projects-old_projects-nautical-archaeology-14512388271_7ca9cde8df.jpg
Oops, something went wrong.
Binary file added
BIN
+23.5 KB
assets/projects-old_projects-nautical-archaeology-14512389111_b1da70ace1.jpg
Oops, something went wrong.
Binary file added
BIN
+53.9 KB
assets/projects-old_projects-nautical-archaeology-14512393191_ac66421352.jpg
Oops, something went wrong.
Binary file added
BIN
+58.6 KB
assets/projects-old_projects-nautical-archaeology-14512398431_22f4fd4aa1.jpg
Oops, something went wrong.
Binary file added
BIN
+63.2 KB
assets/projects-old_projects-nautical-archaeology-14512398561_9aecb23f15.jpg
Oops, something went wrong.
Binary file added
BIN
+73.2 KB
assets/projects-old_projects-nautical-archaeology-14512399301_e3db69d0f4.jpg
Oops, something went wrong.
Binary file added
BIN
+72.7 KB
assets/projects-old_projects-nautical-archaeology-14514380644_cdf2f11aec.jpg
Oops, something went wrong.
Binary file added
BIN
+91 KB
assets/projects-old_projects-nautical-archaeology-14514381094_dd880ae5f0.jpg
Oops, something went wrong.
Binary file added
BIN
+71.4 KB
assets/projects-old_projects-nautical-archaeology-14514386704_40c1961f8e.jpg
Oops, something went wrong.
Binary file added
BIN
+74.2 KB
assets/projects-old_projects-nautical-archaeology-14514389984_ecaf254d0d.jpg
Oops, something went wrong.
Binary file added
BIN
+81.2 KB
assets/projects-old_projects-nautical-archaeology-14514679192_b198630e11.jpg
Oops, something went wrong.
Binary file added
BIN
+65.2 KB
assets/projects-old_projects-nautical-archaeology-14514687752_503b03a99f.jpg
Oops, something went wrong.
Binary file added
BIN
+77.9 KB
assets/projects-old_projects-nautical-archaeology-14514687932_c12ffda46e.jpg
Oops, something went wrong.
Binary file added
BIN
+97.4 KB
assets/projects-old_projects-nautical-archaeology-14515771115_26be2f185b.jpg
Oops, something went wrong.
Binary file added
BIN
+71.4 KB
assets/projects-old_projects-nautical-archaeology-14515771355_bc7103effb.jpg
Oops, something went wrong.
Binary file added
BIN
+102 KB
assets/projects-old_projects-nautical-archaeology-14515774905_96e1cf010a.jpg
Oops, something went wrong.
Binary file added
BIN
+79.3 KB
assets/projects-old_projects-nautical-archaeology-14515776985_72e0f20e1e.jpg
Oops, something went wrong.
Binary file added
BIN
+45.4 KB
assets/projects-old_projects-nautical-archaeology-14535881363_cd1a1be0d8.jpg
Oops, something went wrong.
Binary file added
BIN
+78 KB
assets/projects-old_projects-nautical-archaeology-14535881783_d356849c14.jpg
Oops, something went wrong.
Binary file added
BIN
+59.6 KB
assets/projects-old_projects-nautical-archaeology-14535882983_3742549326.jpg
Oops, something went wrong.
Binary file added
BIN
+56.2 KB
assets/projects-old_projects-nautical-archaeology-14535883493_bf68b9279a.jpg
Oops, something went wrong.
Binary file added
BIN
+75.5 KB
assets/projects-old_projects-nautical-archaeology-14535886383_9ff7cb11f8.jpg
Oops, something went wrong.
Binary file added
BIN
+57 KB
assets/projects-old_projects-nautical-archaeology-14535887213_b0e4c8d00f.jpg
Oops, something went wrong.
Binary file added
BIN
+53.5 KB
assets/projects-old_projects-nautical-archaeology-14535893133_863189a260.jpg
Oops, something went wrong.
Oops, something went wrong.