10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-25 13:41:50 +02:00
This commit is contained in:
scemama 2020-12-07 10:08:18 +00:00
parent f952931e95
commit aa95622408
3 changed files with 3081 additions and 3079 deletions

File diff suppressed because one or more lines are too long

View File

@ -14,7 +14,9 @@ class Geometry {
break
}
var xyz = this.loadXYZString(str);
xyz.sourceFile = new websiteFile(file)
for (var geom of xyz){
geom.sourceFile = new websiteFile(file)
}
return xyz
}
static loadXYZString(text) {

View File

@ -8,8 +8,8 @@ class indexDB {
var site_url = "/"+window.location.pathname.split('/')[1];
const text = await getTextFromFileUrlAsync(site_url+"/data/index.yaml",{"Cache-Control":`max-age=${maxAge}`})
const myYaml = jsyaml.load(text);
db.sets = ((myYaml.sets === null) ? new Map() : new Map(Object.entries(myYaml.sets)));
db.others = ((myYaml.others === null) ? [] : Array.from(myYaml.others));
db.sets = ((myYaml.sets === undefined) ? new Map() : new Map(Object.entries(myYaml.sets)));
db.others = ((myYaml.others === undefined) ? [] : Array.from(myYaml.others));
window.indexDB=db
return db
}