`
lobin
  • 浏览: 425226 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

LDP: Linked Data Platform

 
阅读更多
https://www.w3.org/TR/ldp/


PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name (COUNT(?friend) AS ?count)
WHERE {
    ?person foaf:name ?name .
    ?person foaf:knows ?friend .
} GROUP BY ?person ?name



Alice 3 ^^xsd:integer
Bob 1 ^^xsd:integer
Charlie 1 ^^xsd:integer




alice.ttl


@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

<http://example.org/alice#me> a foaf:Person .
<http://example.org/alice#me> foaf:name "Alice" .
<http://example.org/alice#me> foaf:mbox <mailto:alice@example.org> .
<http://example.org/alice#me> foaf:knows <http://example.org/bob#me> .
<http://example.org/bob#me> foaf:knows <http://example.org/alice#me> .
<http://example.org/bob#me> foaf:name "Bob" .
<http://example.org/alice#me> foaf:knows <http://example.org/charlie#me> .
<http://example.org/charlie#me> foaf:knows <http://example.org/alice#me> .
<http://example.org/charlie#me> foaf:name "Charlie" .
<http://example.org/alice#me> foaf:knows <http://example.org/snoopy> .
<http://example.org/snoopy> foaf:name "Snoopy"@en .


一些格式
application/ld+json
application/rdf+json
application/rdf+xml
application/trix
application/x-trig
application/x-turtle
application/xhtml+xml
application/xml
text/html
text/n3
text/plain
text/rdf+n3
text/turtle




rdf+xml

<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:context="http://localhost:8080/context/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

<rdf:Description rdf:about="http://example.org/alice#me">
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<foaf:name>Alice</foaf:name>
<foaf:mbox rdf:resource="mailto:alice@example.org"/>
<foaf:knows rdf:resource="http://example.org/bob#me"/>
</rdf:Description>

<rdf:Description rdf:about="http://example.org/bob#me">
<foaf:knows rdf:resource="http://example.org/alice#me"/>
<foaf:name>Bob</foaf:name>
</rdf:Description>

<rdf:Description rdf:about="http://example.org/alice#me">
<foaf:knows rdf:resource="http://example.org/charlie#me"/>
</rdf:Description>

<rdf:Description rdf:about="http://example.org/charlie#me">
<foaf:knows rdf:resource="http://example.org/alice#me"/>
<foaf:name>Charlie</foaf:name>
</rdf:Description>

<rdf:Description rdf:about="http://example.org/alice#me">
<foaf:knows rdf:resource="http://example.org/snoopy"/>
</rdf:Description>

<rdf:Description rdf:about="http://example.org/snoopy">
<foaf:name xml:lang="en">Snoopy</foaf:name>
</rdf:Description>

</rdf:RDF>









turtle

@prefix context: <http://localhost:8080/context/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .

<http://example.org/alice#me> a foaf:Person ;
foaf:name "Alice" ;
foaf:mbox <mailto:alice@example.org> ;
foaf:knows <http://example.org/bob#me> .

<http://example.org/bob#me> foaf:knows <http://example.org/alice#me> ;
foaf:name "Bob" .

<http://example.org/alice#me> foaf:knows <http://example.org/charlie#me> .

<http://example.org/charlie#me> foaf:knows <http://example.org/alice#me> ;
foaf:name "Charlie" .

<http://example.org/alice#me> foaf:knows <http://example.org/snoopy> .

<http://example.org/snoopy> foaf:name "Snoopy"@en .






ld+json

[ {
  "@graph" : [ {
    "@id" : "http://example.org/alice#me",
    "@type" : [ "http://xmlns.com/foaf/0.1/Person" ],
    "http://xmlns.com/foaf/0.1/knows" : [ {
      "@id" : "http://example.org/bob#me"
    }, {
      "@id" : "http://example.org/charlie#me"
    }, {
      "@id" : "http://example.org/snoopy"
    } ],
    "http://xmlns.com/foaf/0.1/mbox" : [ {
      "@id" : "mailto:alice@example.org"
    } ],
    "http://xmlns.com/foaf/0.1/name" : [ {
      "@value" : "Alice"
    } ]
  }, {
    "@id" : "http://example.org/bob#me",
    "http://xmlns.com/foaf/0.1/knows" : [ {
      "@id" : "http://example.org/alice#me"
    } ],
    "http://xmlns.com/foaf/0.1/name" : [ {
      "@value" : "Bob"
    } ]
  }, {
    "@id" : "http://example.org/charlie#me",
    "http://xmlns.com/foaf/0.1/knows" : [ {
      "@id" : "http://example.org/alice#me"
    } ],
    "http://xmlns.com/foaf/0.1/name" : [ {
      "@value" : "Charlie"
    } ]
  }, {
    "@id" : "http://example.org/snoopy",
    "http://xmlns.com/foaf/0.1/name" : [ {
      "@language" : "en",
      "@value" : "Snoopy"
    } ]
  } ],
  "@id" : "http://localhost:8080/context/default"
} ]

分享到:
评论

相关推荐

    LDP:LDP主存储库,等待您的请求

    LDP: : Linux文档计划是一个由松散的志愿者团队组成的团队,他们提供有关Linux各个方面的文档。 有几种形式的文档:指南,HOWTO,手册页和常见问题解答。 参与度 请参与我们的努力。 分叉我们的仓库 更新文档和/...

    pure-LDP:Python包,用于简单实现最新的LDP算法(频率预言和沉重打击)

    纯LDP pure-LDP是一个Python软件包,提供了各种最新LDP算法(“频率Oracle”和“重磅炸弹”)的简单实现,其主要目标是提供一个简单的接口来对这些算法进行基准测试和实验。 Wang等人在一文中详细介绍了pure-LDP,...

    ldp:图书馆的开源分析平台

    图书馆数据平台(LDP)是一个用于图书馆分析的开源平台。 id | 0bab56e5-1ab6-4ac2-afdf-8b2df0434378action | checkedindue_date | 2020-02-17 08:43:15+00item_id | 459afaba-5b39-468d-9072-eb1685e0ddf4item_...

    ldp-pcdm:LDP-PCDM 实战演练!

    书本书 - 创建 DirectContainer 首先,创建顶级“ objects /” ldp:BasicContainer。 curl -i -X PUT -H " Content-Type: text/turtle " localhost:8080/fcrepo/rest/objects/ 其次,创建嵌套的“raven/”pcdm:...

    ui-ldp:FOLIOReShare的LDP查询生成器UI

    ui-ldp 版权(C)2020开放图书馆基金会 该软件根据Apache许可证2.0版的条款进行分发。 有关更多信息,请参见文件。 当前只有一页,即用于图书馆数据平台(LDP)的查询生成器。 本地发展的先决条件 此存储库由...

    前端开源库-rdf-store-ldp.zip

    标题中的“前端开源库-rdf-store-ldp.zip”表明这是一个与前端开发相关的开源库,主要涉及RDF(Resource Description Framework)存储和LDP(Linked Data Platform)。RDF是一种标准模型,用于描述网络上的资源,而...

    前端开源库-rdf-store-ldp

    `rdf-store-ldp` 是一个专为前端设计的开源库,它专注于处理RDF(Resource Description Framework)数据,并遵循LDP(Linked Data Platform)规范。RDF是一种标准模型,用于描述、组织和链接网络上的数据,而LDP则是...

    ldp_ldp_纹理图像_

    在图像处理领域,Local Directional Pattern(LDP)是一种用于纹理分析和图像描述的局部特征提取方法。这个方法是基于Local Binary Pattern (LBP) 的扩展,旨在提供更丰富的纹理信息,尤其对于方向性纹理有更好的...

    windows AD 维护工具,ldp.exe

    在维护和管理AD时,系统管理员经常会用到各种工具,其中之一就是ldp.exe。ldp.exe是一个轻量级目录访问协议(Lightweight Directory Access Protocol)的调试工具,它提供了对AD的深入访问和操作能力。 ldp.exe的...

    07 MPLS LDP原理与配置.pptx

    MPLS LDP原理与配置 MPLS(Multi-Protocol Label Switching)是一种基于标签的报文转发技术,LDP(Label Distribution Protocol)是MPLS中的一个控制协议,负责FEC(Forwarding Equivalence Class)的分类、标签的...

    LDP.rar_L4W_LDP matlab_LDP matlab_ldp_ldp算法 matlab

    "LDP.rar_L4W_LDP matlab_LDP matlab_ldp_ldp算法 matlab" 这个标题提到了几个关键元素。首先,“LDP”代表“Label Distribution Protocol”,这是一个网络路由协议,用于在MPLS(多协议标签交换)环境中分配标签。...

    基于LDP特征和贝叶斯模型的人脸识别.pdf

    基于LDP特征和贝叶斯模型的人脸识别 人脸识别是一种模式识别技术,可以应用于身份认证、监控、人机交互等领域。随着计算机视觉和机器学习技术的发展,人脸识别技术也在不断改进。传统的人脸识别方法有基于 ...

    ldp4j-examples:LDP4j 的一些入门示例

    LDP4j 是一个用于构建语义Web服务的Java库,专注于实现Linked Data Platform(LDP)规范。这个规范是基于REST原则,旨在使Web服务器能够存储和检索语义数据,支持RDF(Resource Description Framework)标准。LDP4j-...

    ldp.rar_LDP程序下载_ldp_ldp code _ldp-portable.rar

    LDP(Label Distribution Protocol)是MPLS(Multiprotocol Label Switching)网络中的一个关键协议,用于在路由器之间分发标签。这个“ldp.rar”压缩包包含的显然是LDP协议的源代码及相关文件,这对于我们理解LDP的...

    05 MPLS LDP原理与配置.pptx

    LDP(Label Distribution Protocol)是MPLS体系中用于标签分发的重要协议之一。本课程将深入探讨MPLS LDP的基本原理、工作机制以及配置方法。 MPLS LDP的基本原理: MPLS LDP的主要任务是在MPLS域内的路由器之间...

    LBP LDP ELDP LDN GDP

    ldp.m 用Kirsch算子卷积图像,Local Directional Pattern ldp_weight.m 返回kirschh算子卷积图像和权重 gdp.m 用sobor算子卷积获得梯度图像,对角度按照中心阈值编 码,Gradient directional pattern eldp.m ldp变种...

    LDP.zip_LDP特征提取_ldp_rbg_was9iy

    "LDP.zip_LDP特征提取_ldp_rbg_was9iy"这个压缩包文件似乎专注于一种特定的特征提取方法——LDP(Local Descriptors Pattern,局部描述子模式)。LDP是一种用于图像分析的纹理描述符,它通过分析图像中的局部模式来...

    LDP协议培训ppt

    LDP标签分发方式以及LDP建立邻居详细过程都有包含,通信人必会

    苹果差异隐私:苹果差异隐私实施

    回购旨在实现以下目标: 苹果的LDP:Google的RAPPOR:,针对重击者的Google RAPPOR扩展:实现概述的另外两种LDP算法最近LDP算法的一个很好的介绍和简单的调查,提出。 :warning_selector: 虽然大多数代码都已完成,...

Global site tag (gtag.js) - Google Analytics