From e730b15459a1e3721976d1f7d4b456fbdaff0b08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=A4schke?= Date: Fri, 26 Jul 2024 13:15:58 +0200 Subject: [PATCH] added tags --- _includes/tag_index_page.md | 9 +++++++++ _posts/2024-04-02-finding-the-tiles.md | 2 +- ...4-04-03-learning-about-the-image-format.md | 2 +- .../2024-04-19-viewing-tiles-with-firefox.md | 2 +- ...24-04-20-understanding-the-image-header.md | 2 +- .../2024-06-27-documenting-the-file-format.md | 2 +- .../2024-07-21-fragmenting-the-tile-data.md | 2 +- tag/cis-cod.md | 19 +++++++++++++++++++ tag/coordinates.md | 19 +++++++++++++++++++ tag/dsat.md | 19 +++++++++++++++++++ tag/tiles.md | 19 +++++++++++++++++++ 11 files changed, 91 insertions(+), 6 deletions(-) create mode 100644 _includes/tag_index_page.md create mode 100644 tag/cis-cod.md create mode 100644 tag/coordinates.md create mode 100644 tag/dsat.md create mode 100644 tag/tiles.md diff --git a/_includes/tag_index_page.md b/_includes/tag_index_page.md new file mode 100644 index 0000000..3f6717f --- /dev/null +++ b/_includes/tag_index_page.md @@ -0,0 +1,9 @@ +--- +layout: default +--- + +

{{ tag }} Posts

+ +{% for post in tagged_posts %} + {{ post.title }} +{% endfor %} diff --git a/_posts/2024-04-02-finding-the-tiles.md b/_posts/2024-04-02-finding-the-tiles.md index dad6a47..7c20f73 100644 --- a/_posts/2024-04-02-finding-the-tiles.md +++ b/_posts/2024-04-02-finding-the-tiles.md @@ -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 diff --git a/_posts/2024-04-03-learning-about-the-image-format.md b/_posts/2024-04-03-learning-about-the-image-format.md index d530e32..ef5820e 100644 --- a/_posts/2024-04-03-learning-about-the-image-format.md +++ b/_posts/2024-04-03-learning-about-the-image-format.md @@ -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"] --- diff --git a/_posts/2024-04-19-viewing-tiles-with-firefox.md b/_posts/2024-04-19-viewing-tiles-with-firefox.md index d0aa35e..618f438 100644 --- a/_posts/2024-04-19-viewing-tiles-with-firefox.md +++ b/_posts/2024-04-19-viewing-tiles-with-firefox.md @@ -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) diff --git a/_posts/2024-04-20-understanding-the-image-header.md b/_posts/2024-04-20-understanding-the-image-header.md index 892eff0..71f7aa0 100644 --- a/_posts/2024-04-20-understanding-the-image-header.md +++ b/_posts/2024-04-20-understanding-the-image-header.md @@ -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 diff --git a/_posts/2024-06-27-documenting-the-file-format.md b/_posts/2024-06-27-documenting-the-file-format.md index fe13bdc..4b862f0 100644 --- a/_posts/2024-06-27-documenting-the-file-format.md +++ b/_posts/2024-06-27-documenting-the-file-format.md @@ -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 diff --git a/_posts/2024-07-21-fragmenting-the-tile-data.md b/_posts/2024-07-21-fragmenting-the-tile-data.md index 213fac2..592d547 100644 --- a/_posts/2024-07-21-fragmenting-the-tile-data.md +++ b/_posts/2024-07-21-fragmenting-the-tile-data.md @@ -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 diff --git a/tag/cis-cod.md b/tag/cis-cod.md new file mode 100644 index 0000000..41712f3 --- /dev/null +++ b/tag/cis-cod.md @@ -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 %} + + +

{{ tag }} Posts

+ +{% for post in tagged_posts %} + {{ post.title }} +{% endfor %} + diff --git a/tag/coordinates.md b/tag/coordinates.md new file mode 100644 index 0000000..91489c9 --- /dev/null +++ b/tag/coordinates.md @@ -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 %} + + +

{{ tag }} Posts

+ +{% for post in tagged_posts %} + {{ post.title }} +{% endfor %} + diff --git a/tag/dsat.md b/tag/dsat.md new file mode 100644 index 0000000..bda37c1 --- /dev/null +++ b/tag/dsat.md @@ -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 %} + + +

{{ tag }} Posts

+ +{% for post in tagged_posts %} + {{ post.title }} +{% endfor %} + diff --git a/tag/tiles.md b/tag/tiles.md new file mode 100644 index 0000000..70fa491 --- /dev/null +++ b/tag/tiles.md @@ -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 %} + + +

{{ tag }} Posts

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