Search Databse by XRD 2Theta/LPs

Hello. Is there a way to search by lattice parameter ranges or by prominent XRD peaks (e.g. 2Theta = 50°)

To search by XRD peaks, you’d probably have to pull all of the structures and post-process, but you can query by lattice parameter using comparator operators like $gt.

data = mpr.query({“structure.lattice.a”: {"$gt": 10}}, properties=[‘structure’, ‘material_id’])

1 Like