10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-22 10:47:42 +02:00
QUESTDB_website/static/js/GeometriesLoader.js

17 lines
441 B
JavaScript

class GeometriesLoader{
static async loadForAsync(array){
var xyzs=[]
for (const item of array) {
const mymol=moleculeFormater.toFileName(item.molecule)
const myset=item.set.replace('#','')
try {
const mol=await Geometry.loadXYZAsync(`/${myset}/${mymol}.xyz`)
xyzs.push(mol)
} catch (error) {
console.error("Geometry not found",item,error)
}
}
return xyzs.flat()
}
}