A man suspected of robbing an Aurora business several times over the last few months has been arrested.
Ross Woessner, 20, of Aurora, was taken into custody Wednesday and booked into the Aurora Detention Center. He faces charges of aggravated robbery and menacing, which are both felonies.
He’s believed to be the person responsible for six different robberies in southeast Aurora, most of which occurred at the same Shell gas station, typically between midnight and 4 a.m.
“This is probably one of the first cases I’ve seen ever where the same suspect chooses the same location multiple times like this,” said Matthew Longshore, a spokesman for Aurora Police.
“We’ve heard of these different crews that go around and do similar things around the metro area, but having one person go to the same spot four different times over the course of five months is very odd.”
The robberies began on July 21 of last year, and the most recent occurred on Feb. 24. Five of the six robberies took place at the Shell gas station, located at 3385 South Tower Road. One of them was at the nearby 7-Eleven at 18883 East Hampden Ave.
“He doesn’t go after the money, it’s only been the merchandise in the store — the vape, tobacco and the beer products,” Longshore said.
For more stories like this, visit The Denver Gazette’s news partner, 9News
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}