Datasets:

Languages:
English
DOI:
License:

v2.0.0: OpenAlex authorship, citation expansion, and derived edges

#1
Files changed (4) hide show
  1. README.md +119 -72
  2. graph.cypher +2 -2
  3. graph.graphml +2 -2
  4. graph.json +2 -2
README.md CHANGED
@@ -8,60 +8,72 @@ tags:
8
  - Satellite
9
  - Knowledge Graph
10
  - Machine Learning
 
 
 
11
  ---
12
 
13
- # NASA Knowledge Graph Dataset
14
-
15
  ## Dataset Summary
16
 
17
  The **NASA Knowledge Graph Dataset** is an expansive graph-based dataset designed to integrate and interconnect information about satellite datasets, scientific publications, instruments, platforms, projects, data centers, and science keywords. This knowledge graph is particularly focused on datasets managed by NASA's Distributed Active Archive Centers (DAACs), which are NASA's data repositories responsible for archiving and distributing scientific data. In addition to NASA DAACs, the graph includes datasets from 184 data providers worldwide, including various government agencies and academic institutions.
18
 
19
  The primary goal of the NASA Knowledge Graph is to bridge scientific publications with the datasets they reference, facilitating deeper insights and research opportunities within NASA's scientific and data ecosystem. By organizing these interconnections within a graph structure, this dataset enables advanced analyses, such as discovering influential datasets, understanding research trends, and exploring scientific collaborations.
20
 
 
 
21
  ---
22
 
23
- ## What's Changed (v1.2.0) - October 21, 2025
 
 
24
 
25
  ### 1. Node Changes
26
 
27
- * **Total Nodes:** Increased from 145,678 to 150,351 (+4,673)
28
- * **New Node Counts:**
29
 
30
- * **Dataset:** Increased from 6,821 to 8,058 (+1,237)
31
- * **DataCenter:** Decreased from 197 to 189 (-8)
32
- * **Instrument:** Increased from 897 to 921 (+24)
33
- * **Platform:** Increased from 451 to 455 (+4)
34
- * **Project:** Increased from 351 to 415 (+64)
35
- * **Publication:** Increased from 135,352 to 138,704 (+3,352)
36
- * **ScienceKeyword:** Remained the same at 1,609
 
 
 
 
37
 
38
  ### 2. Relationship Changes
39
 
40
- * **Total Relationships:** Increased from 406,515 to 436,203 (+29,688)
41
- * **Updated Relationship Counts:**
42
 
43
- * **CITES:** Increased from 208,429 to 208,616 (+187)
44
- * **HAS_APPLIEDRESEARCHAREA:** Increased from 119,695 to 121,553 (+1,858)
45
- * **HAS_DATASET:** Increased from 9,834 to 11,698 (+1,864)
46
- * **HAS_INSTRUMENT:** Increased from 2,526 to 2,631 (+105)
47
- * **HAS_PLATFORM:** Increased from 10,398 to 11,944 (+1,546)
48
- * **HAS_SCIENCEKEYWORD:** Increased from 21,571 to 25,553 (+3,982)
49
- * **HAS_SUBCATEGORY:** Remained the same at 1,823
50
- * **OF_PROJECT:** Increased from 6,378 to 8,031 (+1,653)
51
- * **USES_DATASET:** Increased from 25,861 to 44,354 (+18,493)
52
 
53
- ### 3. Property Changes
 
 
 
 
 
 
 
 
54
 
55
- * **Removed Properties:**
56
 
57
- * `pagerank_publication_dataset` and all derived PageRank fields.
58
- * **Schema Updates:**
 
59
 
60
- * All node properties standardized to string type for cross-database compatibility.
61
- * No new node types added; schema remains stable with seven main entity types.
62
- * Relationship properties remain null across all types.
63
 
64
- These changes reflect expansion in dataset-publication linkages, improved dataset completeness, and schema simplification for downstream applications.
65
 
66
  ---
67
 
@@ -71,9 +83,9 @@ Each file in the dataset has a SHA-256 checksum to verify its integrity:
71
 
72
  | File Name | SHA-256 Checksum |
73
  | --------------- | ------------------------------------------------------------------ |
74
- | `graph.cypher` | `ed4800be1a822822402083e6209a0b3dd1a1a697e0a44b19e74638cd8a2c3abe` |
75
- | `graph.graphml` | `55d7c4fc1a29b692c909bd76f89b35d9b3705f41febcdb6261ae72bca533e086` |
76
- | `graph.json` | `4cb68b0d7e5f2b5a6823ee489a58938f534bc9bcbce53d6f8c03f31f8c23795e` |
77
 
78
  ### Verification
79
 
@@ -98,7 +110,7 @@ def calculate_sha256(filepath):
98
 
99
  ### Nodes and Properties
100
 
101
- The knowledge graph consists of seven main node types, each representing a different entity within NASA's ecosystem.
102
 
103
  #### 1. Dataset
104
 
@@ -169,67 +181,92 @@ The knowledge graph consists of seven main node types, each representing a diffe
169
  * `longName` (String)
170
  * `url` (String)
171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  ---
173
 
174
  ## Statistics
175
 
176
- # Data Statistics
177
-
178
- ## Total Counts
179
 
180
- | Type | Count |
181
- | ----------------------- | ------- |
182
- | **Total Nodes** | 150,351 |
183
- | **Total Relationships** | 436,203 |
184
 
185
- ## Node Label Counts
186
 
187
  | Node Label | Count |
188
  | -------------- | ------- |
 
 
 
189
  | Dataset | 8,058 |
190
- | DataCenter | 189 |
191
- | Project | 415 |
192
- | Platform | 455 |
193
- | Instrument | 921 |
194
  | ScienceKeyword | 1,609 |
195
- | Publication | 138,704 |
196
-
197
- ## Relationship Label Counts
198
-
199
- | Relationship Label | Count |
200
- | ----------------------- | ------- |
201
- | CITES | 208,616 |
202
- | HAS_APPLIEDRESEARCHAREA | 121,553 |
203
- | HAS_DATASET | 11,698 |
204
- | HAS_INSTRUMENT | 2,631 |
205
- | HAS_PLATFORM | 11,944 |
206
- | HAS_SCIENCEKEYWORD | 25,553 |
207
- | HAS_SUBCATEGORY | 1,823 |
208
- | OF_PROJECT | 8,031 |
209
- | USES_DATASET | 44,354 |
210
 
211
- ---
212
 
213
- ## Data Formats
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
 
215
- The Knowledge Graph Dataset is available in three formats: JSON, GraphML, and Cypher.
216
- (Section content unchanged from previous version.)
217
 
 
218
 
 
 
 
 
219
 
220
  ## Data Formats
221
 
222
- The Knowledge Graph Dataset is available in three formats:
223
 
224
  ### 1. JSON
225
 
226
  - **File**: `graph.json`
227
- - **Description**: A hierarchical data format representing nodes and relationships. Each node includes its properties, such as `globalId`, `doi`, and `pagerank_global`.
228
- - **Usage**: Suitable for web applications and APIs, and for use cases where hierarchical data structures are preferred.
229
 
230
  #### Loading the JSON Format
231
 
232
- To load the JSON file into a graph database using Python and multiprocessing you can using the following script:
233
 
234
  ```python
235
  import json
@@ -344,11 +381,13 @@ def ingest_relationships_batch(batch):
344
  MATCH (start {{globalId: $start_globalId}})
345
  MATCH (end {{globalId: $end_globalId}})
346
  MERGE (start)-[r:{rel_type}]->(end)
 
347
  """
348
  session.run(
349
  query,
350
  start_globalId=relationship["start"]["properties"]["globalId"],
351
  end_globalId=relationship["end"]["properties"]["globalId"],
 
352
  )
353
  except Exception as e:
354
  print(
@@ -362,7 +401,6 @@ if __name__ == "__main__":
362
 
363
  # Run the ingestion process
364
  ingest_data(JSON_FILE_PATH)
365
-
366
  ```
367
 
368
  ### 2. GraphML
@@ -491,11 +529,16 @@ print("\nEdges and Types:")
491
  for edge_type in data.edge_types:
492
  edge_index = data[edge_type].edge_index
493
  print(f"Edge Type: {edge_type} - Number of Edges: {edge_index.size(1)} - Shape: {edge_index.shape}")
494
-
495
  ```
496
 
497
  ---
498
 
 
 
 
 
 
 
499
  ## Citation
500
 
501
  Please cite the dataset as follows:
@@ -515,10 +558,14 @@ Please cite the dataset as follows:
515
  ```
516
 
517
  ## References
 
518
  For details on the process of collecting these publications, please refer to:
519
 
520
  Gerasimov, I., Savtchenko, A., Alfred, J., Acker, J., Wei, J., & KC, B. (2024). *Bridging the Gap: Enhancing Prominence and Provenance of NASA Datasets in Research Publications.* Data Science Journal, 23(1). DOI: [10.5334/dsj-2024-001](https://doi.org/10.5334/dsj-2024-001)
521
 
 
 
 
522
 
523
  For any questions or further information, please contact:
524
 
 
8
  - Satellite
9
  - Knowledge Graph
10
  - Machine Learning
11
+ - Authorship
12
+ - Citations
13
+ - OpenAlex
14
  ---
15
 
 
 
16
  ## Dataset Summary
17
 
18
  The **NASA Knowledge Graph Dataset** is an expansive graph-based dataset designed to integrate and interconnect information about satellite datasets, scientific publications, instruments, platforms, projects, data centers, and science keywords. This knowledge graph is particularly focused on datasets managed by NASA's Distributed Active Archive Centers (DAACs), which are NASA's data repositories responsible for archiving and distributing scientific data. In addition to NASA DAACs, the graph includes datasets from 184 data providers worldwide, including various government agencies and academic institutions.
19
 
20
  The primary goal of the NASA Knowledge Graph is to bridge scientific publications with the datasets they reference, facilitating deeper insights and research opportunities within NASA's scientific and data ecosystem. By organizing these interconnections within a graph structure, this dataset enables advanced analyses, such as discovering influential datasets, understanding research trends, and exploring scientific collaborations.
21
 
22
+ As of v2.0.0 the graph also models the authorship and citation network around these publications. It adds Author and Institution entities sourced from OpenAlex, links publications to their authors and authors to their institutions, expands the publication and citation coverage by following the citation network outward from cited datasets, and adds derived edges that summarize dataset co-usage and researcher and institution data usage.
23
+
24
  ---
25
 
26
+ ## What's Changed (v2.0.0) - June 8, 2026
27
+
28
+ This release augments the graph with authorship, affiliation, and an expanded citation network sourced from OpenAlex, plus computed (derived) edges. The seven original node types and their relationships are preserved unchanged; all additions are additive.
29
 
30
  ### 1. Node Changes
31
 
32
+ * **Total Nodes:** Increased from 150,351 to 1,409,253 (+1,258,902)
33
+ * **New Node Types:**
34
 
35
+ * **Author:** 905,086 (new)
36
+ * **Institution:** 35,435 (new)
37
+ * **Updated Node Counts:**
38
+
39
+ * **Publication:** Increased from 138,704 to 457,085 (+318,381), from following the citation network outward from cited datasets
40
+ * **Dataset:** Remained at 8,058
41
+ * **DataCenter:** Remained at 189
42
+ * **Instrument:** Remained at 921
43
+ * **Platform:** Remained at 455
44
+ * **Project:** Remained at 415
45
+ * **ScienceKeyword:** Remained at 1,609
46
 
47
  ### 2. Relationship Changes
48
 
49
+ * **Total Relationships:** Increased from 436,203 to 5,836,702 (+5,400,499)
50
+ * **New Relationship Types:**
51
 
52
+ * **AUTHORED_BY** (Publication to Author): 2,540,881
53
+ * **AFFILIATED_WITH** (Author to Institution): 1,441,939
54
+ * **WORKS_WITH_DATASET** (Author or Institution to Dataset, derived): 604,929
55
+ * **CO_USED_WITH** (Dataset to Dataset, derived): 27,973
56
+ * **Updated Relationship Counts:**
 
 
 
 
57
 
58
+ * **CITES:** Increased from 208,616 to 982,434 (+773,818)
59
+ * **USES_DATASET:** Increased from 44,354 to 55,313 (+10,959)
60
+ * **HAS_APPLIEDRESEARCHAREA:** Remained at 121,553
61
+ * **HAS_SCIENCEKEYWORD:** Remained at 25,553
62
+ * **HAS_PLATFORM:** Remained at 11,944
63
+ * **HAS_DATASET:** Remained at 11,698
64
+ * **OF_PROJECT:** Remained at 8,031
65
+ * **HAS_INSTRUMENT:** Remained at 2,631
66
+ * **HAS_SUBCATEGORY:** Remained at 1,823
67
 
68
+ ### 3. Property and Schema Changes
69
 
70
+ * **New node types** Author and Institution carry the properties listed under Dataset Structure below. All properties remain string type for cross-database compatibility, consistent with v1.2.0.
71
+ * **Asserted vs derived edges.** Edges computed from the graph's own structure carry a boolean property `derived: true` and a numeric `weight`, so they can be filtered apart from sourced facts. These are `CO_USED_WITH` and `WORKS_WITH_DATASET`. `AUTHORED_BY` carries an `authorPosition` property (first, middle, last).
72
+ * **Citation-expansion publications.** Publications discovered by following the citation network carry `globalId`, `doi`, `title`, and `year`. They may not include `abstract` or `authors` string fields, which are present on the original publication set.
73
 
74
+ ### 4. New Data Sources
 
 
75
 
76
+ * **OpenAlex** ([openalex.org](https://openalex.org)) provides author, institution, authorship, affiliation, and citation data, and is released under a CC0 1.0 public domain dedication. OpenAlex builds on **ROR** (institution identifiers) and **ORCID** (author identifiers), which are likewise openly licensed. OpenAlex data is provided as is. Author identity reflects OpenAlex disambiguation, which on rare occasions splits one person across multiple identifiers.
77
 
78
  ---
79
 
 
83
 
84
  | File Name | SHA-256 Checksum |
85
  | --------------- | ------------------------------------------------------------------ |
86
+ | `graph.cypher` | `4ee679f97d8e06ae599bc1aa49dd35eeb2ff04c7b2b82029ed842425d1394cc3` |
87
+ | `graph.graphml` | `85d563ebb900fb6835021688f0d41d9e60bf7c8bd088a30363503c765b66b9e5` |
88
+ | `graph.json` | `63779a173e3053306eb2fd92d541877e76dcb8d87ea1bf507a34d1c42ed72f0c` |
89
 
90
  ### Verification
91
 
 
110
 
111
  ### Nodes and Properties
112
 
113
+ The knowledge graph consists of nine node types. The seven original types describe NASA's data ecosystem; Author and Institution were added in v2.0.0 to describe the people and organizations behind the publications.
114
 
115
  #### 1. Dataset
116
 
 
181
  * `longName` (String)
182
  * `url` (String)
183
 
184
+ #### 8. Author
185
+
186
+ * **Description**: A person credited as an author on one or more publications, sourced from OpenAlex. Added in v2.0.0.
187
+ * **Properties**:
188
+
189
+ * `globalId` (String)
190
+ * `name` (String)
191
+ * `openalexId` (String)
192
+ * `orcid` (String)
193
+
194
+ #### 9. Institution
195
+
196
+ * **Description**: An organization affiliated with one or more authors, sourced from OpenAlex. Added in v2.0.0.
197
+ * **Properties**:
198
+
199
+ * `globalId` (String)
200
+ * `name` (String)
201
+ * `openalexId` (String)
202
+ * `ror` (String)
203
+ * `country` (String)
204
+
205
  ---
206
 
207
  ## Statistics
208
 
209
+ ### Total Counts
 
 
210
 
211
+ | Type | Count |
212
+ | ----------------------- | --------- |
213
+ | **Total Nodes** | 1,409,253 |
214
+ | **Total Relationships** | 5,836,702 |
215
 
216
+ ### Node Label Counts
217
 
218
  | Node Label | Count |
219
  | -------------- | ------- |
220
+ | Author | 905,086 |
221
+ | Publication | 457,085 |
222
+ | Institution | 35,435 |
223
  | Dataset | 8,058 |
 
 
 
 
224
  | ScienceKeyword | 1,609 |
225
+ | Instrument | 921 |
226
+ | Platform | 455 |
227
+ | Project | 415 |
228
+ | DataCenter | 189 |
 
 
 
 
 
 
 
 
 
 
 
229
 
230
+ ### Relationship Label Counts
231
 
232
+ | Relationship Label | Count |
233
+ | ----------------------- | --------- |
234
+ | AUTHORED_BY | 2,540,881 |
235
+ | AFFILIATED_WITH | 1,441,939 |
236
+ | CITES | 982,434 |
237
+ | WORKS_WITH_DATASET | 604,929 |
238
+ | HAS_APPLIEDRESEARCHAREA | 121,553 |
239
+ | USES_DATASET | 55,313 |
240
+ | CO_USED_WITH | 27,973 |
241
+ | HAS_SCIENCEKEYWORD | 25,553 |
242
+ | HAS_PLATFORM | 11,944 |
243
+ | HAS_DATASET | 11,698 |
244
+ | OF_PROJECT | 8,031 |
245
+ | HAS_INSTRUMENT | 2,631 |
246
+ | HAS_SUBCATEGORY | 1,823 |
247
 
248
+ ### Derived Edges
 
249
 
250
+ Two relationship types are computed from the graph's own structure rather than ingested from a source. Each carries `derived: true` and a `weight`:
251
 
252
+ * **CO_USED_WITH** (Dataset to Dataset): two datasets used together in the same publication. Stored in one direction; query it undirected. `weight` is the number of publications co-using the pair.
253
+ * **WORKS_WITH_DATASET** (Author or Institution to Dataset): an author, or an author's institution, that has worked with a dataset through an authored publication. `weight` is the number of evidencing publications.
254
+
255
+ ---
256
 
257
  ## Data Formats
258
 
259
+ The Knowledge Graph Dataset is available in three formats: JSON, GraphML, and Cypher.
260
 
261
  ### 1. JSON
262
 
263
  - **File**: `graph.json`
264
+ - **Description**: A line-delimited JSON format representing nodes and relationships, one object per line. Each node includes its properties, such as `globalId` and `doi`.
265
+ - **Usage**: Suitable for web applications and APIs, and for use cases where line-delimited data structures are preferred.
266
 
267
  #### Loading the JSON Format
268
 
269
+ To load the JSON file into a graph database using Python and multiprocessing:
270
 
271
  ```python
272
  import json
 
381
  MATCH (start {{globalId: $start_globalId}})
382
  MATCH (end {{globalId: $end_globalId}})
383
  MERGE (start)-[r:{rel_type}]->(end)
384
+ SET r += $properties
385
  """
386
  session.run(
387
  query,
388
  start_globalId=relationship["start"]["properties"]["globalId"],
389
  end_globalId=relationship["end"]["properties"]["globalId"],
390
+ properties=relationship.get("properties", {}),
391
  )
392
  except Exception as e:
393
  print(
 
401
 
402
  # Run the ingestion process
403
  ingest_data(JSON_FILE_PATH)
 
404
  ```
405
 
406
  ### 2. GraphML
 
529
  for edge_type in data.edge_types:
530
  edge_index = data[edge_type].edge_index
531
  print(f"Edge Type: {edge_type} - Number of Edges: {edge_index.size(1)} - Shape: {edge_index.shape}")
 
532
  ```
533
 
534
  ---
535
 
536
+ ## Provenance and Licensing
537
+
538
+ The combined dataset is released under the Apache 2.0 license. The original NASA entities (Dataset, Publication, ScienceKeyword, Instrument, Platform, Project, DataCenter) are sourced as described in the reference below. The Author, Institution, AUTHORED_BY, AFFILIATED_WITH, and expanded Publication and CITES data are sourced from OpenAlex, which is released under CC0 1.0, and build on the ROR and ORCID open identifier systems. The CO_USED_WITH and WORKS_WITH_DATASET edges are computed from the graph and are marked with `derived: true`.
539
+
540
+ ---
541
+
542
  ## Citation
543
 
544
  Please cite the dataset as follows:
 
558
  ```
559
 
560
  ## References
561
+
562
  For details on the process of collecting these publications, please refer to:
563
 
564
  Gerasimov, I., Savtchenko, A., Alfred, J., Acker, J., Wei, J., & KC, B. (2024). *Bridging the Gap: Enhancing Prominence and Provenance of NASA Datasets in Research Publications.* Data Science Journal, 23(1). DOI: [10.5334/dsj-2024-001](https://doi.org/10.5334/dsj-2024-001)
565
 
566
+ ---
567
+
568
+ ## Contact
569
 
570
  For any questions or further information, please contact:
571
 
graph.cypher CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ed4800be1a822822402083e6209a0b3dd1a1a697e0a44b19e74638cd8a2c3abe
3
- size 316021986
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ee679f97d8e06ae599bc1aa49dd35eeb2ff04c7b2b82029ed842425d1394cc3
3
+ size 1385885135
graph.graphml CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:55d7c4fc1a29b692c909bd76f89b35d9b3705f41febcdb6261ae72bca533e086
3
- size 331686937
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85d563ebb900fb6835021688f0d41d9e60bf7c8bd088a30363503c765b66b9e5
3
+ size 1515260120
graph.json CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4cb68b0d7e5f2b5a6823ee489a58938f534bc9bcbce53d6f8c03f31f8c23795e
3
- size 1601391907
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63779a173e3053306eb2fd92d541877e76dcb8d87ea1bf507a34d1c42ed72f0c
3
+ size 9276931157