-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproduct-grant.html
232 lines (216 loc) · 14.2 KB
/
product-grant.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RTR9SSJEHM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RTR9SSJEHM');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Planning Technology Handbook and Planning Through the Black Mirror Card Game</title>
<!--
--------------------------------------------------------------------------------
| Thanks for checking out this page's source! |
| If you've made it this far, you should consider contributing to the |
| urban-and-regional-planning-resources GitHub repository. We'd love |
| your help in continuing to make this available for planners! |
--------------------------------------------------------------------------------
-->
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="https://apa-technology-division.github.io/css/pagestyles.css">
<!-- <link rel="stylesheet" href="css/pagestyles.css"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<script type="text/javascript" src="https://www.termsfeed.com/public/cookie-consent/4.1.0/cookie-consent.js" charset="UTF-8"></script>
<script type="text/javascript" charset="UTF-8">
document.addEventListener('DOMContentLoaded', function () {
cookieconsent.run({"notice_banner_type":"simple","consent_type":"express","palette":"dark","language":"en","page_load_consent_levels":["strictly-necessary"],"notice_banner_reject_button_hide":false,"preferences_center_close_button_hide":false,"page_refresh_confirmation_buttons":false,"website_name":"Tech Division GitHub"});
});
</script>
<!-- Darkmode Google Analytics Pop-up -->
<script type="text/plain" data-cookie-consent="functionality" async src="https://www.googletagmanager.com/gtag/js?id=G-RTR9SSJEHM"></script>
<script type="text/plain" data-cookie-consent="functionality">
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RTR9SSJEHM');
</script>
<!-- end of Darkmode Google Analytics Pop-up-->
<noscript>Free cookie consent management tool by <a href="https://www.termsfeed.com/">TermsFeed</a></noscript>
<!-- End Cookie Consent by TermsFeed https://www.TermsFeed.com -->
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" onclick="window.location.reload()" href="#"><img style="width:225px; height:auto"
src="https://planning-org-uploaded-media.s3.amazonaws.com/images/Tech_horizontal_647397.original.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="https://tech.planning.org/" target="_blank">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://APA-Technology-Division.github.io/assets/Division_Sponsorship_Package_23.pdf" target="_blank">Sponsor</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/APA-Technology-Division/APA-Technology-Division.github.io" target="_blank">GitHub</a>
</li>
</ul>
</div>
</nav>
<!-- Main Card -->
<div style="background-color:white;border-radius:25px; ">
<div class="card" id="overview" style="padding-left: 10%; padding-right: 10%; padding-top:30px; padding-bottom:50px; border:transparent">
<div class="container">
<button id="back-to-top" title="Back to Top">⇧</button>
<script>
// Get the button
let backToTopButton = document.getElementById("back-to-top");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction();
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
backToTopButton.style.display = "block";
} else {
backToTopButton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
backToTopButton.addEventListener("click", function () {
window.scrollTo({
top: 0,
behavior: "smooth"
});
});
</script>
<h1 class="text-left mt-5"><b>Planning Technology Handbook + <br> Planning Through the Black Mirror Card Game</b></h1>
<br><br>
<p><b>Last Updated:</b> July 2024</p>
<p class="text-left">Engage with the Technology Division and share your knowledge with others in the planning profession through this initiative made possible with the support of the 2024 American Planning Association's Product Development Grant. This grant will allow the Technology Division to develop a planning technology handbook and a refined version of the "Planning Through the Black Mirror" card game, which together aim to provide accessible, centralized guidance on technology strategy, applications, and ethics in planning practice, while engaging planners in real-world scenarios and best practices.</p>
<div class="flourish-embed flourish-cards" data-src="visualisation/18863080"><script src="https://public.flourish.studio/resources/embed.js"></script></div>
<hr>
<h2> Project Milestones and Engagement Opportunities </h2>
<p>Click on each circle to view engagement opportunities for experienced professionals and students. Black denotes Handbook action items, yellow denotes card game action items.</p>
<object id="svg-object" type="image/svg+xml" data="assets/grant-project-timeline.svg"></object>
<br>
<br><br><hr><br>
<h3 id="first-draft"><i class="fas fa-link"></i> Handbook First Draft</h3>
<p>The Planning Technology handbook provides accessible, centralized guidance on technology strategy, applications, and ethics in planning practice across planning domain areas. The handbook is supplemented by the Planning Through the Black Mirror card game, which encourages planners to engage with real-life scenarios and evaluate solutions based on best practices.
<br><br>
<b>Handbook Contents</b>
<br>
- Planning Through the Black Mirror Game Instructions
<br>- Core Concepts: Ethics and strategy for data, product development, procurement, methods for addressing cross-cutting issues
<br>- Applications and Solutions: Overview of applicability to planning domains (listed below), interrogation of examples of solutions, metrics for evaluation for solution efficacy, tools and resources supporting applications and solutions</p>
<ul>
<li>Climate</li>
<li>Economic Development</li>
<li>Employment</li>
<li>Energy and Natural Resources</li>
<li>Environment and Ecosystem Services</li>
<li>Food Systems</li>
<li>Hazard Mitigation and Disaster Recovery</li>
<li>Historic Preservation</li>
<li>Housing</li>
<li>Land Use and Land Cover</li>
<li>Transportation Urban Design</li>
</ul>
<div style="text-align:center; background-color:lightgray; padding:5%"><p><b>OPPORTUNITIES</b></p>
<ul>
<li><b><u>OPEN CALL FOR CASE STUDY EXAMPLES</u></b> - Seeking case study examples from planning practice (public and private sector; Ongoing); please email <a style="background-color:#dbf436" href="mailto:apatechdivision@gmail.com"><b>apatechdivision@gmail.com</b></a> (CC: <a href="mailto:lplass@berkeley.edu">Lian Plass</a>) with a description of the technology application and any supplemental materials you can provide.<br><br>
</li>
<li><b><u>OPEN CALL FOR SUBJECT MATTER EXPERT REVIEWERS</u></b> - for above planning domain areas for external review of draft document sections.
<br><br>
<b>Please fill out the <a style="background-color:#dbf436" href="https://forms.gle/yFgGE6JCQapBD3Cx7">interest form</a> by August 31st. </b>
<br><br>
<b>Note:</b> Preference is given to Technology Division members, please consider <b><a style="background-color:#dbf436" href="http://tech.planning.org">joining</a></b> if you have not already.</li>
</ul></div>
<hr>
<br>
<h3 id="review-revision"><i class="fas fa-link"></i> Handbook Review and Revision</h3>
<p>
This handbook will undergo review and revision throughout the Fall and Winter of 2024. Members and other interested individuals who submitted an interest form will be given the opportunity to review and contribute to handbook contents during this phase.
</p>
<hr>
<br>
<h3 id="design-copy"><i class="fas fa-link"></i> Handbook Design and Copy</h3>
<p>The handbook will undergo copyediting and design in the Winter of 2024. The handbook will be formatted for digital access.</p>
<hr>
<br>
<h3 id="content-development"><i class="fas fa-link"></i> Card Game Content Development</h3>
<p>The purpose of the Planning Through the Black Mirror card game is to supplement the Planning Technology Handbook and engage planners in exploring and solving real-world planning challenges related to technology through an interactive, educational, and fun game-based approach.</p>
<div style="text-align:center; background-color:lightgray; padding:5%"><p><b>OPPORTUNITIES</b></p>
<p>
<u><b>OPEN CALL FOR TWO CONTENT DEVELOPMENT ASSISTANTS</b></u> - Seeking two students to conduct research, collaborate with subject matter experts, and support content development for the "Planning Through the Black Mirror" card game, ensuring content accuracy and relevance.
<br><br>
<b>Please review the <a style="background-color:#dbf436" href="https://drive.google.com/file/d/1ox9N_oswmFN4l5wDYBLGcxgWaRAfo5Dv/view?usp=drive_link">role description</a> and apply by August 31st.</b>
<br><br>
<b>Note:</b> Preference is given to Technology Division members, please consider <a style="background-color:#dbf436" href="http://tech.planning.org"><b>joining</b></a> if you have not already.</div>
</p>
<hr>
<br>
<h3 id="first-draft-card"><i class="fas fa-link"></i> Card Game Copy First Draft Complete</h3>
<p>The first draft of the Planning Through the Black Mirror card game content will be completed by Fall/Winter 2024. This initial version will include detailed case studies and scenarios to be reviewed and refined in the subsequent stages.</p>
<hr>
<br>
<h3 id="card-review-revision"><i class="fas fa-link"></i> Card Game Review and Revision</h3>
<p>The card game will undergo review and revision during the Winter of 2024. Feedback from subject matter experts, planners, and Division members will be incorporated to enhance the accuracy, clarity, and educational value of the game.</p>
<hr>
<br>
<h3 id="card-design-copy"><i class="fas fa-link"></i> Card Game Design and Copy</h3>
<p>In the winter of 2024 going into early 2025, the card game will be copyedited and designed. This phase will focus on the visual and functional aspects of the game, ensuring it is engaging, accessible, and ready for production.</p>
<hr>
<br>
<h3 id="publishing"><i class="fas fa-link"></i> Publishing Handbook and Card Game</h3>
<p>The final versions of the Planning Technology Handbook and the Planning Through the Black Mirror card game will be published and made available to all members by the end of February 2025. These resources aim to provide valuable guidance and interactive learning tools for urban planners.
<br><br>
<b>The handbook will be accessible as a downloadable PDF and possibly a limited print edition, while the card game will be offered in digital format as a PDF document and virtual tabletop RPG templates to accommodate different preferences. The division is also considering a limited print edition of the card game as well.</b>
</p>
<hr>
<br>
<script>
document.getElementById('svg-object').addEventListener('load', function() {
var svgDoc = this.contentDocument;
var elements = svgDoc.querySelectorAll('[data-target]');
elements.forEach(function(el) {
el.addEventListener('click', function() {
var targetId = el.getAttribute('data-target');
var targetElement = document.getElementById(targetId);
if (targetElement) {
targetElement.scrollIntoView({ behavior: 'smooth' });
}
});
});
});
</script>
</div>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"
integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8="
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js" integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V" crossorigin="anonymous"></script>
<!-- Custom JS -->
<script src="scripts/ALAP.js" defer></script>
</body>
<footer>
<br>
<p style="text-align:center">pli | 2023</p>
<br>
<a href="#" id="open_preferences_center">Update cookies preferences</a>
</footer>
</html>