Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Nos Hs2023
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Språksamlingane
stadnamn
Nos Hs2023
Commits
bd7fbb12
Commit
bd7fbb12
authored
6 years ago
by
Esko Ikkala
Browse files
Options
Downloads
Patches
Plain Diff
Do not capitalize base values
parent
ea69f44a
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
package-lock.json
+3003
-2990
3003 additions, 2990 deletions
package-lock.json
src/server/Mappers.js
+5
-1
5 additions, 1 deletion
src/server/Mappers.js
src/server/SparqlSearchEngine.js
+28
-28
28 additions, 28 deletions
src/server/SparqlSearchEngine.js
with
3036 additions
and
3019 deletions
package-lock.json
+
3003
−
2990
View file @
bd7fbb12
This diff is collapsed.
Click to expand it.
src/server/Mappers.js
+
5
−
1
View file @
bd7fbb12
...
...
@@ -14,7 +14,11 @@ export const groupBy = (sparqlBindings, group, simplify) => Object.values(_.redu
result
[
group
]
=
value
.
value
;
}
else
{
if
(
simplify
)
{
result
[
key
]
=
capitalizeFirstLetter
(
value
.
value
);
if
(
key
===
'
basicElement
'
)
{
result
[
key
]
=
value
.
value
;
}
else
{
result
[
key
]
=
capitalizeFirstLetter
(
value
.
value
);
}
}
else
{
const
oldVal
=
result
[
key
];
// add new value if it doesn't already exist
...
...
This diff is collapsed.
Click to expand it.
src/server/SparqlSearchEngine.js
+
28
−
28
View file @
bd7fbb12
import
GeographicLib
from
'
geographiclib
'
;
//
import GeographicLib from 'geographiclib';
import
SparqlApi
from
'
./SparqlApi
'
;
import
datasetConfig
from
'
./Datasets
'
;
import
{
...
...
@@ -45,33 +45,33 @@ class SparqlSearchEngine {
this
.
getResults
(
queryTerm
,
datasetId
))).
then
(
mergeResults
);
}
getComparisonResults
()
{
const
{
endpoint
,
comparisonQuery
}
=
datasetConfig
[
'
kotus
'
];
const
sparqlApi
=
new
SparqlApi
({
endpoint
});
//console.log(comparisonQuery)
return
this
.
doSearch
(
comparisonQuery
,
sparqlApi
,
mapResults
).
then
((
results
)
=>
{
// console.log(results)
const
geod
=
GeographicLib
.
Geodesic
.
WGS84
;
let
filtered
=
[];
for
(
let
i
=
0
;
i
<
results
.
length
;
i
++
)
{
for
(
let
j
=
i
+
1
;
j
<
results
.
length
;
j
++
)
{
const
resultObj
=
geod
.
Inverse
(
results
[
i
].
lat
,
results
[
i
].
long
,
results
[
j
].
lat
,
results
[
j
].
long
,
GeographicLib
.
Geodesic
.
DISTANCE
);
//console.log(resultObj);
if
(
resultObj
.
s12
>=
4000
)
{
console
.
log
(
'
near:
'
+
resultObj
.
s12
)
console
.
log
(
results
[
i
])
console
.
log
(
results
[
j
])
filtered
.
push
(
results
[
i
]);
filtered
.
push
(
results
[
j
]);
}
else
{
console
.
log
(
'
far away:
'
+
resultObj
.
s12
)
}
}
}
console
.
log
(
filtered
)
return
filtered
;
});
}
//
getComparisonResults() {
//
const { endpoint, comparisonQuery } = datasetConfig['kotus'];
//
const sparqlApi = new SparqlApi({ endpoint });
//
//console.log(comparisonQuery)
//
return this.doSearch(comparisonQuery, sparqlApi, mapResults).then((results) => {
//
// console.log(results)
//
const geod = GeographicLib.Geodesic.WGS84;
//
let filtered = [];
//
for (let i = 0; i < results.length; i++) {
//
for (let j = i + 1; j < results.length; j++) {
//
const resultObj = geod.Inverse(results[i].lat, results[i].long, results[j].lat, results[j].long, GeographicLib.Geodesic.DISTANCE);
//
//console.log(resultObj);
//
if (resultObj.s12 >= 4000) {
//
console.log('near: ' + resultObj.s12)
//
console.log(results[i])
//
console.log(results[j])
//
filtered.push(results[i]);
//
filtered.push(results[j]);
//
} else {
//
console.log('far away: ' + resultObj.s12)
//
}
//
}
//
}
//
console.log(filtered)
//
return filtered;
//
});
//
}
// getSuggestions(queryTerm, datasetId) {
// const { endpoint, suggestionQuery } = datasetConfig[datasetId];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment