Wikidata structure: how to get Start Times when they are under Point in TimeHow to convert date format in SPARQL?Wikidata Sparql How to access award point of time and work from a peopleWays to reduce query time of SPARQL query on Wikidata?Fuzzy entity query in Wikidata with Sparql times outHow to get cities around a location in wikidata?How to get pseudonyms from Wikidata?Wikidata+SPARQL: Get tickers of all companies listed on stock exchangesWikidata SPARQL: how to filter by date range?SPARQL question: how to return property labels and associated date qualifiers from WikidataWIkidata: Getting multiple participants in Wikidata query result

Help, I cannot decide when to start the story

"Mouth-breathing" as slang for stupidity

How would you translate this? バタコチーズライス

What would it take to get a message to another star?

In which case does the Security misconfiguration vulnerability apply to?

Are those flyers about apartment purchase a scam?

What is the hottest thing in the universe?

Does fossil fuels use since 1990 account for half of all the fossil fuels used in history?

Why is there a large performance impact when looping over an array over 240 elements?

What is the status of this patent?

Should I email my professor about a recommendation letter if he has offered me a job?

Are there any other rule mechanics that could grant Thieves' Cant?

Why command hierarchy, if the chain of command is standing next to each other?

Weird resistor with dots around it

Scam? Phone call from "Department of Social Security" asking me to call back

Dogfights in outer space

Does an object storing more internal energy emit more thermal radiation?

What is the たんだ in と思ってたんだ for the sentence in question?

If "more guns less crime", how do gun advocates explain that the EU has less crime than the US?

Modeling the uncertainty of the input parameters

Telephone number in spoken words

Swap (and hibernation) on SSD in 2019?

Why does Japan use the same type of AC power outlet as the US?

How would armour (and combat) change if the fighter didn't need to actually wear it?



Wikidata structure: how to get Start Times when they are under Point in Time


How to convert date format in SPARQL?Wikidata Sparql How to access award point of time and work from a peopleWays to reduce query time of SPARQL query on Wikidata?Fuzzy entity query in Wikidata with Sparql times outHow to get cities around a location in wikidata?How to get pseudonyms from Wikidata?Wikidata+SPARQL: Get tickers of all companies listed on stock exchangesWikidata SPARQL: how to filter by date range?SPARQL question: how to return property labels and associated date qualifiers from WikidataWIkidata: Getting multiple participants in Wikidata query result






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I ran queries to gain dates of instances of an incident, and used Point in Time (P585).
Link



 SELECT DISTINCT ?incident ?label ?time WHERE 
?incident wdt:P31 wd:Q625994.
?incident rdfs:label ?label.
?incident wdt:P585 ?time.
FILTER((LANG(?label)) = "en")



However, result cases such as re:publica would only give me year information in the form of January 1, 2007 ~ 2016. (they occurred in April or May, and I would like more specific info like that)



Then I saw re:publica also has Start Dates & End Dates under Point in Time, per year. Therefore, I tried changing wdt:585 into wdt:580 (Start Dates), however, then I would not get re:publica in my results because apparently it is not considered to have 'start dates' if I query this way (because it is under Point in Time).



How do I get start time when Start Time is under Point in Time? Or, in general, how do I get certain info I want when it's under some other properties?










share|improve this question


























  • Working on it: for anyone with similar questions, this link is helpful.

    – belle
    Mar 27 at 12:35







  • 1





    yes, with the examples it's pretty simple. In addition, understanding the data model of Wikidata can be achieved by reading this

    – AKSW
    Mar 27 at 12:46

















0















I ran queries to gain dates of instances of an incident, and used Point in Time (P585).
Link



 SELECT DISTINCT ?incident ?label ?time WHERE 
?incident wdt:P31 wd:Q625994.
?incident rdfs:label ?label.
?incident wdt:P585 ?time.
FILTER((LANG(?label)) = "en")



However, result cases such as re:publica would only give me year information in the form of January 1, 2007 ~ 2016. (they occurred in April or May, and I would like more specific info like that)



Then I saw re:publica also has Start Dates & End Dates under Point in Time, per year. Therefore, I tried changing wdt:585 into wdt:580 (Start Dates), however, then I would not get re:publica in my results because apparently it is not considered to have 'start dates' if I query this way (because it is under Point in Time).



How do I get start time when Start Time is under Point in Time? Or, in general, how do I get certain info I want when it's under some other properties?










share|improve this question


























  • Working on it: for anyone with similar questions, this link is helpful.

    – belle
    Mar 27 at 12:35







  • 1





    yes, with the examples it's pretty simple. In addition, understanding the data model of Wikidata can be achieved by reading this

    – AKSW
    Mar 27 at 12:46













0












0








0








I ran queries to gain dates of instances of an incident, and used Point in Time (P585).
Link



 SELECT DISTINCT ?incident ?label ?time WHERE 
?incident wdt:P31 wd:Q625994.
?incident rdfs:label ?label.
?incident wdt:P585 ?time.
FILTER((LANG(?label)) = "en")



However, result cases such as re:publica would only give me year information in the form of January 1, 2007 ~ 2016. (they occurred in April or May, and I would like more specific info like that)



Then I saw re:publica also has Start Dates & End Dates under Point in Time, per year. Therefore, I tried changing wdt:585 into wdt:580 (Start Dates), however, then I would not get re:publica in my results because apparently it is not considered to have 'start dates' if I query this way (because it is under Point in Time).



How do I get start time when Start Time is under Point in Time? Or, in general, how do I get certain info I want when it's under some other properties?










share|improve this question
















I ran queries to gain dates of instances of an incident, and used Point in Time (P585).
Link



 SELECT DISTINCT ?incident ?label ?time WHERE 
?incident wdt:P31 wd:Q625994.
?incident rdfs:label ?label.
?incident wdt:P585 ?time.
FILTER((LANG(?label)) = "en")



However, result cases such as re:publica would only give me year information in the form of January 1, 2007 ~ 2016. (they occurred in April or May, and I would like more specific info like that)



Then I saw re:publica also has Start Dates & End Dates under Point in Time, per year. Therefore, I tried changing wdt:585 into wdt:580 (Start Dates), however, then I would not get re:publica in my results because apparently it is not considered to have 'start dates' if I query this way (because it is under Point in Time).



How do I get start time when Start Time is under Point in Time? Or, in general, how do I get certain info I want when it's under some other properties?







sparql wikidata






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 27 at 10:47







belle

















asked Mar 27 at 10:33









bellebelle

124 bronze badges




124 bronze badges















  • Working on it: for anyone with similar questions, this link is helpful.

    – belle
    Mar 27 at 12:35







  • 1





    yes, with the examples it's pretty simple. In addition, understanding the data model of Wikidata can be achieved by reading this

    – AKSW
    Mar 27 at 12:46

















  • Working on it: for anyone with similar questions, this link is helpful.

    – belle
    Mar 27 at 12:35







  • 1





    yes, with the examples it's pretty simple. In addition, understanding the data model of Wikidata can be achieved by reading this

    – AKSW
    Mar 27 at 12:46
















Working on it: for anyone with similar questions, this link is helpful.

– belle
Mar 27 at 12:35






Working on it: for anyone with similar questions, this link is helpful.

– belle
Mar 27 at 12:35





1




1





yes, with the examples it's pretty simple. In addition, understanding the data model of Wikidata can be achieved by reading this

– AKSW
Mar 27 at 12:46





yes, with the examples it's pretty simple. In addition, understanding the data model of Wikidata can be achieved by reading this

– AKSW
Mar 27 at 12:46












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55375091%2fwikidata-structure-how-to-get-start-times-when-they-are-under-point-in-time%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55375091%2fwikidata-structure-how-to-get-start-times-when-they-are-under-point-in-time%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해