coordinate_format#

property ReciprocalLatticeVector.coordinate_format#

Vector coordinate format, either "hkl" or "hkil".

Return type:

str

Examples

See ReciprocalLatticeVector for the creation of rlv

>>> rlv
ReciprocalLatticeVector (2,), al (m-3m)
[[1. 1. 1.]
 [2. 0. 0.]]
>>> rlv.coordinate_format
'hkl'
>>> rlv.coordinate_format = "hkil"
>>> rlv
ReciprocalLatticeVector (2,), al (m-3m)
[[ 1.  1. -2.  1.]
 [ 2.  0. -2.  0.]]