SPARQL UPDATE queries add standard vocabulary properties alongside existing custom predicates: schema:Person/Place/Organization types, schema:givenName/familyName/birthDate, owl:sameAs for authority links, wgs84:lat/long for coordinates, skos:Concept/prefLabel for enumerations, and rdfs:label for persons.
30 lines
408 B
TOML
30 lines
408 B
TOML
[package]
|
|
name = "mapping"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "step-01"
|
|
path = "src/map/step_01.rs"
|
|
|
|
[[bin]]
|
|
name = "step-02"
|
|
path = "src/map/step_02.rs"
|
|
|
|
[[bin]]
|
|
name = "step-03"
|
|
path = "src/map/step_03.rs"
|
|
|
|
[[bin]]
|
|
name = "step-04"
|
|
path = "src/map/step_04.rs"
|
|
|
|
[[bin]]
|
|
name = "step-05"
|
|
path = "src/map/step_05.rs"
|
|
|
|
[dependencies]
|
|
sophia = "0.9"
|
|
oxigraph = "*"
|
|
mysql = "*"
|
|
urlencoding = "*"
|