DICOM Radiotherapy Structure Sets
# get the viewer URL for a random study that
# contains RTSTRUCT modality
SELECT
ANY_VALUE(CONCAT("https://viewer.imaging.datacommons.cancer.gov/viewer/", StudyInstanceUID)) as viewer_url
FROM
`bigquery-public-data.idc_current.dicom_all`
WHERE
StudyInstanceUID IN (
# select a random DICOM study that includes an RTSTRUCT object
SELECT
StudyInstanceUID
FROM
`bigquery-public-data.idc_current.dicom_all`
WHERE
SOPClassUID = "1.2.840.10008.5.1.4.1.1.481.3"
ORDER BY
RAND()
LIMIT
1)Metadata
Conversion into alternative representations
Last updated
Was this helpful?