├── .gitignore ├── .gitmodules ├── CITATION.cff ├── LICENSE ├── README.md ├── data └── validation │ ├── json_paths_authors.txt │ ├── json_paths_concepts.txt │ ├── json_paths_domains.txt │ ├── json_paths_fields.txt │ ├── json_paths_funders.txt │ ├── json_paths_institutions.txt │ ├── json_paths_publishers.txt │ ├── json_paths_sources.txt │ ├── json_paths_subfields.txt │ ├── json_paths_topics.txt │ ├── json_paths_works.txt │ ├── openalex_2025aug_authors_json_data_types.tsv │ ├── openalex_2025aug_authors_json_row_count_tables.tsv │ ├── openalex_2025aug_bigquery_row_count_tables.tsv │ ├── openalex_2025aug_classification_bigquery_row_count_tables.tsv │ ├── openalex_2025aug_classification_data_types.tsv │ ├── openalex_2025aug_classification_row_count_tables.tsv │ ├── openalex_2025aug_concepts_json_data_types.tsv │ ├── openalex_2025aug_concepts_json_row_count_tables.tsv │ ├── openalex_2025aug_core_bigquery_row_count_tables.tsv │ ├── openalex_2025aug_core_data_types.tsv │ ├── openalex_2025aug_core_row_count_tables.tsv │ ├── openalex_2025aug_data_types.tsv │ ├── openalex_2025aug_domains_json_data_types.tsv │ ├── openalex_2025aug_domains_json_row_count_tables.tsv │ ├── openalex_2025aug_fields_json_data_types.tsv │ ├── openalex_2025aug_fields_json_row_count_tables.tsv │ ├── openalex_2025aug_funders_json_data_types.tsv │ ├── openalex_2025aug_funders_json_row_count_tables.tsv │ ├── openalex_2025aug_indicators_data_types.tsv │ ├── openalex_2025aug_indicators_row_count_tables.tsv │ ├── openalex_2025aug_institutions_json_data_types.tsv │ ├── openalex_2025aug_institutions_json_row_count_tables.tsv │ ├── openalex_2025aug_publishers_json_data_types.tsv │ ├── openalex_2025aug_publishers_json_row_count_tables.tsv │ ├── openalex_2025aug_row_count_tables.tsv │ ├── openalex_2025aug_sources_json_data_types.tsv │ ├── openalex_2025aug_sources_json_row_count_tables.tsv │ ├── openalex_2025aug_subfields_json_data_types.tsv │ ├── openalex_2025aug_subfields_json_row_count_tables.tsv │ ├── openalex_2025aug_text_data_types.tsv │ ├── openalex_2025aug_text_row_count_tables.tsv │ ├── openalex_2025aug_topics_json_data_types.tsv │ ├── openalex_2025aug_topics_json_row_count_tables.tsv │ ├── openalex_2025aug_works_json_data_types.tsv │ └── openalex_2025aug_works_json_row_count_tables.tsv ├── doc ├── database_diagram.pdf ├── database_diagram.png ├── database_diagram.svg ├── database_diagram.vsdm ├── documentation.tsv └── img │ ├── apc_provenance.pdf │ ├── author.pdf │ ├── author_alternative_name.pdf │ ├── author_institution.pdf │ ├── author_institution_year.pdf │ ├── author_last_known_institution.pdf │ ├── author_position.pdf │ ├── citation.pdf │ ├── city.pdf │ ├── concept.pdf │ ├── concept_ancestor.pdf │ ├── concept_international_description.pdf │ ├── concept_international_name.pdf │ ├── concept_related.pdf │ ├── concept_umls_aui.pdf │ ├── concept_umls_cui.pdf │ ├── country.pdf │ ├── data_source.pdf │ ├── doi_registration_agency.pdf │ ├── domain.pdf │ ├── domain_alternative_name.pdf │ ├── domain_field.pdf │ ├── domain_sibling.pdf │ ├── field.pdf │ ├── field_alternative_name.pdf │ ├── field_sibling.pdf │ ├── field_subfield.pdf │ ├── full_database_diagram.pdf │ ├── fulltext_origin.pdf │ ├── funder.pdf │ ├── funder_alternative_name.pdf │ ├── funder_publisher.pdf │ ├── institution.pdf │ ├── institution_acronym.pdf │ ├── institution_alternative_name.pdf │ ├── institution_associated.pdf │ ├── institution_funder.pdf │ ├── institution_international_name.pdf │ ├── institution_lineage.pdf │ ├── institution_publisher.pdf │ ├── institution_relationship_type.pdf │ ├── institution_repository.pdf │ ├── institution_type.pdf │ ├── keyword.pdf │ ├── license.pdf │ ├── mesh_descriptor.pdf │ ├── mesh_qualifier.pdf │ ├── oa_status.pdf │ ├── publisher.pdf │ ├── publisher_alternative_name.pdf │ ├── publisher_country.pdf │ ├── raw_affiliation_string.pdf │ ├── raw_author_name.pdf │ ├── region.pdf │ ├── source.pdf │ ├── source_alternative_title.pdf │ ├── source_apc_price.pdf │ ├── source_issn.pdf │ ├── source_society.pdf │ ├── source_type.pdf │ ├── subfield.pdf │ ├── subfield_alternative_name.pdf │ ├── subfield_sibling.pdf │ ├── subfield_topic.pdf │ ├── sustainable_development_goal.pdf │ ├── topic.pdf │ ├── topic_keyword.pdf │ ├── topic_sibling.pdf │ ├── version.pdf │ ├── work.pdf │ ├── work_abstract.pdf │ ├── work_affiliation.pdf │ ├── work_affiliation_institution.pdf │ ├── work_author.pdf │ ├── work_author_affiliation.pdf │ ├── work_author_country.pdf │ ├── work_concept.pdf │ ├── work_data_source.pdf │ ├── work_detail.pdf │ ├── work_grant.pdf │ ├── work_keyword.pdf │ ├── work_location.pdf │ ├── work_mesh.pdf │ ├── work_reference.pdf │ ├── work_related.pdf │ ├── work_sustainable_development_goal.pdf │ ├── work_title.pdf │ ├── work_topic.pdf │ └── work_type.pdf └── src ├── 01_download_data.bat ├── 02_extract_data.bat ├── 03_analyze_json_files.bat ├── 04_parse_json.bat ├── 05_load_json_databases.bat ├── 06_load_relational_database.bat ├── 07_load_text_database.bat ├── 08_load_classification_database.bat ├── 09_load_core_database.bat ├── 10_load_indicators_database.bat ├── 11_shrink_databases.bat ├── 12_create_database_documentation.bat ├── 13_release_databases.bat ├── 20_export.bat ├── 21_bigquery_upload.bat ├── 22_bigquery_validation.bat ├── 23_zenodo_export.bat ├── XX_compare_validation.bat ├── bat └── unzip_file.bat ├── settings.bat └── sql ├── classification ├── VOSviewer │ ├── create_VOSviewer_map_macro_clusters.sql │ ├── create_VOSviewer_map_meso_clusters.sql │ └── create_VOSviewer_map_micro_clusters.sql ├── complement_publicationclassification.sql ├── complement_publicationclassification_using_publicationclassificationcomplement.sql ├── copy_publicationclassification.sql ├── copy_publicationclassificationlabeling.sql ├── create_input_table_publicationclassificationlabeling.sql ├── create_input_tables_publicationclassification.sql ├── create_input_tables_publicationclassificationcomplement.sql ├── create_schemas.sql ├── grant_access.sql └── table_scripts │ ├── 01_clustering.sql │ ├── 02_keywords.sql │ ├── 03_main_fields.sql │ └── 04_sources.sql ├── core └── table_scripts │ └── 01_create_tables.sql ├── indicators ├── create_func_constants.sql ├── create_sp_schema.sql ├── grant_access.sql ├── stored_procedures │ ├── 01_drop_all_stored_procedures.sql │ ├── 02_create_type_pub_indicators_table.sql │ ├── 02_create_type_pub_set_indicators_table.sql │ ├── 02_create_type_pub_set_table.sql │ ├── 02_create_type_pub_table.sql │ ├── 03_create_proc_calc_indicators.sql │ └── 03_create_proc_calc_indicators_pubs.sql └── table_scripts │ ├── 01_create_tables.sql │ ├── 02_create_tables.sql │ ├── 03_create_tables.sql │ ├── 04_create_tables.sql │ └── 05_create_tables.sql ├── relational ├── grant_access.sql ├── post_processing_scripts │ ├── 01_create_table_types.sql │ └── 02_create_function_get_work_detail.sql ├── pre_processing_scripts │ ├── 01_create_help_table_author.sql │ ├── 02_create_help_table_concept.sql │ ├── 03_create_help_table_domain.sql │ ├── 04_create_help_table_field.sql │ ├── 05_create_help_table_institution.sql │ ├── 06_create_help_table_funder.sql │ ├── 07_create_help_table_publishers.sql │ ├── 08_create_help_table_sources.sql │ ├── 09_create_help_table_subfield.sql │ ├── 10_create_help_table_topics.sql │ └── 11_create_help_table_work.sql ├── remove_help_tables.sql └── table_scripts │ ├── 01_author.sql │ ├── 02_concept.sql │ ├── 03_domain.sql │ ├── 04_field.sql │ ├── 05_country.sql │ ├── 06_funder.sql │ ├── 07_institution.sql │ ├── 08_publisher.sql │ ├── 09_institution_funder_publisher.sql │ ├── 10_source.sql │ ├── 11_subfield.sql │ ├── 12_topic.sql │ ├── 13_work.sql │ ├── 14_work_author_affiliation_institution.sql │ ├── 15_citation.sql │ ├── 16_work_detail.sql │ ├── 17_update_reference_count.sql │ └── 18_update_citation_counts.sql ├── text ├── post_processing_scripts │ └── 01_create_full_text_index.sql └── table_scripts │ └── 01_text_data.sql └── zenodo ├── classification ├── clustering.sql ├── macro_cluster.sql ├── macro_cluster_main_field.sql ├── main_field.sql ├── meso_cluster.sql ├── meso_cluster_main_field.sql ├── meso_cluster_source.sql ├── micro_cluster.sql ├── micro_cluster_keyword.sql ├── micro_cluster_main_field.sql └── micro_cluster_source.sql └── core ├── source.sql └── work.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/.gitmodules -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/README.md -------------------------------------------------------------------------------- /data/validation/json_paths_authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_authors.txt -------------------------------------------------------------------------------- /data/validation/json_paths_concepts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_concepts.txt -------------------------------------------------------------------------------- /data/validation/json_paths_domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_domains.txt -------------------------------------------------------------------------------- /data/validation/json_paths_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_fields.txt -------------------------------------------------------------------------------- /data/validation/json_paths_funders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_funders.txt -------------------------------------------------------------------------------- /data/validation/json_paths_institutions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_institutions.txt -------------------------------------------------------------------------------- /data/validation/json_paths_publishers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_publishers.txt -------------------------------------------------------------------------------- /data/validation/json_paths_sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_sources.txt -------------------------------------------------------------------------------- /data/validation/json_paths_subfields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_subfields.txt -------------------------------------------------------------------------------- /data/validation/json_paths_topics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_topics.txt -------------------------------------------------------------------------------- /data/validation/json_paths_works.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/json_paths_works.txt -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_authors_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_authors_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_authors_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_authors_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_bigquery_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_bigquery_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_classification_bigquery_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_classification_bigquery_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_classification_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_classification_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_classification_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_classification_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_concepts_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_concepts_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_concepts_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_concepts_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_core_bigquery_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_core_bigquery_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_core_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_core_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_core_row_count_tables.tsv: -------------------------------------------------------------------------------- 1 | source 260804 2 | work 270051911 3 | -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_domains_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_domains_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_domains_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_domains_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_fields_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_fields_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_fields_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_fields_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_funders_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_funders_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_funders_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_funders_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_indicators_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_indicators_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_indicators_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_indicators_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_institutions_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_institutions_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_institutions_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_institutions_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_publishers_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_publishers_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_publishers_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_publishers_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_sources_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_sources_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_sources_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_sources_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_subfields_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_subfields_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_subfields_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_subfields_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_text_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_text_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_text_row_count_tables.tsv: -------------------------------------------------------------------------------- 1 | text_data 268174046 2 | -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_topics_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_topics_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_topics_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_topics_json_row_count_tables.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_works_json_data_types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_works_json_data_types.tsv -------------------------------------------------------------------------------- /data/validation/openalex_2025aug_works_json_row_count_tables.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/data/validation/openalex_2025aug_works_json_row_count_tables.tsv -------------------------------------------------------------------------------- /doc/database_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/database_diagram.pdf -------------------------------------------------------------------------------- /doc/database_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/database_diagram.png -------------------------------------------------------------------------------- /doc/database_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/database_diagram.svg -------------------------------------------------------------------------------- /doc/database_diagram.vsdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/database_diagram.vsdm -------------------------------------------------------------------------------- /doc/documentation.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/documentation.tsv -------------------------------------------------------------------------------- /doc/img/apc_provenance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/apc_provenance.pdf -------------------------------------------------------------------------------- /doc/img/author.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/author.pdf -------------------------------------------------------------------------------- /doc/img/author_alternative_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/author_alternative_name.pdf -------------------------------------------------------------------------------- /doc/img/author_institution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/author_institution.pdf -------------------------------------------------------------------------------- /doc/img/author_institution_year.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/author_institution_year.pdf -------------------------------------------------------------------------------- /doc/img/author_last_known_institution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/author_last_known_institution.pdf -------------------------------------------------------------------------------- /doc/img/author_position.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/author_position.pdf -------------------------------------------------------------------------------- /doc/img/citation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/citation.pdf -------------------------------------------------------------------------------- /doc/img/city.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/city.pdf -------------------------------------------------------------------------------- /doc/img/concept.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/concept.pdf -------------------------------------------------------------------------------- /doc/img/concept_ancestor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/concept_ancestor.pdf -------------------------------------------------------------------------------- /doc/img/concept_international_description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/concept_international_description.pdf -------------------------------------------------------------------------------- /doc/img/concept_international_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/concept_international_name.pdf -------------------------------------------------------------------------------- /doc/img/concept_related.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/concept_related.pdf -------------------------------------------------------------------------------- /doc/img/concept_umls_aui.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/concept_umls_aui.pdf -------------------------------------------------------------------------------- /doc/img/concept_umls_cui.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/concept_umls_cui.pdf -------------------------------------------------------------------------------- /doc/img/country.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/country.pdf -------------------------------------------------------------------------------- /doc/img/data_source.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/data_source.pdf -------------------------------------------------------------------------------- /doc/img/doi_registration_agency.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/doi_registration_agency.pdf -------------------------------------------------------------------------------- /doc/img/domain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/domain.pdf -------------------------------------------------------------------------------- /doc/img/domain_alternative_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/domain_alternative_name.pdf -------------------------------------------------------------------------------- /doc/img/domain_field.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/domain_field.pdf -------------------------------------------------------------------------------- /doc/img/domain_sibling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/domain_sibling.pdf -------------------------------------------------------------------------------- /doc/img/field.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/field.pdf -------------------------------------------------------------------------------- /doc/img/field_alternative_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/field_alternative_name.pdf -------------------------------------------------------------------------------- /doc/img/field_sibling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/field_sibling.pdf -------------------------------------------------------------------------------- /doc/img/field_subfield.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/field_subfield.pdf -------------------------------------------------------------------------------- /doc/img/full_database_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/full_database_diagram.pdf -------------------------------------------------------------------------------- /doc/img/fulltext_origin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/fulltext_origin.pdf -------------------------------------------------------------------------------- /doc/img/funder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/funder.pdf -------------------------------------------------------------------------------- /doc/img/funder_alternative_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/funder_alternative_name.pdf -------------------------------------------------------------------------------- /doc/img/funder_publisher.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/funder_publisher.pdf -------------------------------------------------------------------------------- /doc/img/institution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution.pdf -------------------------------------------------------------------------------- /doc/img/institution_acronym.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_acronym.pdf -------------------------------------------------------------------------------- /doc/img/institution_alternative_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_alternative_name.pdf -------------------------------------------------------------------------------- /doc/img/institution_associated.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_associated.pdf -------------------------------------------------------------------------------- /doc/img/institution_funder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_funder.pdf -------------------------------------------------------------------------------- /doc/img/institution_international_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_international_name.pdf -------------------------------------------------------------------------------- /doc/img/institution_lineage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_lineage.pdf -------------------------------------------------------------------------------- /doc/img/institution_publisher.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_publisher.pdf -------------------------------------------------------------------------------- /doc/img/institution_relationship_type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_relationship_type.pdf -------------------------------------------------------------------------------- /doc/img/institution_repository.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_repository.pdf -------------------------------------------------------------------------------- /doc/img/institution_type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/institution_type.pdf -------------------------------------------------------------------------------- /doc/img/keyword.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/keyword.pdf -------------------------------------------------------------------------------- /doc/img/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/license.pdf -------------------------------------------------------------------------------- /doc/img/mesh_descriptor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/mesh_descriptor.pdf -------------------------------------------------------------------------------- /doc/img/mesh_qualifier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/mesh_qualifier.pdf -------------------------------------------------------------------------------- /doc/img/oa_status.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/oa_status.pdf -------------------------------------------------------------------------------- /doc/img/publisher.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/publisher.pdf -------------------------------------------------------------------------------- /doc/img/publisher_alternative_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/publisher_alternative_name.pdf -------------------------------------------------------------------------------- /doc/img/publisher_country.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/publisher_country.pdf -------------------------------------------------------------------------------- /doc/img/raw_affiliation_string.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/raw_affiliation_string.pdf -------------------------------------------------------------------------------- /doc/img/raw_author_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/raw_author_name.pdf -------------------------------------------------------------------------------- /doc/img/region.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/region.pdf -------------------------------------------------------------------------------- /doc/img/source.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/source.pdf -------------------------------------------------------------------------------- /doc/img/source_alternative_title.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/source_alternative_title.pdf -------------------------------------------------------------------------------- /doc/img/source_apc_price.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/source_apc_price.pdf -------------------------------------------------------------------------------- /doc/img/source_issn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/source_issn.pdf -------------------------------------------------------------------------------- /doc/img/source_society.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/source_society.pdf -------------------------------------------------------------------------------- /doc/img/source_type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/source_type.pdf -------------------------------------------------------------------------------- /doc/img/subfield.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/subfield.pdf -------------------------------------------------------------------------------- /doc/img/subfield_alternative_name.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/subfield_alternative_name.pdf -------------------------------------------------------------------------------- /doc/img/subfield_sibling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/subfield_sibling.pdf -------------------------------------------------------------------------------- /doc/img/subfield_topic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/subfield_topic.pdf -------------------------------------------------------------------------------- /doc/img/sustainable_development_goal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/sustainable_development_goal.pdf -------------------------------------------------------------------------------- /doc/img/topic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/topic.pdf -------------------------------------------------------------------------------- /doc/img/topic_keyword.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/topic_keyword.pdf -------------------------------------------------------------------------------- /doc/img/topic_sibling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/topic_sibling.pdf -------------------------------------------------------------------------------- /doc/img/version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/version.pdf -------------------------------------------------------------------------------- /doc/img/work.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work.pdf -------------------------------------------------------------------------------- /doc/img/work_abstract.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_abstract.pdf -------------------------------------------------------------------------------- /doc/img/work_affiliation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_affiliation.pdf -------------------------------------------------------------------------------- /doc/img/work_affiliation_institution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_affiliation_institution.pdf -------------------------------------------------------------------------------- /doc/img/work_author.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_author.pdf -------------------------------------------------------------------------------- /doc/img/work_author_affiliation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_author_affiliation.pdf -------------------------------------------------------------------------------- /doc/img/work_author_country.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_author_country.pdf -------------------------------------------------------------------------------- /doc/img/work_concept.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_concept.pdf -------------------------------------------------------------------------------- /doc/img/work_data_source.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_data_source.pdf -------------------------------------------------------------------------------- /doc/img/work_detail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_detail.pdf -------------------------------------------------------------------------------- /doc/img/work_grant.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_grant.pdf -------------------------------------------------------------------------------- /doc/img/work_keyword.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_keyword.pdf -------------------------------------------------------------------------------- /doc/img/work_location.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_location.pdf -------------------------------------------------------------------------------- /doc/img/work_mesh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_mesh.pdf -------------------------------------------------------------------------------- /doc/img/work_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_reference.pdf -------------------------------------------------------------------------------- /doc/img/work_related.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_related.pdf -------------------------------------------------------------------------------- /doc/img/work_sustainable_development_goal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_sustainable_development_goal.pdf -------------------------------------------------------------------------------- /doc/img/work_title.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_title.pdf -------------------------------------------------------------------------------- /doc/img/work_topic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_topic.pdf -------------------------------------------------------------------------------- /doc/img/work_type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/doc/img/work_type.pdf -------------------------------------------------------------------------------- /src/01_download_data.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/01_download_data.bat -------------------------------------------------------------------------------- /src/02_extract_data.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/02_extract_data.bat -------------------------------------------------------------------------------- /src/03_analyze_json_files.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/03_analyze_json_files.bat -------------------------------------------------------------------------------- /src/04_parse_json.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/04_parse_json.bat -------------------------------------------------------------------------------- /src/05_load_json_databases.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/05_load_json_databases.bat -------------------------------------------------------------------------------- /src/06_load_relational_database.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/06_load_relational_database.bat -------------------------------------------------------------------------------- /src/07_load_text_database.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/07_load_text_database.bat -------------------------------------------------------------------------------- /src/08_load_classification_database.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/08_load_classification_database.bat -------------------------------------------------------------------------------- /src/09_load_core_database.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/09_load_core_database.bat -------------------------------------------------------------------------------- /src/10_load_indicators_database.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/10_load_indicators_database.bat -------------------------------------------------------------------------------- /src/11_shrink_databases.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/11_shrink_databases.bat -------------------------------------------------------------------------------- /src/12_create_database_documentation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/12_create_database_documentation.bat -------------------------------------------------------------------------------- /src/13_release_databases.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/13_release_databases.bat -------------------------------------------------------------------------------- /src/20_export.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/20_export.bat -------------------------------------------------------------------------------- /src/21_bigquery_upload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/21_bigquery_upload.bat -------------------------------------------------------------------------------- /src/22_bigquery_validation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/22_bigquery_validation.bat -------------------------------------------------------------------------------- /src/23_zenodo_export.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/23_zenodo_export.bat -------------------------------------------------------------------------------- /src/XX_compare_validation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/XX_compare_validation.bat -------------------------------------------------------------------------------- /src/bat/unzip_file.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/bat/unzip_file.bat -------------------------------------------------------------------------------- /src/settings.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/settings.bat -------------------------------------------------------------------------------- /src/sql/classification/VOSviewer/create_VOSviewer_map_macro_clusters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/VOSviewer/create_VOSviewer_map_macro_clusters.sql -------------------------------------------------------------------------------- /src/sql/classification/VOSviewer/create_VOSviewer_map_meso_clusters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/VOSviewer/create_VOSviewer_map_meso_clusters.sql -------------------------------------------------------------------------------- /src/sql/classification/VOSviewer/create_VOSviewer_map_micro_clusters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/VOSviewer/create_VOSviewer_map_micro_clusters.sql -------------------------------------------------------------------------------- /src/sql/classification/complement_publicationclassification.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/complement_publicationclassification.sql -------------------------------------------------------------------------------- /src/sql/classification/complement_publicationclassification_using_publicationclassificationcomplement.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/complement_publicationclassification_using_publicationclassificationcomplement.sql -------------------------------------------------------------------------------- /src/sql/classification/copy_publicationclassification.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/copy_publicationclassification.sql -------------------------------------------------------------------------------- /src/sql/classification/copy_publicationclassificationlabeling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/copy_publicationclassificationlabeling.sql -------------------------------------------------------------------------------- /src/sql/classification/create_input_table_publicationclassificationlabeling.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/create_input_table_publicationclassificationlabeling.sql -------------------------------------------------------------------------------- /src/sql/classification/create_input_tables_publicationclassification.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/create_input_tables_publicationclassification.sql -------------------------------------------------------------------------------- /src/sql/classification/create_input_tables_publicationclassificationcomplement.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/create_input_tables_publicationclassificationcomplement.sql -------------------------------------------------------------------------------- /src/sql/classification/create_schemas.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/create_schemas.sql -------------------------------------------------------------------------------- /src/sql/classification/grant_access.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/grant_access.sql -------------------------------------------------------------------------------- /src/sql/classification/table_scripts/01_clustering.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/table_scripts/01_clustering.sql -------------------------------------------------------------------------------- /src/sql/classification/table_scripts/02_keywords.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/table_scripts/02_keywords.sql -------------------------------------------------------------------------------- /src/sql/classification/table_scripts/03_main_fields.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/table_scripts/03_main_fields.sql -------------------------------------------------------------------------------- /src/sql/classification/table_scripts/04_sources.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/classification/table_scripts/04_sources.sql -------------------------------------------------------------------------------- /src/sql/core/table_scripts/01_create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/core/table_scripts/01_create_tables.sql -------------------------------------------------------------------------------- /src/sql/indicators/create_func_constants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/create_func_constants.sql -------------------------------------------------------------------------------- /src/sql/indicators/create_sp_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/create_sp_schema.sql -------------------------------------------------------------------------------- /src/sql/indicators/grant_access.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/grant_access.sql -------------------------------------------------------------------------------- /src/sql/indicators/stored_procedures/01_drop_all_stored_procedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/stored_procedures/01_drop_all_stored_procedures.sql -------------------------------------------------------------------------------- /src/sql/indicators/stored_procedures/02_create_type_pub_indicators_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/stored_procedures/02_create_type_pub_indicators_table.sql -------------------------------------------------------------------------------- /src/sql/indicators/stored_procedures/02_create_type_pub_set_indicators_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/stored_procedures/02_create_type_pub_set_indicators_table.sql -------------------------------------------------------------------------------- /src/sql/indicators/stored_procedures/02_create_type_pub_set_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/stored_procedures/02_create_type_pub_set_table.sql -------------------------------------------------------------------------------- /src/sql/indicators/stored_procedures/02_create_type_pub_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/stored_procedures/02_create_type_pub_table.sql -------------------------------------------------------------------------------- /src/sql/indicators/stored_procedures/03_create_proc_calc_indicators.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/stored_procedures/03_create_proc_calc_indicators.sql -------------------------------------------------------------------------------- /src/sql/indicators/stored_procedures/03_create_proc_calc_indicators_pubs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/stored_procedures/03_create_proc_calc_indicators_pubs.sql -------------------------------------------------------------------------------- /src/sql/indicators/table_scripts/01_create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/table_scripts/01_create_tables.sql -------------------------------------------------------------------------------- /src/sql/indicators/table_scripts/02_create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/table_scripts/02_create_tables.sql -------------------------------------------------------------------------------- /src/sql/indicators/table_scripts/03_create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/table_scripts/03_create_tables.sql -------------------------------------------------------------------------------- /src/sql/indicators/table_scripts/04_create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/table_scripts/04_create_tables.sql -------------------------------------------------------------------------------- /src/sql/indicators/table_scripts/05_create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/indicators/table_scripts/05_create_tables.sql -------------------------------------------------------------------------------- /src/sql/relational/grant_access.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/grant_access.sql -------------------------------------------------------------------------------- /src/sql/relational/post_processing_scripts/01_create_table_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/post_processing_scripts/01_create_table_types.sql -------------------------------------------------------------------------------- /src/sql/relational/post_processing_scripts/02_create_function_get_work_detail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/post_processing_scripts/02_create_function_get_work_detail.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/01_create_help_table_author.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/01_create_help_table_author.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/02_create_help_table_concept.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/02_create_help_table_concept.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/03_create_help_table_domain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/03_create_help_table_domain.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/04_create_help_table_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/04_create_help_table_field.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/05_create_help_table_institution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/05_create_help_table_institution.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/06_create_help_table_funder.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/06_create_help_table_funder.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/07_create_help_table_publishers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/07_create_help_table_publishers.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/08_create_help_table_sources.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/08_create_help_table_sources.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/09_create_help_table_subfield.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/09_create_help_table_subfield.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/10_create_help_table_topics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/10_create_help_table_topics.sql -------------------------------------------------------------------------------- /src/sql/relational/pre_processing_scripts/11_create_help_table_work.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/pre_processing_scripts/11_create_help_table_work.sql -------------------------------------------------------------------------------- /src/sql/relational/remove_help_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/remove_help_tables.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/01_author.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/01_author.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/02_concept.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/02_concept.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/03_domain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/03_domain.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/04_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/04_field.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/05_country.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/05_country.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/06_funder.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/06_funder.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/07_institution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/07_institution.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/08_publisher.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/08_publisher.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/09_institution_funder_publisher.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/09_institution_funder_publisher.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/10_source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/10_source.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/11_subfield.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/11_subfield.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/12_topic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/12_topic.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/13_work.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/13_work.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/14_work_author_affiliation_institution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/14_work_author_affiliation_institution.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/15_citation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/15_citation.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/16_work_detail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/16_work_detail.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/17_update_reference_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/17_update_reference_count.sql -------------------------------------------------------------------------------- /src/sql/relational/table_scripts/18_update_citation_counts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/relational/table_scripts/18_update_citation_counts.sql -------------------------------------------------------------------------------- /src/sql/text/post_processing_scripts/01_create_full_text_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/text/post_processing_scripts/01_create_full_text_index.sql -------------------------------------------------------------------------------- /src/sql/text/table_scripts/01_text_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/text/table_scripts/01_text_data.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/clustering.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/clustering.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/macro_cluster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/macro_cluster.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/macro_cluster_main_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/macro_cluster_main_field.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/main_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/main_field.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/meso_cluster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/meso_cluster.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/meso_cluster_main_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/meso_cluster_main_field.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/meso_cluster_source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/meso_cluster_source.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/micro_cluster.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/micro_cluster.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/micro_cluster_keyword.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/micro_cluster_keyword.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/micro_cluster_main_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/micro_cluster_main_field.sql -------------------------------------------------------------------------------- /src/sql/zenodo/classification/micro_cluster_source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/classification/micro_cluster_source.sql -------------------------------------------------------------------------------- /src/sql/zenodo/core/source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/core/source.sql -------------------------------------------------------------------------------- /src/sql/zenodo/core/work.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CWTS-OpenAlex-databases/HEAD/src/sql/zenodo/core/work.sql --------------------------------------------------------------------------------