Hi everyone!
I want to create ETL processes, each from a specific medical center, which leads to the OMOP CDM.
Several questions if I may:
CARE_SITE (for providers/visit details in medical centers):
Is it ok to define each care site as a particular medical unit/department in the medical center? E.g. internal medicine A, or internal medicine B or Urology A, etc?
In my case, in each and every single medical center there are multiple care sites. So I think it makes sense to do the above.
Given that I’m doing the above - and every care_site has a unique ID - I need to define, for those care sites’ records, 2 attributes/fields:
location_id and place_of_service (value and concept).
Does it make sense to define, in my case, the location_id as a location of the whole medical center (because then I can link it to the zip code and lat-long coordinates etc.)?
An example (synthetic) of what a record might look like in my CARE_SITE table (displayed as a dictionary}:
{care_site_id: 123, care_site_name: “Urology-A”, place_of_service_concept_id: 45765880, location_id: 1000, care_site_source_value: “D1356”, place_of_service_source_value: 1203}
When 45765880 stands for “Urology clinic” in the SNOMED vocabulary. “D1356” is a string, but that’s my identifier in the source data for that place of service, with the source name: “Urology-A”.
With my above logic, the corresponding LOCATION record may look like this:
{location_id: 1000, address_1: “10 Downing st.”, address_2: “LA Sinai Medical Center”, … , location_source_value: “LA Sinai Medical Center, 10 Downing st.”, …}
My question is: Should the corresponding location describe the exact address of the medical center where the care_site is (as displayed above) or the full exact address of the care_site instead - e.g. {location_id: 123, address_1: “LA Sinai Medical Center”, address_2: “Urology Dpt., floor 3”, …}.
I love to hear some opinions/suggestions.
Thank you!