Addiction and Treatment Statistics for Princeton, West Virginia
Published on December 28, 2018
Princeton, West Virginia, the county seat of Mercer County, is a small city of around 7,000 people.
Visitors will enjoy a day at the Mercer County War Museum, where veterans are honored through displays from the region’s military history, or the Princeton Railroad Museum, where a visitor can trace the paths of Princeton’s industrial ancestry.
For light hearted and fast-paced fun, the Lake Shawnee Amusement Park will be a fun diversion for the whole family. There are also many public parks where one can enjoy the beauty of Princeton’s green hills.
Rehab Centers In Princeton, West Virginia
For residents looking for alcohol and drug addiction treatment within the city, there is one rehab center in Princeton, West Virginia.
This alcohol and drug rehab center is fully accredited and offers several treatment options as well as a short-term residential program.
Introducing
virtual care
Get treatment when
and how you need it.
Rehab Centers Near Princeton, West Virginia
Of the many rehab centers near Princeton, West Virginia, many have options for long-term residential addiction treatment. Some of these programs are less than 20 miles away.
Substance Abuse In Princeton And Mercer County
Mercer County, including the county seat of Princeton, sees some of the highest rates of substance abuse in West Virginia.
- Out of every 10,000 patients treated in hospitals in Mercer County, 445 are diagnosed with an alcohol-related diagnosis. This is the sixth-highest rate out of West Virginia’s 55 counties.
- Mercer County also has a high rate of alcohol dependence diagnoses. Out of every 10,000 patients, 260 are diagnosed with alcohol dependence.
- The rate of drug overdoses in Mercer County is the fifth-highest in the state of West Virginia. Out of every 100,000 residents of Mercer County, 61.2 pass away from a drug overdose.
- 750 out of every 10,000 patients treated in hospitals receive a diagnosis related to drug use, compared to the state average of 441.5.
Traveling For The Best Program
One consideration when seeking addiction treatment is how quickly you will be able to start a program.
Many programs have waiting lists, especially residential programs. If a person is willing to travel, however, he or she can enter a rehab program with a shorter waiting list or a new place that will be free of distractions.
Finding a rehab program may seem difficult for some, but you don’t have to be alone in this process.
A treatment specialist can help you find the best program for you and answer any questions you may have. Reach out to a treatment specialist at RehabCenter.net today to make the first step toward recovery.
where('url', $stateSlug)->find_one();
if (!$state) {
$err['state'] = "Sorry, we couldn't find that state.";
$is404 = true;
}
}
if ($requestCity && $state) {
$city = $state->city()->where('url', $requestCity)->find_one();
if (!$city) {
$err['city'] = "Sorry, we couldn't find that city.";
$is404 = true;
}
}
if ($requestLocation && $city ) {
/* Fetch Location Only under primary Lookup*/
if($lookup=='rehab-centers')
$location = $city->location()->where('url', $requestLocation)->find_one();
if (!$location) {
$err['location'] = "Sorry, we couldn't find that location.";
$is404 = true;
}
/* Special Header Addons - Locations Under Sub Lookups*/
if($lookup!='rehab-centers')
$sublookup_head = true;
}
/***
* Let's work backwards with what we have.
***/
// City Table Column Selector :: Num Locations by Lookup
switch($lookup){
case 'inpatient-rehab-centers' : $col = 'num_inpa'; break;
default : $col = 'num_locations';
}
if ($location) {
$attributes['S'] = $attributes['T'] = $attributes['D'] = $attributes['P'] = array();
foreach ($location->attribute()->find_many() as $attribute) {
$attributes[$attribute->type][] = $attribute;
}
$mapAddress = urlencode($location->location_street1 . ' ' . $location->location_street2 . ' ' . $city->name . ' ' . $state->abbr);
if ($dataOnly) {
// Reserved for location data-only
} else {
include_once 'templates/location.php';
}
}
else if ($city) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$locations = ORM::for_table('location')
->raw_query('SELECT location.*
FROM location JOIN attribute_location ON location.id = attribute_location.location_id
WHERE location.city_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY location.id', array($city->id))
->find_many();
}
elseif ($lookupGroup) {
$built_re_state = explode('-'.$requestLookup,$requestState)[0];
$build_redirect = '/rehab-centers/'.$built_re_state.'-rehab-centers/'.$requestCity.'/';
header("HTTP/1.1 301 Moved Permanently");
header('Location: https://www.rehabcenter.net' . $build_redirect);
exit();
// Standard lookups
//$locations = ORM::for_table('location')->where('location.city_id', $city->id)->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('location.id')->find_many();
}
else {
// Show all rehab centers
$locations = $city->location()->find_many();
}
/* Show City Page Only if # Segments exist*/
if(count($segments)==3&&!$is404){
if ($dataOnly) {
// Reserved for city data-only
include_once 'templates/city-data.php';
} else {
include_once 'templates/city.php';
}
}
}elseif ($state) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$cities = ORM::for_table('city')
->raw_query('SELECT city.*
FROM city
JOIN location ON city.id = location.city_id
JOIN attribute_location ON location.id = attribute_location.location_id
WHERE city.state_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY city.id', array($state->id))
->find_many();
}
else if ($lookupGroup) {
$cities = ORM::for_table('city')->select('city.*')->where('city.state_id', $state->id)->join('location', array('city.id', '=', 'location.city_id'))->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('city.id')->find_many();
}
else {
$cities = $state->city()->find_many();
}
// Let's make sure we only have # segments on the URL array(3)
if(count($segments)==2){
if ($dataOnly) {
include_once 'templates/state-data.php';
} else {
include_once 'templates/state.php';
}
}
}
else if ($lookup&&!$is404) {
$states = Model::factory('State')->find_many();
if ($dataOnly&&!$is404) {
include_once 'templates/lookup-data.php';
} else {
include_once 'templates/lookup.php';
}
}
else {
$is404 = true;
header('HTTP/1.0 404 Not Found');
}
// $endTime = microtime(true);
//echo '';
?>
Article Sources