-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmatrix2.html
59 lines (53 loc) · 2.64 KB
/
matrix2.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
---
title: Learning Standards Matrix
date: 2018-07-24
---
<div style="width: 95%; max-width: 50em; margin: auto;">
<img src="EdMatrix.png" alt="Learning Standards Matrix Diagram" style="width: 100%;" />
</div>
<p>This matrix positions representative Learning Technology Standards on two dimensions. The vertical dimension is <a href="/TaxonomyAndLayers.html#taxonomy">A Taxonomy of Learning Standards</a>. The horizontal dimension is the <a href="/TaxonomyAndLayers.html#fourlayer">Four-Layer Framework for Data Standards</a>. Positioning standards according these dimensions can help education technology vendors and consumers identify the standards that are relevant to their work.</p>
<p>The following table is a more complete list of learning standards. Follow the links access the standards and their governing organizations. If you're aware of a standards effort that's not listed, or if a description is incomplete, <a href="/contribute.html">please contribute your updates.</a></p>
<p>Also see the <a href="organizations.html">Table of Standards Organizations.</a></p>
<h2>Standards Table</h2>
<table>
<tr><th>Plot</th><th>Standard</th><th>Standards<br/>Org</th><th>Description</th><th style="min-width: 10em;">Types</th><th style="min-width: 8.5em;">Data Layers</th><th>Ed<br/>Levels</th></tr>
{%- for post in site.stds -%}
<tr>
<td><input type="checkbox" /></td>
<td><a href="{{ post.stdurl }}">{{ post.title | escape }}</a></td>
<td><a href="/orgs/{{ post.org | slugify: "latin" }}.html">{{ post.org | escape }}</a></td>
<td class="streamline">{{ post.excerpt }} <a href="{{ post.url }}">(more)</a></td>
<td>
{%- assign tps = post.types | split: "," -%}
{%- for type in tps -%}
{%- unless forloop.first -%}<br/>{%- endunless -%}
{{ type | strip }}
{%- endfor -%}
</td>
<td>
{%- assign layers = post.datalayers | split: "," -%}
{%- for layer in layers -%}
{%- unless forloop.first -%}<br/>{%- endunless -%}
{%- assign s = layer | strip -%}
{%- case s -%}
{%- when '1' -%}1. Data Dict
{%- when '2' -%}2. Data Model
{%- when '3' -%}3. Serialization
{%- when '4' -%}4. Protocol
{%- endcase -%}
{%- endfor -%}</td>
<td>
{%- assign tps = post.edlevels | split: "," -%}
{%- for level in tps -%}
{%- unless forloop.first -%}<br/>{%- endunless -%}
{{ level | strip }}
{%- endfor -%}
</td>
</tr>
{%- endfor -%}
</table>
<table class="layout"><tr>
<td><a href="https://open-stand.org"><img alt="Open Stand Group Logo" height="128px" width="128px" src="res/open-stand512blue.png"></a></td>
<td>The contributors to EdMatrix advocate for <a href="https://open-stand.org">open-stand.org</a> principles.</td>
</tr>
</table>