";
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",
`
A strategic plan is a document that defines the direction that an organization wants to go, or its strategy. It also makes decisions about how to allocate resources in order to achieve this strategy.
You could think of the strategic plan as a guide or a roadmap of what the organization wants to accomplish. Often a plan starts out by describing the environment in which an organization operates and assessing strengths and weaknesses of the organization within that environment. The organization wants to establish for itself a particular place in that environment. It aims to do this by creating a set of action items or initiatives and allocating resources to accomplish those items.
Every organization should have a clear idea of where it stands and what it hopes to accomplish. This can be an issue in an organization like the Native Plant Society of Texas which is very decentralized. We have lots of individual chapters and they have very indistinct lines of accountability to the central organization. Our governing body – the state board – is overly large and not used to working with one another. Members of the board come and go from one year to the next often with little awareness of what their predecessors have been doing.
There are many ways in which an organization can create a strategic plan for itself. In recent history our society has created two strategic plans. The first was in 1996 when leaders held a weekend retreat at Bamberger Ranch and crafted a document under the guidance of a professional facilitator. Results were published in a special edition of the membership newsletter. Then in 2008, a new plan was created through a series of in-person and online sessions conducted by an outside facilitator. You can find both of these documents online.
Last year the state board concluded that the goals of the 2008 plan were mostly either already accomplished or that they were out of date. The environment in which we operate has shifted and we now have new programs which were not taken into account in that plan.
In January, 2018, Cecil Carter, the state board president, asked Dell Hood to draft a new strategic plan. Dell is a long-time member of our society who lives in Wimberley. He previously served on our state board and has led a number of special projects. Dell presented his draft to the state board in April, 2018, and it was subsequently circulated among chapter leaders and others. A nine-member committee reviewed their comments and made changes to the document. The resulting new draft was posted on our website where all members could make comments and suggestions. Then the committee reviewed the comments and made additional changes to the document. More comments and discussion were solicited at a live workshop conducted at the fall symposium. The planning committee then created a final document which was approved at the state board meeting on January 19, 2019.
Definitions
This glossary of definitions is provided to help explain some terms as used in the proposed plan.
Executive Director An Executive Director could be thought of as the chief operating officer or chief executive officer of the organization. Many people believe that our organization would be better served by a full-time paid executive director in place of (or in addition to) a part-time volunteer President. Most likely an Executive Director would report directly to the state board. The exact duties would depend on the contract drawn up when a candidate accepts the job and might depend on the particular skills a candidate brings. The state board approved a general description of the responsibilities of an executive director in 2016.
Advocacy Advocacy is public support for, or recommendation of, a particular cause or policy. Advocacy can include many activities that a person or organization undertakes, including media campaigns, public speaking, or commissioning and publishing research. Non-profit organizations are not prohibited from engaging in advocacy.
Lobbying is a type of advocacy where a direct approach is made to legislators on an issue.
Goal, Objective, Strategy Labels applied to various dimensions of Dell Hood’s plan in order to provide structure. As used there, a Strategy is an action intended to achieve a desired Objective. Objectives are grouped together with related Objectives under the heading of a Goal. These labels may be considered arbitrary.