";
for (let ecoregion of level3Eco) {
items.innerHTML += `
${ecoregion.name}
`;
}
div.insertAdjacentHTML(
"beforeend",
""
);
return div;
};
//requested that legend be hidden, so it's commented out
// level3legend.addTo(map);
// if (params.eco3Show !== true && params.eco4Show !== true) {
// const legend = document.querySelector(".legend-items");
// legend.style.display = "none";
// }
}
/*
*eco3Load* will load the level 3 ecoregion data. Must be TRUE in order for eco3Show to work.
*eco3Show* will automatically populate the map with the level 3 ecoregions. If not selected, the ecoregions & legend will load, but will be toggled off & minimized respectively.
*/
if (params.eco3Load === true) {
//initialize ecoregion layer
const level3Layer = new L.layerGroup();
//add loading spinner while ecoregions load
document.querySelector("#ecoregion_map").insertAdjacentHTML(
"afterend",
`
Level 3 Ecoregions Loading
`
);
const loadLevel3Ecos = async () => {
const promises = [];
for (let eco of level3Eco) {
try {
let res = await fetch(
`https://geodata.epa.gov/arcgis/rest/services/ORD/USEPA_Ecoregions_Level_III_and_IV/MapServer/11/query?where=US_L3CODE+%3D+%27${eco.id}%27&f=geojson`
);
let json = await res.json();
//add ecoregion name so it can be bound to tooltip
json.name = eco.name;
json.style = eco.style;
json.info = eco.info;
promises.push(json);
} catch (error) {
console.log(error);
}
}
Promise.all(promises).then((res) => {
document.querySelector(".spinner-container").hidden = true;
document.querySelector("#level-3-loading").style.display = "none";
for (let ecoregion of res) {
L.geoJSON(ecoregion, {
className: "l3-layer-overlay",
fillOpacity: 0.2,
weight: 1,
color: ecoregion.style,
})
//TODO currently uses unsplash filler images, needs to be updated in future with actual ecoregion pictures
.bindTooltip(ecoregion.name, { className: "ecoregion-popup" })
.on("click", function (e) {
l3sidebar.setContent(`
${ecoregion.name}
Level 3 Ecoregion
${ecoregion.info}
Reference: Griffith, Bryce, Omernick & Rodgers (2007). Ecoregions of Texas.`);
l3sidebar.show();
})
.addTo(level3Layer);
}
//add the layer to the map
if (params.eco3Show === true) {
map.addLayer(level3Layer);
}
//add layer to overlay so it can be toggled
layerControl.addOverlay(level3Layer, "Level 3 Ecoregions");
});
};
loadLevel3Ecos();
//initialize sidebar
const l3sidebar = L.control.sidebar("l3sidebar", {
position: "left",
});
//add controls to sidebar
map.addControl(l3sidebar);
}
/*
*eco4Load* will load the level 3 ecoregion data. Must be TRUE in order for eco4Show to work.
*eco4Show* will automatically populate the map with the level 4 ecoregions. If not selected, the ecoregions & legend (for level 3 ecoregions) will load, but will be toggled off & minimized respectively.
*/
if (params.eco4Load === true) {
//initialize ecoregion layer
const level4Layer = new L.layerGroup();
//add loading spinner while ecoregions load
document.querySelector("#ecoregion_map").insertAdjacentHTML(
"afterend",
`
Level 4 Ecoregions Loading
`
);
const loadLevel4Ecos = async () => {
const lvl4Promises = [];
for (let eco of level4Eco) {
try {
let res = await fetch(
`https://geodata.epa.gov/arcgis/rest/services/ORD/USEPA_Ecoregions_Level_III_and_IV/MapServer/7/query?where=US_L4CODE+%3D+%27${eco.id}%27&f=geojson`
);
let json = await res.json();
//add ecoregion name so it can be bound to tooltip
json.name = eco.name;
json.style = eco.style;
json.info = eco.info;
lvl4Promises.push(json);
} catch (error) {
console.log(error);
}
}
Promise.all(lvl4Promises).then((res) => {
if (params.eco3Load === false && params.eco4Load === true) {
document.querySelector(".spinner-container").hidden = true;
}
document.querySelector("#level-4-loading").style.display = "none";
for (let ecoregion of res) {
L.geoJSON(ecoregion, {
className: "l4-layer-overlay",
fillOpacity: 0.4,
weight: 1,
color: ecoregion.style,
})
//TODO currently uses unsplash filler images, needs to be updated in future with actual ecoregion pictures
.bindTooltip(ecoregion.name, { className: "ecoregion-popup" })
.on("click", function (e) {
l4sidebar.setContent(`
${ecoregion.name}
Level 4 Ecoregion
${ecoregion.info}
Reference: Griffith, Bryce, Omernick & Rodgers (2007). Ecoregions of Texas.`);
l4sidebar.show();
})
.addTo(level4Layer);
}
if (params.eco4Show === true) {
//add the layer to the map
map.addLayer(level4Layer);
}
//add layer to overlay so it can be toggled
layerControl.addOverlay(level4Layer, "Level 4 Ecoregions");
});
};
loadLevel4Ecos();
const l4sidebar = L.control.sidebar("l4sidebar", {
position: "right",
});
map.addControl(l4sidebar);
}
/*
*chapterLoad* will load the chapter location pins & chapter counties to create a "heatmap". Must be TRUE in order for chapterShow to work.
*chapterShow* will automatically populate the map with the chapter location pins & chapter counties. If not selected, the chapter location pins & chapter counties will load but will be toggled off.
*/
if (params.chapterLoad === true) {
const loadChapters = async () => {
const chapterOptions = { ...iconOptions };
chapterOptions.borderColor = "#3c5799";
chapterOptions.textColor = "#3c5799";
chapterOptions.icon = "users";
//initialize layer for chapter pins
const chapterPins = new L.LayerGroup();
//initialize layer for chapter counties
const chapterCounties = new L.LayerGroup();
//storage for chapter counties
const countyArr = [];
//add loading spinner while ecoregions load
document.querySelector("#ecoregion_map").insertAdjacentHTML(
"afterend",
`
The Native Plant Society of Texas awards small grants to nature centers, schools, educational groups and others to help fund development of Monarch Demonstration Gardens or Monarch Waystations using native plants on public sites in Texas. The purpose of this program is to educate members, applicants, and the public about Monarch conservation and native plants, and to encourage restoration of Monarch habitats throughout the Texas migration flyway.
Amount and Source of Funds
Grants are funded by Native Plant Society of Texas, Monarch Watch and by individual and corporate donations to the Bring Back the Monarchs to Texas (BBMT) program.
The total amount to be budgeted for this program varies from year to year. The number of grants awarded and the maximum size of grants may change with each grant cycle and depend on available funds. The grant application each year will state the current cap on grant amounts. Groups are not required to spend their own funds to match the amount of the grant.
Approved Types of Expenditures
Funds must only be spent on native milkweeds and native nectar plants. Applications will be accepted for both new gardens and improvement and maintenance of established Monarch Waystations or Monarch Demonstration Gardens. Plants can be replaced or milkweeds can be added. Funds cannot be spent on signage, hardscape features, barriers, soil, amendments or any other non-plant items.
Grant Administration Committee
The Bring Back the Monarchs to Texas Committee serves as the grant administration committee. The committee’s duties include evaluating and ranking grant applications and awarding grants. Evaluation will be based on each plan’s completeness and feasibility, its benefits to Monarchs, and its aesthetically pleasing use of native plants.
Procedure and Timing
Please read this section carefully since recent changes have been made regarding the timing.
Open the application on your own computer and save a copy for yourself. This application document works well in Microsoft Word and similar word processing programs. As you type, the spaces will expand to accommodate all your information. Our strong preference is that you use a computer to fill in the forms and then email the completed forms. It makes transferring data to our system much easier and more accurate. If you must create your own application, please answer all the questions in the official application document.
Submit the application to the Grant Committee by February 1. Email submissions are best. Email completed forms to bbmt@npsot.org.
Grants will be decided by March 1.
Checks should be received by mid-March
Funds are to be spent by October 31 of the grant year.
Project evaluation report will be filed with the Bring Back the Monarch Committee no later than November 30.
Messages and questions for the committee can be sent at any time during the process to bbmt@npsot.org.
This schedule of events represents a departure from our previous procedures. Its intent is to allow for summer preparation and fall planting of garden sites, where that timeline is deemed preferable. Gardens may now be installed in the spring or in the fall under the new timeline.
Evaluation
The Bring Back the Monarchs to Texas Committee chairman will monitor the progress of the project. In some cases, site visits by a committee member or representative may be conducted. We ask that project coordinators inform the committee when the garden work is completed so that visits can be scheduled. By November 30, the grantee will submit a short written report to the Bring Back the Monarchs to Texas Committee giving the project status or results, including lessons learned that would help others on similar projects, records of man-hours contributed by volunteers, and project accounting statement with copies of invoices and receipts. Including photos is strongly encouraged. This information will be used to capture results of the program. Reports can be filed earlier than November 30 if the work is completed.
Determination of a Monarch Watch Waystation
Registering your garden as a Monarch Waystation is encouraged but not required under the terms of the grant.
Learn about Monarch Butterflies Monarch Joint Venture About the Monarch Butterfly Learn about Milkweed Texas Parks and Wildlife Identification of Milkweeds (Illustrated Guide) Milkweed seeds and propagation Learn about Butterfly
Monarch Waystations are places that provide all the resources necessary for monarchs to produce successive generations and sustain their migration. A Monarch Waystation needs milkweeds, nectar plants, and some kind of