On a quest for agency in Bellairs
at main 3.7 kB view raw
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>Conservation and Sensing - A Human Approach to Computational Science</title> 7 <link rel="stylesheet" href="styles.css"> 8 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> 9</head> 10<body> 11 <header> 12 <nav> 13 <div class="logo">The Bellairs Manifesto</div> 14 <div class="nav-container"> 15 <ul class="main-nav"> 16 <li><a href="index.html#manifesto">Manifesto</a></li> 17 <li><a href="index.html#usecases">Actions</a></li> 18 <li><a href="index.html#timeline">Timeline</a></li> 19 <li><a href="index.html#about">About</a></li> 20 </ul> 21 <ul class="social-nav"> 22 <li class="social-icon"><a href="https://matrix.to/#/#bellairs-discuss:recoil.org" target="_blank" aria-label="Matrix"> 23 <img src="matrix-icon.svg" alt="Matrix" width="20" height="20" class="matrix-icon"> 24 </a></li> 25 <li class="social-icon"><a href="https://bsky.app/profile/bellairs.quest" target="_blank" aria-label="Bluesky"> 26 <img src="bluesky-icon.svg" alt="Bluesky" width="20" height="20" class="bsky-icon"> 27 </a></li> 28 </ul> 29 </div> 30 </nav> 31 </header> 32 33 <section id="usecase-detail"> 34 <div class="container"> 35 <h2>Use Case: Conservation and Sensing</h2> 36 37 <div class="usecase"> 38 <p>Some large-scale research projects require acquiring, aggregating, manipulating, analyzing, and reporting on a multitude of data sets. Sometimes, the outputs may even connect to real-time systems, such as data dashboards or sensor networks, which need to be configured as a result of the analysis. For example, the IUCN Red List of Threatened Species is derived from a multitude of data regarding species sightings, habitat loss, and climate predictions. Among this data is output from the Centre for Earth Observation, which itself constructs complex models that assimilate data. As another example, a network of sensing buoys may receive control inputs from a control system that sends commands on the basis of weather predictions and mission inputs.</p> 39 <p>Some inputs must be protected. For example, locations of threatened species may be useful in the analysis but need to be kept private lest poachers destroy those populations. Thus, although this scenario benefits from openness and transparency in general, not everything can be made public.</p> 40 <p class="investigators"><strong>Investigators:</strong> <a href="https://cseweb.ucsd.edu/~mcoblenz/" target="_blank">Michael Coblenz</a>, <a href="https://anil.recoil.org" target="_blank">Anil Madhavapeddy</a>, <a href="https://web.eecs.umich.edu/~comar/" target="_blank">Cyrus Omar</a></p> 41 </div> 42 43 <div class="back-link"> 44 <a href="index.html#usecases">&larr; Back to all use cases</a> 45 </div> 46 </div> 47 </section> 48 49 <footer> 50 <div class="container"> 51 <p class="disclaimer">&copy; 2025 in the public domain. This site is not directly affiliated with the <a href="https://www.mcgill.ca/bellairs/" target="_blank">Bellairs Research Institute</a>, but we are grateful to them for hosting our research symposium that made this manifesto possible.</p> 52 </div> 53 </footer> 54 55 <script src="scripts.js"></script> 56</body> 57</html>