问题标签 [linkedmdb]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - 从 URI 保存图形
我的问题是如何从 URI 中保存我的图形变量中的所有三元组。当我执行我的代码时:
我在那张图中只得到了 2 个三倍,我的问题是我怎样才能得到其他人,比如演员、导演、编辑……?
这两个三元组是:
sparql - SPARQL 查询以获取电影详细信息
为了从linkedmdb获取电影细节,我使用了 sparql 查询:
但 SPARQL 结果显示Title与计数的Actor相同。如何组合查询,使Title不重复?我尝试使用 GROUP_CONCAT 但不能在 LinkedMDB 端点中工作?有人可以指导我吗?
rdf - 我应该怎么做才能从linkedmdb获得所需的结果?
有人会解释我这个现象吗?我正在使用 SPARQL 查询来查询端点http://www.linkedmdb.org/snorql:获取曾出演英国电影 Q1 的演员列表:
在结果中,我们有一个 id 为 11764 的演员,奇怪的是,当我运行查询 Q2 时:
尽管 Q2 的选择性不如 Q1 演员编号 11764 不再出现在结果中。请注意,我们通过删除 Q1 的第一个三重模式(较少约束)来获得 Q2
sparql - SPARQL Query for linked data
I want to fetch Movies details from LinkedMDB along with corresponding same as links for DBPedia Datasets.I am writing following query:
This query is returning Movie URI in LinkedMDB, Movie Name and DBPedia URI. I want to get more details about each movie so that I can have more feature for classification.
semantic-web - 关联数据的电影海报
如何使用OMDBApi或themoviedb.org(它们有 JSON)使用链接数据显示电影海报。有人有想法么?
semantic-web - 离线访问 LinkedMDB
我需要进行一项实验,考虑到 LinkedMDB 的所有电影,包括它们的谓词。LinkedMDB SPARQL 端点效率不高,在我的 Java/Jena 程序中发送大约 40 个连续查询后,它很容易过载并拒绝连接。因此我不得不停止程序的执行两秒钟(Thread.sleep)然后继续。对于超过 90.000 个数据集及其谓词,我无法做到这一点。他们是可以在本地下载和访问所有 LinkedMDB 电影数据集的方式或链接吗(我认为 Geonames 有它,不确定 LinkedMDB)
sparql - 在linkedmdb SPARQL中使用过滤器时解析错误
我正在尝试使用 linkedmdb 查询 2 部特定电影及其 imdb 页面,但它会引发解析错误。
当我删除以下行时,我会得到所有电影的列表。如何获取特定集合的链接。
这是我的代码。
sparql - dbpedia 和 linkedmdb 上的联合查询
我正在编写一个联合查询来获取基于 dbpedia 中电影的书籍,然后使用 dbpedia 中的电影名称来检索相应的 imdblink 链接。添加linkedmdb的服务时,我得到一个空集。
这是我的代码
我正在使用以下端点http://www.sparql.org/query.html
sparql - Limit 2500 on Linked Movie Database
Right now I'm developing an App for querying the LMDB. LMDB has set a LIMIT
for the results in order to prevent page crash (max 2500 results). I want to query the WHOLE LMDB and I was wondering if there's some way to get the whole data that is in the LMDB and not only the limited 2500 results ?
The query that I run:
I get no results.
If I change the last line:
FILTER regex(?movieName,'The Mexican', 'i')}
to ?resource dc:title 'The Mexican'
I get the desired results. This means that the data about this movie is actually in the LMDB but because of the LIMIT
I can't access all entries unless I type in the EXACT name of the movie I'm searching for.
The App that I'm building uses search fields and I can't expect the users to know the exact name of the movie that's why I'm using FILTER regex()
.
What would be the way to fix this problem? Please help me. Should I download a local copy and run the queries against it or is there another way?
I wanted to contact the LMDB staff about this but I couldn't find any contact information