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!