more cif-core fields

This commit is contained in:
Alexander Rose
2020-04-09 17:31:17 -07:00
parent e34aad991b
commit 0cc077c346
2 changed files with 22 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
audit.block_doi
database_code.depnum_ccdc_archive
database_code.NBS
database_code.CSD
chemical.name_systematic
chemical.name_common
@@ -19,6 +21,7 @@ atom_type_scat.source
space_group.crystal_system
space_group.name_H-M_full
space_group.IT_number
space_group_symop.operation_xyz
cell.length_a
1 audit.block_doi
2 database_code.depnum_ccdc_archive
3 chemical.name_systematic database_code.NBS
4 database_code.CSD
5 chemical.name_systematic
6 chemical.name_common
7 chemical.melting_point
8 chemical_formula.moiety
21 cell.length_c cell.length_b
22 cell.angle_alpha cell.length_c
23 cell.angle_beta cell.angle_alpha
24 cell.angle_beta
25 cell.angle_gamma
26 cell.volume
27 cell.formula_units_Z

View File

@@ -181,6 +181,14 @@ export const CifCore_Schema = {
* trigonal system.
*/
crystal_system: str,
/**
* The number as assigned in International Tables for Crystallography
* Vol A, specifying the proper affine class (i.e. the orientation
* preserving affine class) of space groups (crystallographic space
* group type) to which the space group belongs. This number defines
* the space group type but not the coordinate system expressed.
*/
IT_number: int,
/**
* The full international Hermann-Mauguin space-group symbol as
* defined in Section 2.2.3 and given as the second item of the
@@ -329,12 +337,20 @@ export const CifCore_Schema = {
* originate from that source.
*/
database_code: {
/**
* Code assigned by the Cambridge Structural Database.
*/
CSD: str,
/**
* Deposition numbers assigned by the Cambridge Crystallographic
* Data Centre (CCDC) to files containing structural information
* archived by the CCDC.
*/
depnum_ccdc_archive: str,
/**
* Code assigned by the NBS (NIST) Crystal Data Database.
*/
NBS: str,
},
/**
* The CATEGORY of data items used to describe atom site information
@@ -586,6 +602,9 @@ export const CifCore_Schema = {
}
export const CifCore_Aliases = {
'space_group.IT_number': [
'symmetry_Int_Tables_number',
],
'space_group.name_H-M_full': [
'symmetry_space_group_name_H-M',
],