Connect with us

New Mexico

NM Department of Wildlife warns of aggressive wildlife behavior

Published

on

NM Department of Wildlife warns of aggressive wildlife behavior


The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County.

Advertisement

NM Department of Wildlife warns of aggressive wildlife behavior

The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County.

Advertisement

CHARGES, INCLUDING MURDER. HIS TRIAL DATE IS NOT YET SET. THE DEPARTMENT OF WILDLIFE IS URGING EVERYONE TO STAY ALERT AFTER TWO CASES OF AGGRESSIVE WILDLIFE IN THE GILA WILDERNESS IN CATRON COUNTY. A BOBCAT AND FOX APPROACHED AND ENGAGED WITH PEOPLE IN SEPARATE ENCOUNTERS. THEY WEREN’T BITTEN, BUT THAT BEHAVIOR RAISES SUSPICION OF RABIES. A BOBCAT JUST TESTED POSITIVE FOR THAT IN SIERRA COUNTY. STATE WILDLIFE AND HEALTH OFFICIALS SAY PEOPLE SHOULD AVOID WILD ANIMALS, KEEP PETS LEASHED AND GET THEIR RABIES SHOT

Advertisement

NM Department of Wildlife warns of aggressive wildlife behavior

The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County.

Updated: 6:42 PM MDT Apr 8, 2026

Advertisement

Editorial Standards

The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County. According to the department, in different incidents, a bobcat and a fox approached and engaged with hikers and campers within the Gila Wilderness. Though nobody was bitten, these reports raise suspicion of rabies infections and come after a bobcat tested positive for rabies in Sierra County in March.They say rabies has been diagnosed in both bobcats and foxes in New Mexico. If you see a rabid animal, you should report it to your local animal control officer or your local New Mexico Department of Wildlife Conservation officer.The department says to keep you and your family safe from rabies:Always keep pets on a leash. Pets should be up to date on rabies vaccinations and wearing current license tags on their collar. If your cat or dog has been bitten or scratched, especially by a wild animal, call your pet’s veterinarian even if the wound is superficial.Horses and other livestock should also be considered for rabies vaccination to protect them from rabid animals that may attack them.Stay away from wild or unfamiliar animals. Do not attempt to feed, approach or touch wild animals (alive or dead). Teach this important message to your children and always keep a close eye on your children.If you or someone you know is bitten by an animal or comes into contact with an animal’s saliva, wash the exposed site immediately with soap and water. Be sure to report the bite to local animal control and seek medical care as soon as possible.If you or your pets are bitten or otherwise exposed to the saliva of wild animals, seek medical care immediately and contact the NMDOH Helpline at 833-SWNURSE (796-8773).

The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County.

Advertisement

According to the department, in different incidents, a bobcat and a fox approached and engaged with hikers and campers within the Gila Wilderness. Though nobody was bitten, these reports raise suspicion of rabies infections and come after a bobcat tested positive for rabies in Sierra County in March.

They say rabies has been diagnosed in both bobcats and foxes in New Mexico. If you see a rabid animal, you should report it to your local animal control officer or your local New Mexico Department of Wildlife Conservation officer.

The department says to keep you and your family safe from rabies:

Advertisement
  • Always keep pets on a leash. Pets should be up to date on rabies vaccinations and wearing current license tags on their collar. If your cat or dog has been bitten or scratched, especially by a wild animal, call your pet’s veterinarian even if the wound is superficial.
  • Horses and other livestock should also be considered for rabies vaccination to protect them from rabid animals that may attack them.
  • Stay away from wild or unfamiliar animals. Do not attempt to feed, approach or touch wild animals (alive or dead). Teach this important message to your children and always keep a close eye on your children.
  • If you or someone you know is bitten by an animal or comes into contact with an animal’s saliva, wash the exposed site immediately with soap and water. Be sure to report the bite to local animal control and seek medical care as soon as possible.
  • If you or your pets are bitten or otherwise exposed to the saliva of wild animals, seek medical care immediately and contact the NMDOH Helpline at 833-SWNURSE (796-8773).

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

Advertisement

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

Advertisement

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

Advertisement

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.koat.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.koat.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

Advertisement

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

Advertisement

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

Advertisement

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

Advertisement

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

Advertisement

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.koat.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.koat.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

Advertisement

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

Advertisement

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Advertisement

Loading more articles…



Source link

New Mexico

Here were New Mexico State’s best moments in the WAC

Published

on

Here were New Mexico State’s best moments in the WAC



The branding of the WAC, New Mexico State’s longtime home from 2005-23, has officially ceased to exist

play

  • The Western Athletic Conference (WAC) has officially rebranded as the United Athletic Conference (UAC).
  • New Mexico State was a member of the WAC from 2005-23, achieving significant success in multiple sports.
  • The Aggies’ men’s and women’s basketball teams secured numerous WAC regular-season and tournament championships during their tenure.
  • New Mexico State athletic programs won a combined five regular-season WAC titles and eight WAC tournament championships in 2015.

The Western Athletic Conference is officially no more. Well, at least the name isn’t.

The WAC rebranded as the United Athletic Conference on Wednesday, July 1, which was originally the name of a football-only alliance between the WAC and the Atlantic Sun Conference. Membership losses over the 2020s led the WAC to adopt UAC branding and join its three remaining members with the ASUN’s five football-playing members and Little Rock to form an all-sports conference that keeps the WAC’s historical continuity.

The WAC hits home for New Mexico State. The Aggies were members of the conference from 2005-23 and were one of the WAC’s longest-tenured schools.

With the WAC name officially in the ashes of history, here are some of the Aggies’ best moments while in the conference.

Basketball dominance

Advertisement

NM State dominated the WAC with seven regular-season WAC titles, 10 WAC Tournaments and 14 double-digit win seasons in WAC play.

Perhaps NM State’s best season in the WAC was in 2018-19. The Aggies dropped their first conference game, but won the next 15 before going 3-0 in the WAC Tournament, including a blowout 89-57 win over Grand Canyon for a program-record 30th win. NM State went 16-0 in WAC play the next season before it ended thanks to the COVID-19 pandemic.

The Aggies produced five WAC Players of the Year, including four across 2014-18 in Daniel Mullings, Pascal Siakam, Ian Baker and Jemarrio Jones. Teddy Allen won it in 2022.

Women’s basketball also had a dominant stretch. The Aggies won four out of five WAC regular-season and tournament championships from 2015-19, including three in a row from 2015-17 that all included double-digit victories in the WAC Tournament final. Brooke Salas’ 29 points in the 2019 final secured a 76-73 double-overtime win over UTRGV.

Advertisement

Baseball rallies in 2022

The 2018 baseball team won 40 games and the WAC Tournament, but the 2022 team’s story was a Cinderella run.

The Aggies had the worst record in the WAC Tournament at 20-32. NM State finished sixth in the West Division, but gained entry thanks to second-place California Baptist and fourth-place Dixie State (now Utah Tech) being ineligible due to their Division I transitions.

The Aggies caught fire and went 4-0. NM State defeated Southwest Division winner Sam Houston 3-1, clobbered UTRGV 10-0 in seven innings, took down Sacramento State 7-3 and vanquished fellow No. 4 seed Abilene Christian 7-3 in the championship game.

Advertisement

Winning WAC titles at home

Softball won six regular-season WAC titles and four WAC Tournaments from 2011-21.

Three of those tournament titles came when NM State hosted it in 2015, 2017 and 2018. The Aggies earned three run-rule wins to win in 2015 and faced Seattle three times in 2017. The Aggies fell 6-4 in the second round before bouncing back into the winners bracket to beat the Redhawks 15-14 and 10-0 for another title.

NM State defeated Grand Canyon and UMKC in run-rule fashion in 2018 and faced GCU again in the final. Kelsey Horton’s three RBIs fueled a 9-7 win. She secured back-to-back WAC Player of the Year honors in 2017 and 2018.

A great 2015

The Aggies had one of their best years in 2015. NM State won five regular-season WAC titles and eight WAC tournaments in that calendar year.

Advertisement

Men’s basketball and women’s basketball each won WAC regular-season and tournament titles, and Brianna Freeman was named the WAC Player of the Year in women’s basketball. Volleyball swept the WAC regular-season and tournament titles and never lost a conference game. Gwen Murphy won WAC Player of the Year, and Mike Jordan earned WAC Coach of the Year.

Softball went 47-16 and swept the WAC regular-season and tournament championships in one of the program’s best seasons. Staci Rodriguez won WAC Player of the Year, and the Aggies broke 12 school records on offense.

Men’s and women’s golf both won WAC championships, and men’s tennis swept the WAC regular-season and tournament titles. Women’s tennis also won the WAC Tournament for the program’s first-ever conference title.

Other notable moments

  • Soccer won its first WAC Tournament title in 2022 after taking down top-seeded Seattle 1-0 in the final.
  • NM State won the 2023 WAC outdoor track and field title. Jhana Downie won conference titles in the 200 and 400 meters, Joseph Rath won WAC Coach of the Year and Terice Steen set a school record in the 400m hurdles (58.36).
  • Volleyball won three more WAC regular-season titles in 2016, 2019 and 2021. Megan Hart was named 2019 WAC Player of the Year.
  • Women’s golf won seven WAC championships from 2014-22. Pun Chanachai was a standout, winning WAC Player of the Year and WAC Freshman of the Year honors in 2017.
  • Swimming and diving stayed in the WAC for two more years after 2023 and were a competitive program, finishing second at the WAC Championships seven times between 2010-25.



Source link

Advertisement
Continue Reading

New Mexico

Law limiting license plate reader data being shared goes into effect in New Mexico

Published

on

Law limiting license plate reader data being shared goes into effect in New Mexico


NEW MEXICO (KRQE) – License plate readers remain a controversial law enforcement tool. During this past legislative session, New Mexico lawmakers passed a bill that puts limits on how police use a controversial piece of technology.

The Driver Privacy and Safety Act implements safeguards on how the data collected by license plate readers is shared. It comes after instances where the technology was found to be used for non-law enforcement reasons, like people seeking abortions and immigration enforcement.

The lawmakers behind the bill said they want to ensure private information remains private. Santa Fe Police Interim Chief Ben Valdez says they are already restricted from sharing data collected from license plate readers, but he says it’s still important to have the law on the books.

“As a state, I think it puts us on the same page, which I think is very helpful. The data is the property of the City of Santa Fe. So if there’s going to be any sharing of that data. It has to be given with the express permission of the City of Santa Fe. It can’t just be used for any purpose, including being sold to a third party,” said Interim Chief Ben Valdez, Santa Fe Police Department.

Advertisement

Chief Valdez also emphasized that the plate readers can only be used in public spaces. “So it’s on a street that is a public road. It may be in a shopping area where that’s again within the public purview. We’re not doing plate reads in private areas that people have an expectation of privacy,” said Chief Valdez.

There are some cases where the license plate reader data would be shared, including homicide investigations that cross state lines or kidnapping. “They’ve been able to find children that were taken either by a custodial parent or another person, or even missing persons where their plate read came back as a missing person,” said Chief Valdez.

Under the new law, agencies are also required to submit annual reports to the Department of Public Safety on how the tech is being used.

In all, 15 new laws went into effect on Wednesday, including shifting “aggravated battery on a peace officer inflicting great bodily harm” from a third-degree felony to second degree and creating an Office of Special Education in the Public Education Department.

Advertisement



Source link

Continue Reading

New Mexico

Dispatches from Route 66: Finding queer hope in New Mexico and Arizona

Published

on

Dispatches from Route 66: Finding queer hope in New Mexico and Arizona


As I sit in an Albuquerque auditorium at the 3rd Annual New Mexico Draggy Awards, surrounded by drag queens, kings, and everyone in between, I find myself wiping away tears for the second time that evening.

New Mexico transgender advocate Bunnie Cruse is standing on the stage giving out an award for activism, and she calls Democratic U.S. Congresswoman Melanie Stansbury to the stage.


“Your existence is an act of resistance; an act of resilience and fuck Trump!” shouts Stansbury from the stage while wearing a black and white dress and a beat-up pair of red Converse. Fans clack, and the crowd erupts in cheers.

Related: Dispatches from Route 66: How queer communities are rebuilding safety along the Mother Road

Advertisement

Albuquerque: Where hope took the stage

Stansbury then quotes an invocation she heard earlier that week at the opening of the Obama Presidential Center: “Hope is a call to action. Resilience is a call to action. Change is a call to action, and continuing to fight for our democracy is a call to action.”

Hope radiates from the stage. I’m just passing through New Mexico, yet I find myself feeling seen by an elected official in a way I rarely do back home in Ohio.

Less than 24 hours earlier, I had been in Amarillo listening to transgender people describe contingency plans for their families if one of them were detained. Now, in Albuquerque, a member of Congress stood onstage at a drag awards ceremony celebrating the very community that had been living in fear just one state away.

My third week on Route 66 searching for the Mother Road’s LGBTQ+ story, past, present, and future became a study in what hope looks like when communities feel safe enough to be visible. To better understand why Albuquerque felt so different, I sat down with leaders from Bold Futures, a statewide advocacy organization for women and people of color.

A museaum display in Albuquerque, New Mexico.Alysse Dalessandro for The Advocate

Advertisement

“I think that’s one of the most beautiful things about organizing with folks is that they don’t even know about their brilliance until they’re given a safe place to sort of feel some softness and have some space,” shares Bold Futures Executive Director Charlene Bencomo.

That emphasis on safety is intentional. Bold Futures has been organizing for these marginalized voices since its founding in 1999, and its community-driven approach reflects New Mexico as a whole.

“New Mexico is a really unique place, and I think it is because of the culture and the heritage that we have,” says Bencomo. “We are more community-driven than individualistic a lot of times. We move in community. So when we’re taking a story to a decision-maker, we’re not just saying, ‘Here are the statistics, this is the bottom line.’ We’re saying, ‘Here are the statistics, here’s the bottom line, and here are the people who are going to tell you about what it looks like in their neighborhood.’”

Charlene Bencomo’s words that New Mexicans “move in community” stuck with me during my four days in Albuquerque. By the end of my time there, I understood exactly what she meant.

Related: Dispatches from Route 66: Discover the queer stories hidden along the iconic road trip

Advertisement

Pride written into the road

The more time I spent in Albuquerque, the more I realized that resistance was woven into the fabric of New Mexico. During a Route 66 History Tour in the city, I learned that long before Route 66 reached the city, New Mexico had already fought to preserve its identity by resisting pressure to rename the territory during its path to statehood.

Just 14 years after becoming a state, Route 66 cut through the heart of town. Today, that same stretch of Central Avenue continues to tell Albuquerque’s story. Unlike many places I’d visited along Route 66, here you don’t have to dig through museums or archives to find its LGBTQ+ history. It’s painted directly onto Historic Route 66 in the form of rainbow crosswalks.

Writer Alysse Dalessandro standing at the Route 66 sign in Albuquerque, New Mexico. Writer Alysse Dalessandro standing at the Route 66 sign in Albuquerque, New Mexico.Alysse Dalessandro for The Advocate

I learned that these crosswalks commemorate the city’s first Pride March, when 25 University of New Mexico students marched from Morningside Park to the intersection of Morningside Drive and Central Avenue in 1976.

To this day, Albuquerque’s Pride march still traverses Route 66 down Central Ave. Each year, Bold Futures hosts a Family Pride in Morningside Park. For the organization’s 15th Family Pride, they themed it around a Quinceañera Fiesta, intentionally weaving Pride into this Mexican cultural tradition.

“We have all the cultural staples but then make them part of Pride,” shares Bold Futures Deputy Director Heather Smith. “So now you’re also exposing people who are there, who are not familiar with those cultural traditions; they’re learning them, and it’s a cultural exchange.”

Advertisement

Rather than asking LGBTQ+ people to choose between their cultural and queer identities, Family Pride celebrates both at once and invites the broader community to learn alongside them.

Route 66 hasn’t just been a gathering place; it has also long been a place where LGBTQ+ travelers searched for safety, sex, and community. A 1977 edition of Bob Damron’s Address Book, a national gay travel guide, listed the stretch of Central Avenue from the University of New Mexico to the area near The Loon as a cruising spot.

Old Downtown Albuquerque. Old Downtown Albuquerque.Alysse Dalessandro for The Advocate

The queer-tolerant hotels such as the Alvarado Hotel and the Franciscan that once lined Central Ave are gone, but new hotels are still filling that need. Although the Bob Damron Address Book is no longer the go-to resource for LGBTQ+-friendly places to stay, the intention behind this book’s existence is still something I use on my own travels.

While looking for safe places to stay along Route 66 as a queer traveler, I used the Booking.com Travel Proud filter to find accommodations in Albuquerque. This allowed me to see only results for hotels that have completed Booking.com’s LGBTQ+ hospitality training. It led me to Hotel ZAZZ, a woman-owned boutique hotel along Route 66. Here was another place where I felt safe and seen.

The “other” Route 66

This visibility continued when I visited the Albuquerque Museum exhibit: The Other Route 66: 100 Years of People, Identity, and Place in Albuquerque. While other museums mostly idealized Route 66, this exhibit intentionally sought out the narratives most often ignored, presumably for their discomfort: the migrant experience, the exoticism of Indigenous communities, and the dangers for Black travelers, to name a few.

Advertisement

Once I reached a sign that read “The ‘Other’ Route 66,” I finally found my own visibility. Museum after museum, I felt erased and othered, but here was finally a visible inclusion of the LGBTQ+ experience on display in a Route 66 exhibit. The small display included 3 reproductions of ads for Central Ave’s gay clubs, a Pride route map, and a recent photograph from a local Pride. It was not much, but it was something.

Preservation as Resistance

At the Arizona Route 66 Museum in Kingman, I learned about Angel Delgadillo, the Seligman barber whose efforts are widely credited with launching the preservation movement that saved Route 66 from fading into history. After Interstate 40 bypassed Seligman and Route 66 was officially decommissioned in 1985, Delgadillo noticed visitors still going out of their way to stop at his barbershop to reminisce about the Mother Road. He decided to do something about it.

As I listened to the story of Route 66’s preservation, I realized it wasn’t really about saving a highway. There was a faster way to cross the country. Preserving Route 66 was about preserving the stories that gave it meaning. It was about refusing to let a community disappear. It’s Andie Smith showing up to the Edwardsville Town Square every Friday. It’s Steve Blundell buying the District Hotel. It’s Chief Egunwale Amusan creating the Real Black Wall Street Tour. It’s me driving more than 3,000 miles to document the LGBTQ+ history of Route 66 before more of it disappears. Different communities. Different histories. The same determination to refuse erasure.

Klingman, Arizone Route 66 sign. Klingman, Arizone Route 66 sign.Alysse Dalessandro or The Advocate

Delgadillo rallied fellow business owners to secure historic recognition for Route 66, founding the Historic Route 66 Association of Arizona and creating a preservation model that communities along the Mother Road continue to follow today.

“If Angel Delgadillo and these other rallying people had not fought for their communities and for Route 66, it would just have remained forgotten about, “ Katie Barthlow, a communications specialist for the Historic Route 66 Association of Arizona, told me.

Advertisement

One of the Historic Route 66 Association of Arizona’s former officers is an out gay man. I didn’t have the opportunity to interview him during this trip, but learning he had helped preserve Route 66 left me wondering how many other LGBTQ+ people had quietly shaped the Mother Road without becoming part of its public history.

The Arizona Route 66 Museum doesn’t yet answer that question. But museum leadership readily acknowledged that LGBTQ+ history belongs in the story of Route 66 and that uncovering it will require the kind of archival research and community connections that have shaped my own journey. Alongside exhibits on the Green Book, the class struggles of the Dust Bowl migration, and the contributions of Asian Americans like restaurateur Charlie Lim, the museum paints a broader picture of who shaped the Mother Road, even if that work isn’t finished yet.

Making space to be seen

Kingman’s Route 66 history is thoroughly documented. Its LGBTQ+ history is far less visible. Unlike Flagstaff, where Pride flags lined storefronts, I had to search much harder for signs of queer community in Kingman.

I found Gideon Freeman, owner of The Bearded Baker, sitting beneath a Progress Pride flag hanging outside his garage-turned-home bakery. He tells me about how he helped to bring the first Mohave Pride to Kingman in 2019. Their first Pride event saw more than 3000 attendees. For him, Kingman’s lack of LGBTQ+ visibility isn’t about lack of support but a lack of space.

“We just need more space here to connect,” says Freeman. “There’s a lot of us here, we just don’t see each other very often. So we’ve been trying to build that community.”

Advertisement

Freeman directed me to Feral Tattoo, where I expected their regular Wednesday art night but instead found a group gathered around a table discussing voter education and sharing stories about life as LGBTQ+ people in town.

Just as Angel Delgadillo realized preserving Route 66 would depend on ordinary people taking action, I’ve found the same is true of the LGBTQ+ community along the Mother Road. In places with fewer dedicated resources, that work often falls to individuals like Feral Tattoo’s owner, Willow Kroenke, who are willing to make themselves visible.

Kroenke told me that being visibly queer has made them fear for their family’s safety, but they also don’t know how to build community without that visibility.

“I think if there was any lesson in Route 66, it would be to look at the people that have been fighting for equal rights for the last hundred years,” says Kroenke. “I look at what the Black Panthers did with the Rainbow Coalition. When I don’t know what to do, I make kids breakfast because that’s what they did. When I don’t know what to do, I bring my friends flowers because that’s what Marsha did.”

Listening to Willow, I found myself crying in a tattoo shop in Kingman. Three weeks earlier, I had set out looking for the hidden LGBTQ+ history of Route 66. By the time I reached Arizona, I realized that history doesn’t preserve itself. It survives because ordinary people choose to carry it forward: for their neighbors, for their communities, and for those who come after them by refusing to let the stories of those who came before disappear. That, more than anything, has been the story of Route 66.

Advertisement





Source link

Continue Reading
Advertisement

Trending