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

Continue Reading
Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

New Mexico

Warm start to the week across New Mexico

Published

on

Warm start to the week across New Mexico


Grant’s Monday Night Forecast

A few evaporating rain showers are possible again Tuesday with warmer temperatures. Windier weather later this week will bring a high fire danger back to New Mexico.

It’s been a warm day with a few isolated showers and thunderstorms across central and northern New Mexico. Some of that rain has made it to the ground, while other showers have evaporated before reaching the surface. Temperatures have climbed into the 70s and 80s for most of the state. Showers will fade after sunset, with mostly clear skies overnight and mild temperatures.

Advertisement

Even warmer weather is on the way Tuesday with lighter winds. More areas will reach the 80s by the afternoon. A few spotty showers will develop again, especially near the mountains, with some of that rain evaporating before reaching the ground.

Winds pick up Wednesday afternoon, with gusts between 25 and 45 mph. This will begin another stretch of high fire danger across the state. The strongest winds arrive Thursday, with westerly gusts of 35 to 55 mph. That will expand the fire danger statewide. A dry cold front will move through Thursday as well, but temperatures will only drop slightly, ending up closer to average.

Breezy conditions continue Friday through the weekend as the jet stream pulls more moisture into New Mexico. That will bring increasing chances for rain and thunderstorms this weekend, with a few lingering into early next week.



Source link

Advertisement
Continue Reading

New Mexico

Landlord AC ordinance, Rio Grande water levels, Spotty rain, New legislative office, New Mexico Motorfest

Published

on

Landlord AC ordinance, Rio Grande water levels, Spotty rain, New legislative office, New Mexico Motorfest


Monday’s Top Stories

Monday’s Five Facts

[1] ABQ City Councilor aims to bolster protections for renters amid unseasonable warmth – Albuquerque city councilor is looking to make sure city landlords are not only providing cooling systems, but also ensuring they actually work when they’re needed. City Councilor Tammy Fiebelkorn spearheaded an ordinance in December of 2024, requiring all Albuquerque rental properties to have a cooling system. Now, Fiebelkorn is taking it a step further, hoping to establish cooling system performance requirements. The ordinance is expected to be voted on in final action at Monday’s city council meeting.

[2] Rio Grande showing dry spots in Valencia County amid record-low snowpack – Portions of the Rio Grande are now seeing dry spots earlier than expected. Officials say the timing is not normal. In Valencia County, parts of the river are already running dry. Near the river crossing in Los Lunas, the river has open pockets. Further south, it is being reported as dry as well. There is a slight positive outlook for the monsoon season, with forecasters and officials predicting a strong season in the Middle Rio Grande Valley.

[3] Very spotty rainfall, warmer, & mostly calm week – Warmer weather will continue building in across the state throughout the upcoming week. A few isolated rain chances will return Monday in parts of New Mexico, but some of that rain may evaporate before reaching the ground. Temperatures will continue to increase through the middle of the week.

[4] NM representatives celebrate grand opening of new office with open house – A new state legislative office made its debut for representatives Eleanor Chavez and Yanira Gurrola. The new location is just one of the handful of new legislative offices now open across the state. They hosted a grand opening for the building that was open to the public. Representative Gurrola says it’s just one step towards modernizing the state’s legislature. The new office will allow residents to stay more connected to each representative.

Advertisement

[5] New Mexico Motorfest 2026 takes place in celebration of Route 66 Centennial – Another Route 66 celebration took place over the weekend and this one was all about cars. The New Mexico Motorfest happened at the Expo New Mexico racetrack. Over 300 vehicles from classic hot rods to lifted trucks were featured at the event. Some of the proceeds went to New Mexico veterans.



Source link

Continue Reading

New Mexico

Los Alamos Public Schools Students Compete At 2026 New Mexico State Science & Engineering Fair

Published

on

Los Alamos Public Schools Students Compete At 2026 New Mexico State Science & Engineering Fair


Students from Barranca Mesa Elementary, Mountain Elementary, Los Alamos Middle School, and Los Alamos High School at the 2026 New Mexico State Science & Engineering Fair at New Mexico Tech. Photo CourtesyLAPS

LAHS junior Tate Plohr and freshman Linus Plohr qualified to attend the 2026 Regeneron International Science and Engineering Fair in May in Phoenix, Ariz. Photo Courtesy LAPS

Los Alamos Middle School student Branden Keller was awarded the CO2 & Greenhouse Gas Scholarship in the amount of $2,000 at the 2026 New Mexico State Science & Engineering Fair. Photo Courtesy/LAPS

LAPS NEWS RELEASE

Twenty students from Barranca Mesa Elementary, Mountain Elementary, Los Alamos Middle School (LAMS) and Los Alamos High School (LAHS) competed, with several garnering awards at the 2026 New Mexico State Science and Engineering Fair held at New Mexico Tech in Socorro.

LAHS junior Tate Plohr qualified to attend the Regeneron International Science and Engineering Fair (ISEF) next month in Phoenix, Ariz. He was awarded the 3rd-place Grand Award. Freshman Linus Plohr qualified as an alternate and will also be attending the Regeneron ISEF.

Advertisement

Students who participated in the state competition include, from Barranca Mesa Elementary, Sydney Chen, Mary Beth Kelsey, Lily Neale, Aurora Roberts Voss and Henry Rodarte; and Glyn Lo and Ernest Maupin, Mountain Elementary.

Students from LAMS who competed include Evelyn Fobes, Mason Garcia, Andrew Gilbertson, James Junghans, Sequoya Ke, Brandon Keller, Nejan Liyanage and Daniel Yampolsky.

LAHS students Julia Neale, Linus Plohr, Tate Plohr, Lilia Veteva, Helena Welch and Kalliope Welch competed at the senior level.

2026 Award winners:

Category Awards – Junior Division

Advertisement
  • Animal Science, Cellular & Molecular
  • Biomedical & Health Science
    • Honorable Mention: Sequoya Ke
  • Embedded Systems, Math, Robotics, Software & Technology
    • 2nd place: Nejan Liyanage
  • Physics & Astronomy
    • 1st place: Sydney Chen
    • 2nd place: Mason Garcia
    • Honorable Mention: Marybeth Kelsey
  • Plant Science

Category Awards – Senior Division

  • Behavioral & Social Science:
    • Honorable Mention: Linus Plohr
  • Earth & Environmental
    • Honorable Mention: Lilia Viteva
  • Embedded Systems, Math, Robotics, & System Software
    • 3rd Place: Helena Welch and Kalliope Welch
  • Physics & Astronomy

Grand Awards

  • ISEF finalist 3rd place: Tate Plohr
  • Brandon Keller received the CO2 & Greenhouse Gas Scholarship in the amount of $2,000. James Jungans and Marybeth Kelsey garnered Thermo Fisher Awards.

Other special award winners include:

  • CO2 & Greenhouse Reduction Awards (Junior Division)
    • Daniel Yampolsky, 2nd place, Earth & Environmental Sciences
    • Sequoya Ke, 1st place, Biomedical & Health Science
    • Brandon Keller, 1st place, Energy & Materials Science
    • Andrew Gilbertson, 1st place, Physics & Astronomy
  • CO2 & Greenhouse Gas Reduction Award (Senior Division)
    • Lilia Viteva, 1st place, Earth & Environmental Sciences
  • Office of Naval Research Award
  • David Shortess Award
  • New Mexico AVS Award
  • Citadel Award
  • Naval Research Award
  • NM Network for Women in Science & Engineering Award
  • Yale Science & Engineering Award
  • Rose Baca Rivet Award





Source link

Continue Reading
Advertisement

Trending