10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-12-26 06:14:38 +01: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 break
} }
var xyz = this.loadXYZString(str); var xyz = this.loadXYZString(str);
xyz.sourceFile = new websiteFile(file) for (var geom of xyz){
geom.sourceFile = new websiteFile(file)
}
return xyz return xyz
} }
static loadXYZString(text) { static loadXYZString(text) {

View File

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