-
Notifications
You must be signed in to change notification settings - Fork 0
feat: simple web app to show link between ocds fields and indicators #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| # ocp-ocds-fields-indicators | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,102 @@ | ||||||
| <!DOCTYPE html> | ||||||
| <html lang="en"> | ||||||
|
|
||||||
| <head> | ||||||
| <meta charset="UTF-8"> | ||||||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||||||
| <meta name="description" | ||||||
| content="Interactive visualization of Open Contracting (OCDS) fields and the indicators that depend on them. Explore which indicators become computable as you select fields."> | ||||||
| <meta name="keywords" | ||||||
| content="OCDS, open contracting, procurement, indicators, data quality, fields, dependency visualization"> | ||||||
| <meta name="author" content="Open Contracting Data Exploration"> | ||||||
| <meta name="robots" content="index,follow"> | ||||||
| <meta name="theme-color" content="#1f2933"> | ||||||
| <meta name="color-scheme" content="light"> | ||||||
| <link rel="icon" type="image/svg+xml" | ||||||
| href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Crect width='120' height='120' rx='16' fill='%231f2933'/%3E%3Cpath d='M28 90V30h18l14 24 14-24h18v60H90V46L74 72H62L46 46v44H28Z' fill='%23fff'/%3E%3C/svg%3E"> | ||||||
| <!-- Canonical URL: replace with deployed URL --> | ||||||
| <link rel="canonical" href="https://example.com/ocds-fields-indicators"> | ||||||
|
||||||
|
|
||||||
| <!-- Open Graph --> | ||||||
| <meta property="og:title" content="OCDS Field ↔ Indicator Dependencies"> | ||||||
| <meta property="og:description" | ||||||
| content="Select OCDS fields to see which indicators you can calculate and how each field increases analytical value."> | ||||||
| <meta property="og:type" content="website"> | ||||||
| <meta property="og:url" content="https://example.com/ocds-fields-indicators"> | ||||||
| <meta property="og:image" content="https://example.com/og-image.png"> | ||||||
|
Comment on lines
+25
to
+26
|
||||||
| <meta property="og:image:alt" content="Screenshot of the OCDS field to indicator dependency explorer"> | ||||||
|
|
||||||
| <!-- Structured Data (basic) --> | ||||||
| <script type="application/ld+json">{ | ||||||
| "@context":"https://schema.org", | ||||||
| "@type":"SoftwareApplication", | ||||||
| "name":"OCDS Field–Indicator Dependency Explorer", | ||||||
| "applicationCategory":"DataVisualization", | ||||||
| "description":"Interactive visualization of Open Contracting (OCDS) fields and the indicators that depend on them.", | ||||||
| "operatingSystem":"Any", | ||||||
| "url":"https://example.com/ocds-fields-indicators" | ||||||
|
||||||
| "url":"https://example.com/ocds-fields-indicators" | |
| "url":"https://yourdomain.com/ocds-fields-indicators" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The README.md file is essentially empty with only a title. Consider adding documentation about: what the application does, how to run it locally, the CSV data format requirements, dependencies (d3-dsv), browser compatibility, and usage instructions.