-
Notifications
You must be signed in to change notification settings - Fork 0
Relationship Queries
Eugene edited this page Dec 29, 2020
·
6 revisions
PREFIX kag: <urn:nasa:pds:kaguya_grs_spectra:>
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 |
|---|---|
| kag: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" |
PREFIX kag: <urn:nasa:pds:kaguya_grs_spectra:>
select ?rid ?title ?class
where {
<urn:nasa:pds:kaguya_grs_spectra:data_spectra::1.0> <pds:lidvid_ref> ?rid.
?rid <pds:title> ?title.
?rid <pds:product_class> ?class.
filter( ?class != "product_context")
}
| rid | title | class |
|---|---|---|
| kag:data_spectra:kgrs_calibrated_spectra_per1::1.0 | "Kaguya Gamma-Ray Spectrometer Corrected Spectra" | "product_observational" |
| kag:data_spectra:kgrs_calibrated_spectra_per2::1.0 | "Kaguya Gamma-Ray Spectrometer Corrected Spectra" | "product_observational" |
| kag:data_spectra:kgrs_calibrated_spectra_per3::1.0 | "Kaguya Gamma-Ray Spectrometer Corrected Spectra" | "product_observational" |
PREFIX kag: <urn:nasa:pds:kaguya_grs_spectra:>
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 |
|---|---|---|
| kag:context::1.0 | "Kaguya Gamma-Ray Spectrometer Context Product Collection" | "context" |
| kag:data_ephemerides::1.0 | "Kaguya Gamma-Ray Spectrometer Ephemerides, Pointing and Geometry Collection" | "data" |
| kag:data_spectra::1.0 | "Kaguya Gamma-Ray Spectrometer Corrected Spectra Collection" | "data" |
| kag: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" |
PREFIX ctx: <urn:nasa:pds:context:>
select ?rid ?title ?class
where {
<urn:nasa:pds:kaguya_grs_spectra:data_spectra:kgrs_calibrated_spectra_per2::1.0> <pds:lid_ref> ?rlid.
?rid <pds:lid> ?rlid.
?rid <pds:product_class> "product_context".
?rid <pds:title> ?title.
?rid <pds:context_class> ?class.
}
| rid | title | class |
|---|---|---|
| ctx:instrument:kaguya.grs::1.0 | The Gamma Ray Spectrometer (GRS) on the Kaguya spacecraft | instrument |
| ctx:instrument_host:spacecraft.kaguya::1.0 | Kaguya Spacecraft | instrument_host |
| ctx:investigation:mission.kaguya::1.0 | Kaguya Mission | investigation |
| ctx:target:satellite.earth.moon::1.1 | "Moon | target |