Skip to content
Snippets Groups Projects
Commit abb7789d authored by paul van genuchten's avatar paul van genuchten
Browse files

fix: add bs-table shortcode

parent 97405804
No related branches found
No related tags found
No related merge requests found
......@@ -8,9 +8,9 @@ featured: true
date: 2023-03-23
---
We developed a method to enable project partners to describe their data’s metadata systematically. The method includes:
LSC-hubs developed a method to enable project partners to describe their data’s metadata systematically. The method includes:
- An inventory metadata template in Excel;
- An inventory metadata template in Excel or
- An Open Data Kit (ODK) form;
By standardizing the metadata collection for the data which will eventually feature in the Land Soil Crop Hub (LSC Hub), the metadata can be seamlessly uploaded to the LSC Hubs. Our project partners provided the feedback that an Excel file cannot be easily distributed to stakeholders inside or outside their organisation. Therefore, we added an Open Data Kit (ODK) form. This is an open-source tool that enables users to fill out forms offline and send their input to a server later when they are online again.
......
......@@ -32,6 +32,7 @@ A metadata inventory template was developed in the first step based on the ISO19
**Table 1: Metadata properties based on ISO19139:2007**
{{< bs-table "table table-striped table-bordered" >}}
| Metadata item | Explanation |
|--- |--- |
......@@ -60,6 +61,8 @@ A metadata inventory template was developed in the first step based on the ISO19
|Extent (category) | national, county/district/province, catchment, village, plot (farm) |
| Usage constraints | Indicates if there are legal usage constraints (license); free text and/or value from list |
{{< /bs-table >}}
<br>
After developing the template, the second step was for the project partners to fill in initial metadata. The template was made available through a central folder with shared editing capability. Project partners including Kenya Agricultural & Livestock Research Organization (KALRO), Rwanda Agriculture and Animal Resources Development Board (RAB), ICRAF World Agroforestry and the International Union for Conservation of Nature (IUCN), provided feedback on the metadata inventory template in the third step which was processed to improve the template. Our project partners are currently describing more metadata in the newest version of the metadata inventory template.
......
{{ $htmlTable := .Inner | markdownify }}
{{ $class := .Get 0 | default "" }}
{{ $old := "<table>" }}
{{ $new := printf "<table class=\"%s\">" $class }}
{{ $htmlTable := replace $htmlTable $old $new }}
{{ $htmlTable | safeHTML }}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment