Created
September 23, 2015 16:41
-
-
Save labra/0e364cb0af1a9581df2d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix qb: <http://purl.org/linked-data/cube#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix : <http://ejemplo.org/> . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
qb:obs11 a qb:Observation ; | |
:indicador :Poblacion ; | |
:valor 31 ; | |
:pais :Peru; | |
qb:dataSet :Ejemplo . | |
qb:obs12 a qb:Observation ; | |
:indicador :Area ; | |
:valor 1285000 ; | |
:pais :Peru ; | |
qb:dataSet :Ejemplo . | |
qb:obs21 a qb:Observation ; | |
:indicador :Poblacion ; | |
:valor 46 ; | |
:pais :Spain ; | |
qb:dataSet :Ejemplo . | |
qb:obs22 a qb:Observation ; | |
:indicador :Area ; | |
:valor 505000 ; | |
:pais :Spain ; | |
qb:dataSet :Ejemplo . | |
qb:obs31 a qb:Observation ; | |
:indicador :Poblacion ; | |
:valor 121 ; | |
:pais :Mexico ; | |
qb:dataSet :Ejemplo . | |
qb:obs32 a qb:Observation ; | |
:indicador :Area ; | |
:valor 197200 ; | |
:pais :Mexico ; | |
qb:dataSet :Ejemplo . | |
:Ejemplo a qb:DataSet ; | |
qb:slice :areas ; | |
qb:slice :poblaciones ; | |
qb:structure :Estructura ; | |
. | |
:poblaciones a qb:Slice ; | |
qb:observation :obs11, :obs21, :obs31 . | |
:areas a qb:Slice ; | |
qb:observation :obs12, :obs22, :obs32 . | |
:Estructura a qb:DataStructureDefinition; | |
qb:component | |
[ qb:dimension :indicador; qb:order 1 ], | |
[ qb:dimension :pais; qb:order 2 ], | |
[ qb:dimension :valor; qb:order 3 ]; | |
qb:component [ qb:measure :poblacion ]; | |
qb:component [ qb:measure :area ]; | |
. | |
:pais a qb:DimensionProperty; | |
rdfs:label "Pais"@en; | |
rdfs:range :Pais; | |
. | |
:poblacion a qb:MeasureProperty; | |
rdfs:label "Poblacion"@en; | |
rdfs:range xsd:integer ; | |
. | |
:indicador a qb:DimensionProperty; | |
. | |
:area a qb:MeasureProperty; | |
rdfs:label "Area"@en; | |
rdfs:range xsd:integer ; | |
. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment