Skip to content

Commit

Permalink
added tags
Browse files Browse the repository at this point in the history
  • Loading branch information
rjoberon committed Jul 26, 2024
1 parent 7a4b4b4 commit e730b15
Show file tree
Hide file tree
Showing 11 changed files with 91 additions and 6 deletions.
9 changes: 9 additions & 0 deletions _includes/tag_index_page.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: default
---

<h1>{{ tag }} Posts</h1>

{% for post in tagged_posts %}
{{ post.title }}
{% endfor %}
2 changes: 1 addition & 1 deletion _posts/2024-04-02-finding-the-tiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Finding the tiles
image: /img/offsets_zoom.png
description: We find a way to identify and find the image tiles.
tags: ["dsat", "cis/cod", "tiles"]
tags: ["dsat", "cis-cod", "tiles"]
---

To find the image tiles in `dsatnord.mp` and possibly decode them, we
Expand Down
2 changes: 1 addition & 1 deletion _posts/2024-04-03-learning-about-the-image-format.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Learning about the image format
description: The tiles are stored in the lightning strike wavelet-compressed raster image format.
tags: ["cis/cod", "tiles"]
tags: ["cis-cod", "tiles"]
---


Expand Down
2 changes: 1 addition & 1 deletion _posts/2024-04-19-viewing-tiles-with-firefox.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Viewing tiles with Firefox
image: /img/screenshot_firefox_plugin.png
description: Using a plugin for Netscape Navigator we can use an old Firefox verstion to view tiles in the Windows emulator Wine.
tags: ["cis/cod", "tiles"]
tags: ["cis-cod", "tiles"]
---

Knowing the offsets of (potential) tiles, we can pick one (56057877)
Expand Down
2 changes: 1 addition & 1 deletion _posts/2024-04-20-understanding-the-image-header.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Understanding the image header
description: The image header contains the size of the file and the header.
tags: ["cis/cod", "tiles"]
tags: ["cis-cod", "tiles"]
---

One important question remains: Are the tiles in `dsatnord.mp` stored
Expand Down
2 changes: 1 addition & 1 deletion _posts/2024-06-27-documenting-the-file-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Documenting the file format
description: Using Kaitai Struct I can describe the file format and generate code and visualizations.
image: /img/dsat_kaitai.png
tags: ["dsat", "cis/cod"]
tags: ["dsat", "cis-cod"]
---

Since [the first post on decoding the city
Expand Down
2 changes: 1 addition & 1 deletion _posts/2024-07-21-fragmenting-the-tile-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Fragmenting the tile data
image: /img/subband_sizes_tiles1000.png
description: Looking at some statistics about the structure of the tile data we learn something about the underlying wavelet compression.
tags: ["cis/cod", "tiles"]
tags: ["cis-cod", "tiles"]
---

When looking at the data segment of [CIS/COD
Expand Down
19 changes: 19 additions & 0 deletions tag/cis-cod.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
layout: default
---

{% assign tag = "cis-cod" %}
{% assign tagged_posts = "" | split: "" %}
{% for post in site.posts %}
{% if post.tags contains tag %}
{% assign tagged_posts = tagged_posts | push: post %}
{% endif %}
{% endfor %}


<h1>{{ tag }} Posts</h1>

{% for post in tagged_posts %}
{{ post.title }}
{% endfor %}

19 changes: 19 additions & 0 deletions tag/coordinates.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
layout: default
---

{% assign tag = "coordinates" %}
{% assign tagged_posts = "" | split: "" %}
{% for post in site.posts %}
{% if post.tags contains tag %}
{% assign tagged_posts = tagged_posts | push: post %}
{% endif %}
{% endfor %}


<h1>{{ tag }} Posts</h1>

{% for post in tagged_posts %}
{{ post.title }}
{% endfor %}

19 changes: 19 additions & 0 deletions tag/dsat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
layout: default
---

{% assign tag = "dsat" %}
{% assign tagged_posts = "" | split: "" %}
{% for post in site.posts %}
{% if post.tags contains tag %}
{% assign tagged_posts = tagged_posts | push: post %}
{% endif %}
{% endfor %}


<h1>{{ tag }} Posts</h1>

{% for post in tagged_posts %}
{{ post.title }}
{% endfor %}

19 changes: 19 additions & 0 deletions tag/tiles.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
layout: default
---

{% assign tag = "tiles" %}
{% assign tagged_posts = "" | split: "" %}
{% for post in site.posts %}
{% if post.tags contains tag %}
{% assign tagged_posts = tagged_posts | push: post %}
{% endif %}
{% endfor %}


<h1>{{ tag }} Posts</h1>

{% for post in tagged_posts %}
{{ post.title }}
{% endfor %}

0 comments on commit e730b15

Please sign in to comment.