-
Notifications
You must be signed in to change notification settings - Fork 0
Relationship Queries
Eugene edited this page Dec 28, 2020
·
6 revisions
select ?cid ?title
where {
?cid <pds:lidvid_ref> <urn:nasa:pds:kaguya_grs_spectra:data_spectra:kgrs_calibrated_spectra_per2::1.0>.
?cid <pds:title> ?title.
?cid <pds:product_class> "product_collection".
}
| cid | title |
|---|---|
| urn:nasa:pds:kaguya_grs_spectra:data_spectra::1.0 | "Kaguya Gamma-Ray Spectrometer Corrected Spectra Collection" |
select ?bid ?title
where {
?bid <pds:product_class> "product_bundle".
?bid <pds:title> ?title.
?bid <pds:lid_ref> ?clid.
?cid <pds:lid> ?clid.
?cid <pds:product_class> "product_collection".
?cid <pds:lidvid_ref> <urn:nasa:pds:kaguya_grs_spectra:data_spectra:kgrs_calibrated_spectra_per2::1.0>.
}
| bid | title |
|---|---|
| urn:nasa:pds:kaguya_grs_spectra::1.1 | "Kaguya Gamma-Ray Spectrometer Corrected Spectra Bundle" |
select ?cid ?title ?type
where {
<urn:nasa:pds:kaguya_grs_spectra::1.1> <pds:lid_ref> ?clid.
?cid <pds:lid> ?clid.
?cid <pds:product_class> "product_collection".
?cid <pds:title> ?title.
?cid <pds:type> ?type.
}
| cid | title | type |
|---|---|---|
| urn:nasa:pds:kaguya_grs_spectra:context::1.0 | "Kaguya Gamma-Ray Spectrometer Context Product Collection" | "context" |
| urn:nasa:pds:kaguya_grs_spectra:data_ephemerides::1.0 | "Kaguya Gamma-Ray Spectrometer Ephemerides, Pointing and Geometry Collection" | "data" |
| urn:nasa:pds:kaguya_grs_spectra:data_spectra::1.0 | "Kaguya Gamma-Ray Spectrometer Corrected Spectra Collection" | "data" |
| urn:nasa:pds:kaguya_grs_spectra:document::1.0 | "Kaguya Gamma-Ray Spectrometer Corrected Spectra Document Collection" | "document" |
select ?bid ?title
where {
?bid <pds:lid_ref> <urn:nasa:pds:kaguya_grs_spectra:data_spectra>.
?bid <pds:title> ?title.
?bid <pds:product_class> "product_bundle".
}
| bid | title |
|---|---|
| urn:nasa:pds:kaguya_grs_spectra::1.1 | "Kaguya Gamma-Ray Spectrometer Corrected Spectra Bundle" |