10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 18:06:06 +02:00
QUESTDB_website/static/js/GeometriesLoader.js

16 lines
461 B
JavaScript
Raw Normal View History

2020-09-28 15:39:46 +02:00
class GeometriesLoader{
static async loadForAsync(array){
var xyzs=[]
for (const item of array) {
const mymol=mhchemCE.extract(item.molecule).toLowerCase().replace(" ","_")
const myset=item.set.split("#").join("")
try {
const mol=await Geometry.loadXYZAsync(`/${myset}/${mymol}.xyz`)
xyzs.push(mol)
} catch (error) {
console.error("Geometry not found",item)
}
}
return xyzs.flat()
}
}