diff --git a/OnToology/ontology/conceptual-mapping-ontology.owl/documentation/index-en.html b/OnToology/ontology/conceptual-mapping-ontology.owl/documentation/index-en.html index bbcabdb..1727ab1 100644 --- a/OnToology/ontology/conceptual-mapping-ontology.owl/documentation/index-en.html +++ b/OnToology/ontology/conceptual-mapping-ontology.owl/documentation/index-en.html @@ -60,7 +60,7 @@
language en

Conceptual Mapping

-

Release 2022-03-23

+

Release 2022-04-21

diff --git a/OnToology/ontology/conceptual-mapping-ontology.owl/documentation/sections/description-en.html b/OnToology/ontology/conceptual-mapping-ontology.owl/documentation/sections/description-en.html index 2de3d6e..10026bf 100644 --- a/OnToology/ontology/conceptual-mapping-ontology.owl/documentation/sections/description-en.html +++ b/OnToology/ontology/conceptual-mapping-ontology.owl/documentation/sections/description-en.html @@ -493,10 +493,10 @@

Examples: Cities and Locations with other mapp FIELD zipcodes <zipcodes> } - ITERATOR coord_json <jsonpath: $.coordinates[*]> { - FIELD lat <$.latitude> - FIELD long <$.longitude> - FIELD loc_city <$.city> + ITERATOR coord_json <jsonpath: coordinates[*]> { + FIELD lat <latitude> + FIELD long <longitude> + FIELD loc_city <city> } EXPRESSION cit_locs <cities_source.cities_rdb.c_city JOIN coord_source.coord_json.loc_city> diff --git a/examples/Locations and cities/result.ttl b/examples/Locations and cities/result.ttl new file mode 100644 index 0000000..63d5ecc --- /dev/null +++ b/examples/Locations and cities/result.ttl @@ -0,0 +1,30 @@ +@prefix rdfs: . +@prefix rdf: . +@prefix xsd: . +@prefix eg: . + + a eg:Location ; + eg:lat "40.4189"^^xsd:decimal ; + eg:long "-3.6919"^^xsd:decimal . + + a eg:Location ; + eg:lat "43.3713"^^xsd:decimal ; + eg:long "-8.4188"^^xsd:decimal . + + a eg:Location ; + eg:lat "36.8333"^^xsd:decimal ; + eg:long "-2.45"^^xsd:decimal . + + a eg:City ; + eg:zipcode 15001, 15002, 15003, 15004 ; + eg:location . + + a eg:City ; + eg:zipcode 04001, 04002 ; + eg:population 201322 ; + eg:location . + + a eg:City ; + eg:zipcode 28001, 28002, 28003, 28004, 28005, 28006 ; + eg:population 3334730 ; + eg:location .