Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crssnky/a7a5c454b0eb2ef78a865281bb2ee92e to your computer and use it in GitHub Desktop.
Save crssnky/a7a5c454b0eb2ef78a865281bb2ee92e to your computer and use it in GitHub Desktop.
PREFIX schema: <http://schema.org/>
PREFIX math: <http://www.w3.org/2005/xpath-functions/math#>
SELECT ?名前 (?height as ?身長) (?weight as ?体重) ?デュポア式 ?新谷式 ?藤本式
WHERE {
?s schema:name ?名前;
schema:height ?height;
schema:weight ?weight;
bind(math:pow(?height,0.725)*math:pow(?weight,0.425)*0.007184 as ?デュポア式)
bind(math:pow(?height,0.725)*math:pow(?weight,0.425)*0.007358 as ?新谷式)
bind(math:pow(?height,0.663)*math:pow(?weight,0.444)*0.008883 as ?藤本式)
}order by ?デュポア式
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment