From 5c3b1b40f5bada6808ce2300ec6cc69f976b881f Mon Sep 17 00:00:00 2001 From: Rob Lewis Date: Sat, 28 Nov 2015 18:02:26 -0500 Subject: [PATCH] Updated locations for body rather than brain --- .../lesionLocationDialog.js | 47 +++++++++++++++++-- 1 file changed, 42 insertions(+), 5 deletions(-) diff --git a/Packages/lesiontracker/components/lesionLocationDialog/lesionLocationDialog.js b/Packages/lesiontracker/components/lesionLocationDialog/lesionLocationDialog.js index a0e6da08a..9085a9041 100644 --- a/Packages/lesiontracker/components/lesionLocationDialog/lesionLocationDialog.js +++ b/Packages/lesiontracker/components/lesionLocationDialog/lesionLocationDialog.js @@ -153,31 +153,68 @@ cornerstoneTools.lesion.setConfiguration(config); LesionLocations = new Meteor.Collection(null); LesionLocations.insert({ - location: "Brain Brainstem", + location: "Liver Left", hasDescription: false, description: "" }); LesionLocations.insert({ - location: "Brain Cerebellum Left", + location: "Liver Right", hasDescription: false, description: "" }); LesionLocations.insert({ - location: "Brain Cerebrum Left", + location: "Liver Caudate", hasDescription: false, description: "" }); LesionLocations.insert({ - location: "Brain Cerebrum Right", + location: "Lung LLL", hasDescription: false, description: "" }); LesionLocations.insert({ - location: "Brain Multiple Sites", + location: "Lung LUL", + hasDescription: false, + description: "" +}); + +LesionLocations.insert({ + location: "Lung RLL", + hasDescription: false, + description: "" +}); +LesionLocations.insert({ + location: "Lung RML", + hasDescription: false, + description: "" +}); +LesionLocations.insert({ + location: "Lung RUL", + hasDescription: false, + description: "" +}); +LesionLocations.insert({ + location: "Pleura Left", + hasDescription: false, + description: "" +}); +LesionLocations.insert({ + location: "Pleura Right", + hasDescription: false, + description: "" +}); + +LesionLocations.insert({ + location: "Kidney Left", + hasDescription: false, + description: "" +}); +LesionLocations.insert({ + location: "Kidney Right", hasDescription: false, description: "" });