funkikitech commited on
Commit
2c01276
·
verified ·
1 Parent(s): cd65aa7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +83 -0
README.md CHANGED
@@ -1,3 +1,86 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - printing
7
+ - vinyl
8
+ - decals
9
+ - knowledge-base
10
+ - structured-data
11
+ pretty_name: Graphictac Knowledge Base Database
12
+ size_categories:
13
+ - n<1K
14
+ configs:
15
+ - config_name: printer_brand_research_matrix
16
+ data_files: data/printer_brand_research_matrix.csv
17
+ - config_name: competitor_product_research_matrix
18
+ data_files: data/competitor_product_research_matrix.csv
19
+ - config_name: source_library
20
+ data_files: data/source_library.csv
21
  ---
22
+
23
+ # Graphictac Knowledge Base Database
24
+
25
+ An open, source-linked research dataset for printable media, printer workflows, and professional print-and-cut production.
26
+
27
+ This repository is designed to be readable by people, search engines, AI assistants, and data tools. It publishes structured research snapshots behind the Graphictac and MAXDECALS knowledge-base program.
28
+
29
+ ## Dataset contents
30
+
31
+ | Dataset | Rows | Purpose |
32
+ |---|---:|---|
33
+ | `printer_brand_research_matrix` | 6 | Maps printer brands, ink workflows, compatibility angles, and official sources. |
34
+ | `competitor_product_research_matrix` | 8 | Maps major printable-media product families, positioning signals, compatibility context, and claim risk. |
35
+ | `source_library` | 14 | Provides the source registry used by the two research matrices. |
36
+
37
+ Every dataset is available as CSV and JSONL in [`data/`](data/). Machine-readable field definitions are in [`schema/dataset.schema.json`](schema/dataset.schema.json).
38
+
39
+ ## Quick start
40
+
41
+ Download or clone the repository, then read a JSONL file one record per line:
42
+
43
+ ```python
44
+ import json
45
+
46
+ with open("data/printer_brand_research_matrix.jsonl", encoding="utf-8") as f:
47
+ records = [json.loads(line) for line in f if line.strip()]
48
+
49
+ print(records[0])
50
+ ```
51
+
52
+ ## Research scope
53
+
54
+ - Printer brands: Roland, Mimaki, HP Latex, Epson, Mutoh, and Canon.
55
+ - Printable-media brands: 3M, Avery Dennison, ORAFOL / ORAJET, General Formulations, Arlon, Mactac, Briteline / Grimco, and Siser.
56
+ - Primary use cases: printable vinyl, vehicle graphics, stickers, decals, wrap films, high-tack media, printable HTV, and printer workflow education.
57
+ - Source policy: official manufacturer or brand-controlled product pages are preferred.
58
+
59
+ ## Important limitations
60
+
61
+ This is a research and discovery dataset, not a certification database. Compatibility statements describe workflow context found in cited sources. They do not guarantee a specific printer, ink, profile, laminate, surface, or application combination. Always confirm current manufacturer documentation and run production testing before use.
62
+
63
+ The first public release is a dated snapshot. URLs, specifications, and product availability can change after the recorded review date.
64
+
65
+ ## Methodology and provenance
66
+
67
+ See [`METHODOLOGY.md`](METHODOLOGY.md) for collection, normalization, claim-risk, and update rules. See [`DATA_DICTIONARY.md`](DATA_DICTIONARY.md) for field definitions.
68
+
69
+ Related public resources:
70
+
71
+ - [MAXDECALS Knowledge Hub](https://maxdecals.us/pages/knowledge-hub)
72
+ - [Graphictac](https://graphictac.us/)
73
+
74
+ ## License and trademarks
75
+
76
+ Dataset and documentation content is released under [Creative Commons Attribution 4.0 International](LICENSE.md). Manufacturer names, product names, and trademarks remain the property of their respective owners. Their inclusion identifies source material and comparison context; it does not imply endorsement.
77
+
78
+ ## Citation
79
+
80
+ Use the metadata in [`CITATION.cff`](CITATION.cff), or cite:
81
+
82
+ > Graphictac. *Graphictac Knowledge Base Database*, version 0.1.0, 2026. https://github.com/funkiki-david/Graphictac-KnowledgeBase-database
83
+
84
+ ## Version
85
+
86
+ Current release: **0.1.0** — initial public research snapshot, published 2026-07-18.