This file contains 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
[ | |
{ | |
"op": "core/column-removal", | |
"description": "Remove column Column", | |
"columnName": "Column" | |
}, | |
{ | |
"op": "core/mass-edit", | |
"description": "Mass edit cells in column CARGO", | |
"engineConfig": { |
This file contains 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
SELECT DISTINCT ?uri str(min(?titulo)) as ?Titulo str(min(?nombre)) as ?Nombre ?fechaFormalizacion ucase(replace(replace(replace(?cif," ",""),"-",""),"/.","")) as ?Cif min(?servicioGestor) as ?ServicioGestor ?id ?precio | |
WHERE { | |
?uri a pproc:Contract. | |
?uri dcterms:title ?titulo. | |
?uri pc:tender ?tender. | |
?tender a pproc:FormalizedTender. | |
?tender pproc:formalizedDate ?fechaFormalizacion. | |
FILTER ( regex(?fechaFormalizacion, "2016")) | |
OPTIONAL {?tender pc:supplier ?empresaid. | |
?empresaid <http://www.w3.org/ns/org#identifier> ?cif. |
This file contains 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 dpay: <http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/> | |
PREFIX gsp: <http://www.opengis.net/ont/geosparql#> | |
SELECT DISTINCT ?dPayPoint ?geometry | |
WHERE { | |
?obs a <http://datos.crtm.es/recurso/transporte/Validacion> . | |
?obs ssn:observationResultTime ?time . | |
?obs ssn:observedBy ?dPayPoint . | |
?dPayPoint gsp:hasGeometry/gsp:asWKT ?geometry . | |
#?obs ssn:featureOfInterest ?tarjeta . |
This file contains 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 dpay: <http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/> | |
SELECT DISTINCT ?dPayPoint ?tarjeta ?title ?perfil (COUNT (DISTINCT ?obs) AS ?numValidaciones) | |
WHERE { | |
?obs a <http://datos.crtm.es/recurso/transporte/Validacion> . | |
?obs ssn:observationResultTime ?time . | |
#?obs ssn:observedBy <http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/25_L18_P846> . | |
?obs ssn:observedBy ?dPayPoint . | |
?obs ssn:featureOfInterest ?tarjeta . | |
#?obs ssn:observedProperty ?property . | |
?obs ssn:observationResult ?sensorOutput . |
This file contains 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
SELECT DISTINCT ?tarjeta (COUNT (DISTINCT ?obs) AS ?numValidaciones) #?title ?perfil ?dPayPoint | |
WHERE { | |
?obs a <http://datos.crtm.es/recurso/transporte/Validacion> . | |
?obs ssn:observationResultTime ?time . | |
#?obs ssn:observedBy <http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/25_L18_P846> . | |
?obs ssn:observedBy ?dPayPoint . | |
FILTER(?dPayPoint=<http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/25_L18_P846>) | |
?obs ssn:featureOfInterest ?tarjeta . | |
#?obs ssn:observedProperty ?property . | |
?obs ssn:observationResult ?sensorOutput . |
This file contains 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
SELECT DISTINCT ?obs ?tarjeta ?time ?title ?perfil ?dPayPoint | |
WHERE { | |
?obs a <http://datos.crtm.es/recurso/transporte/Validacion> . | |
?obs ssn:observationResultTime ?time . | |
#?obs ssn:observedBy <http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/25_L18_P846> . | |
?obs ssn:observedBy ?dPayPoint . | |
FILTER(?dPayPoint=<http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/25_L18_P846>) | |
?obs ssn:featureOfInterest ?tarjeta . | |
#?obs ssn:observedProperty ?property . | |
?obs ssn:observationResult ?sensorOutput . |
This file contains 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 pproc: <http://contsem.unizar.es/def/sector-publico/pproc#> | |
PREFIX s: <http://schema.org/> | |
PREFIX pc: <http://purl.org/procurement/public-contracts#> | |
PREFIX gr: <http://purl.org/goodrelations/v1#> | |
PREFIX dcterms: <http://purl.org/dc/terms/> | |
SELECT DISTINCT ?contrato ?criterios ?tipo ?nombreCriterio ?pesoCriterio | |
WHERE { | |
?contrato a pproc:Contract; | |
dcterms:identifier "CUL07-14"^^xsd:string. | |
?contrato pc:awardCriteriaCombination/pc:awardCriterion ?criterios. |
This file contains 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
SELECT DISTINCT ?uriCont ?formalizedDate xsd:float(?currency) WHERE { | |
{ | |
SELECT DISTINCT ?uriCont ?formalizedDate xsd:string(?currencyValue) AS ?currency WHERE { | |
?uriCont a pproc:Contract; | |
pproc:contractObject/pproc:contractEconomicConditions/pproc:budgetPrice ?budgetPrice; | |
pc:tender ?tender. | |
?tender pproc:formalizedDate ?formalizedDate; | |
pc:supplier ?supplier; | |
pc:offeredPrice ?offeredPrice. | |
?supplier s:name ?name . |
This file contains 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
Virtuoso 22023 Error GEO..: Function st_distance() expects a geometry of type 1 as argument 0, not geometry of type 26626 |
This file contains 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 pproc: <http://contsem.unizar.es/def/sector-publico/pproc#> | |
PREFIX dcterms: <http://purl.org/dc/terms/> | |
SELECT DISTINCT ?uri ?titulo ?servicioGestor WHERE | |
{ | |
?uri a <http://contsem.unizar.es/def/sector-publico/pproc#Contract>; | |
dcterms:title ?titul; | |
pproc:managingDepartment ?managingDepartment. | |
?managingDepartment dcterms:title ?servicioGestor | |
} ORDER BY ?titulo |
NewerOlder