diff --git a/_site/index.html b/_site/index.html index 7d702784..40ee10a6 100644 --- a/_site/index.html +++ b/_site/index.html @@ -356,7 +356,7 @@

GROWING THE OPEN MOVEMENT

-

130

+

151

Research teams through the Champions Program

diff --git a/_site/initiatives.html b/_site/initiatives.html index 8e0a611c..4efa143b 100644 --- a/_site/initiatives.html +++ b/_site/initiatives.html @@ -2,7 +2,7 @@ - + @@ -48,7 +48,13 @@ "collapse-after": 3, "panel-placement": "end", "type": "overlay", - "limit": 20, + "limit": 50, + "keyboard-shortcut": [ + "f", + "/", + "s" + ], + "show-item-context": false, "language": { "search-no-results-text": "No results", "search-matching-documents-text": "matching documents", @@ -57,6 +63,7 @@ "search-more-match-text": "more match in this document", "search-more-matches-text": "more matches in this document", "search-clear-button-title": "Clear", + "search-text-placeholder": "", "search-detached-cancel-button-title": "Cancel", "search-submit-button-title": "Submit", "search-label": "Search" @@ -70,9 +77,9 @@
-
@@ -204,6 +211,7 @@ +


@@ -216,7 +224,7 @@
-

A green agave plant.

+

A green agave plant.

@@ -229,7 +237,7 @@

CHAMPIONS PROGRAM

Openscapes Champions is an open data science mentorship program for science teams. It is a multi-month program that is designed to ignite incremental and sustainable change within research teams and beyond. It helps teams get their own work done, while building skills and community within the realities of scientists’ busy schedules, varying expertise and needs.

-

This is our flagship program, and from 2019-2022 we have led 18 cohorts. We work with partners to coordinate cohorts of 5 to 7 research teams.

+

This is our flagship program, and from 2019-2024 we have led 20 cohorts. We work with partners to coordinate cohorts of 5 to 7 research teams.

Champions Program Resources

@@ -244,7 +252,7 @@

CHAMPIONS PROGRAM

-

A brown rattlesnake snake with a darker brown pattern down its back.

+

A brown rattlesnake snake with a darker brown pattern down its back.

@@ -268,7 +276,7 @@

NASA OPENSCAPES

-

The NASA 'meatball' logo that is blue, red, and white next to an orange Openscapes logo.

+

The NASA 'meatball' logo that is blue, red, and white next to an orange Openscapes logo.

@@ -296,7 +304,7 @@

MENTORS FRAMEWORK

-

A green Saguaro cactus with two arms.

+

A green Saguaro cactus with two arms.

@@ -319,7 +327,7 @@

PATHWAYS
-

A brown road runner running to the left.

+

A brown road runner running to the left.

@@ -342,7 +350,7 @@

REFLECTIONS PROGRAM
-

A brown tortoise.

+

A brown tortoise.

@@ -433,10 +441,27 @@

REFLECTIONS PROGRAM { + return filterRegex.test(href) || localhostRegex.test(href) || mailtoRegex.test(href); + } + // Inspect non-navigation links and adorn them if external + var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item):not(.quarto-navigation-tool)'); + for (var i=0; iREFLECTIONS PROGRAMREFLECTIONS PROGRAM { + // Strip column container classes + const stripColumnClz = (el) => { + el.classList.remove("page-full", "page-columns"); + if (el.children) { + for (const child of el.children) { + stripColumnClz(child); + } + } + } + stripColumnClz(note) + if (id === null || id.startsWith('sec-')) { + // Special case sections, only their first couple elements + const container = document.createElement("div"); + if (note.children && note.children.length > 2) { + container.appendChild(note.children[0].cloneNode(true)); + for (let i = 1; i < note.children.length; i++) { + const child = note.children[i]; + if (child.tagName === "P" && child.innerText === "") { + continue; + } else { + container.appendChild(child.cloneNode(true)); + break; + } + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(container); + } + return container.innerHTML + } else { + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + return note.innerHTML; + } + } else { + // Remove any anchor links if they are present + const anchorLink = note.querySelector('a.anchorjs-link'); + if (anchorLink) { + anchorLink.remove(); + } + if (window.Quarto?.typesetMath) { + window.Quarto.typesetMath(note); + } + // TODO in 1.5, we should make sure this works without a callout special case + if (note.classList.contains("callout")) { + return note.outerHTML; + } else { + return note.innerHTML; + } + } + } + for (var i=0; i res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.getElementById(id); + if (note !== null) { + const html = processXRef(id, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + } else { + // See if we can fetch a full url (with no hash to target) + // This is a special case and we should probably do some content thinning / targeting + fetch(url) + .then(res => res.text()) + .then(html => { + const parser = new DOMParser(); + const htmlDoc = parser.parseFromString(html, "text/html"); + const note = htmlDoc.querySelector('main.content'); + if (note !== null) { + // This should only happen for chapter cross references + // (since there is no id in the URL) + // remove the first header + if (note.children.length > 0 && note.children[0].tagName === "HEADER") { + note.children[0].remove(); + } + const html = processXRef(null, note); + instance.setContent(html); + } + }).finally(() => { + instance.enable(); + instance.show(); + }); + } + }, function(instance) { }); } let selectedAnnoteEl; @@ -503,6 +660,7 @@

REFLECTIONS PROGRAMREFLECTIONS PROGRAM { + elRect = undefined; + if (selectedAnnoteEl) { + selectCodeLines(selectedAnnoteEl); + } + }, 10) + ); + function throttle(fn, ms) { + let throttle = false; + let timer; + return (...args) => { + if(!throttle) { // first call gets through + fn.apply(this, args); + throttle = true; + } else { // all the others get throttled + if(timer) clearTimeout(timer); // cancel #2 + timer = setTimeout(() => { + fn.apply(this, args); + timer = throttle = false; + }, ms); + } + }; + } // Attach click handler to the DT const annoteDls = window.document.querySelectorAll('dt[data-target-cell]'); for (const annoteDlNode of annoteDls) { @@ -590,14 +774,19 @@

REFLECTIONS PROGRAM + \ No newline at end of file diff --git a/_site/search.json b/_site/search.json index bc229ad5..9dd09a8a 100644 --- a/_site/search.json +++ b/_site/search.json @@ -480,14 +480,14 @@ "href": "initiatives.html", "title": "", "section": "", - "text": "We offer mentorship that builds technical and collaborative skillsfor teams and organizations.\n\n\n\n\n\n\n\n\n\n\n\n\n\nOur initiatives are all remote-by-design, for researchers and those who support research. Welcome!\n\n\n\n\nOpenscapes Champions is an open data science mentorship program for science teams. It is a multi-month program that is designed to ignite incremental and sustainable change within research teams and beyond. It helps teams get their own work done, while building skills and community within the realities of scientists’ busy schedules, varying expertise and needs.\nThis is our flagship program, and from 2019-2022 we have led 18 cohorts. We work with partners to coordinate cohorts of 5 to 7 research teams.\n\n\n Champions Program Resources \n\n\nThe Openscapes Champions Lesson Series is our open source curriculum we use to teach Champions Cohorts, and you can use it too.\nLearn more on the Champions Program webpage, and read about the experiences of our past and current Champions cohorts on our blog.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNASA Openscapes is a multi-year effort to develop a mentor community across NASA Earth science data centers to support researchers as they migrate analytical workflows to the Cloud. We approach this work as movement building, using the concept where transformations occur from relentlessly pushing a giant, heavy flywheel that builds momentum over time.\nWe began in 2021, and currently working with Mentors from 11 of the 12 NASA Earth science data centers.\n\n\n NASA Openscapes Resources \n\n\nThe NASA Earthdata Cloud Cookbook is a collection of common tutorials co-created and co-taught by NASA Openscapes Mentors, and it is an open source curriculum you can use too!\nLearn more on the NASA Openscapes website, and read about the experiences of our past and current NASA Openscapes work on our blog.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe Mentors Framework is a multi-year engine for culture change within organizations. It blends tech and community building through mentoring, coaching, facilitating, art, open source, environment, inclusion, movements, and leaders we admire.\n\nWe began developing the Mentors Framework in 2021 through NASA Openscapes, describing this in Robinson & Lowndes 2022. We have also been growing the Mentors Framework with NOAA Fisheries, the California Water Boards, and Pathways to Open Science teams and are excited to expand what we are learning with other groups.\n\n\n Mentors Framework Resources \n\n\nLearn more about the teams who have adopted the Mentors Framework and explore their open work and books:\nNASA Openscapes | Earthdata Cloud Cookbook | blog posts\nNOAA Fisheries Openscapes | Resource Book | blog posts\nCalifornia Water Boards Openscapes | blog post\nBlog: How coaching skills have made us better open data science mentors\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPathways to Open Science is an event series for Black environmental & marine researchers. It is led by Ileana Fenwick of Openscapes in partnership with Black in Marine Science (BIMS) and Black Women in Ecology, Evolution, and Marine Science (BWEEMS), focused on building community for the future of data-intensive science.\nWe launched this program in 2023 and plan to lead it annually in January-March.\n\n\n Pathways to Open Science Program Resources \n\n\nLearn more on the Pathways to Open Science Program webpage, and read about experiences on our blog.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOpenscapes Reflections is an open data science coaching program for researchers and those who support research. We know many like you have been looking for a lighter-weight way to get involved or continue building habits to support yourself and your colleagues. We’ve designed the Reflections Program to meet this need; Reflections is a 3-week program modeled from leadership coaching, something now core to the Openscapes approach.\nWe launched this program in 2023 and plan to lead it annually in May!\n\n\n Reflections Program Resources\n\n\nLearn more and register in the Openscapes Reflections Booklet, which introduces prompts to guide your reflections." + "text": "We offer mentorship that builds technical and collaborative skillsfor teams and organizations.\n\n\n\n\n\n\n\n\n\n\n\n\n\nOur initiatives are all remote-by-design, for researchers and those who support research. Welcome!\n\n\n\n\nOpenscapes Champions is an open data science mentorship program for science teams. It is a multi-month program that is designed to ignite incremental and sustainable change within research teams and beyond. It helps teams get their own work done, while building skills and community within the realities of scientists’ busy schedules, varying expertise and needs.\nThis is our flagship program, and from 2019-2024 we have led 20 cohorts. We work with partners to coordinate cohorts of 5 to 7 research teams.\n\n\n Champions Program Resources \n\n\nThe Openscapes Champions Lesson Series is our open source curriculum we use to teach Champions Cohorts, and you can use it too.\nLearn more on the Champions Program webpage, and read about the experiences of our past and current Champions cohorts on our blog.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNASA Openscapes is a multi-year effort to develop a mentor community across NASA Earth science data centers to support researchers as they migrate analytical workflows to the Cloud. We approach this work as movement building, using the concept where transformations occur from relentlessly pushing a giant, heavy flywheel that builds momentum over time.\nWe began in 2021, and currently working with Mentors from 11 of the 12 NASA Earth science data centers.\n\n\n NASA Openscapes Resources \n\n\nThe NASA Earthdata Cloud Cookbook is a collection of common tutorials co-created and co-taught by NASA Openscapes Mentors, and it is an open source curriculum you can use too!\nLearn more on the NASA Openscapes website, and read about the experiences of our past and current NASA Openscapes work on our blog.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe Mentors Framework is a multi-year engine for culture change within organizations. It blends tech and community building through mentoring, coaching, facilitating, art, open source, environment, inclusion, movements, and leaders we admire.\n\nWe began developing the Mentors Framework in 2021 through NASA Openscapes, describing this in Robinson & Lowndes 2022. We have also been growing the Mentors Framework with NOAA Fisheries, the California Water Boards, and Pathways to Open Science teams and are excited to expand what we are learning with other groups.\n\n\n Mentors Framework Resources \n\n\nLearn more about the teams who have adopted the Mentors Framework and explore their open work and books:\nNASA Openscapes | Earthdata Cloud Cookbook | blog posts\nNOAA Fisheries Openscapes | Resource Book | blog posts\nCalifornia Water Boards Openscapes | blog post\nBlog: How coaching skills have made us better open data science mentors\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nPathways to Open Science is an event series for Black environmental & marine researchers. It is led by Ileana Fenwick of Openscapes in partnership with Black in Marine Science (BIMS) and Black Women in Ecology, Evolution, and Marine Science (BWEEMS), focused on building community for the future of data-intensive science.\nWe launched this program in 2023 and plan to lead it annually in January-March.\n\n\n Pathways to Open Science Program Resources \n\n\nLearn more on the Pathways to Open Science Program webpage, and read about experiences on our blog.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOpenscapes Reflections is an open data science coaching program for researchers and those who support research. We know many like you have been looking for a lighter-weight way to get involved or continue building habits to support yourself and your colleagues. We’ve designed the Reflections Program to meet this need; Reflections is a 3-week program modeled from leadership coaching, something now core to the Openscapes approach.\nWe launched this program in 2023 and plan to lead it annually in May!\n\n\n Reflections Program Resources\n\n\nLearn more and register in the Openscapes Reflections Booklet, which introduces prompts to guide your reflections." }, { "objectID": "initiatives.html#champions-program", "href": "initiatives.html#champions-program", "title": "", "section": "", - "text": "Openscapes Champions is an open data science mentorship program for science teams. It is a multi-month program that is designed to ignite incremental and sustainable change within research teams and beyond. It helps teams get their own work done, while building skills and community within the realities of scientists’ busy schedules, varying expertise and needs.\nThis is our flagship program, and from 2019-2022 we have led 18 cohorts. We work with partners to coordinate cohorts of 5 to 7 research teams.\n\n\n Champions Program Resources \n\n\nThe Openscapes Champions Lesson Series is our open source curriculum we use to teach Champions Cohorts, and you can use it too.\nLearn more on the Champions Program webpage, and read about the experiences of our past and current Champions cohorts on our blog." + "text": "Openscapes Champions is an open data science mentorship program for science teams. It is a multi-month program that is designed to ignite incremental and sustainable change within research teams and beyond. It helps teams get their own work done, while building skills and community within the realities of scientists’ busy schedules, varying expertise and needs.\nThis is our flagship program, and from 2019-2024 we have led 20 cohorts. We work with partners to coordinate cohorts of 5 to 7 research teams.\n\n\n Champions Program Resources \n\n\nThe Openscapes Champions Lesson Series is our open source curriculum we use to teach Champions Cohorts, and you can use it too.\nLearn more on the Champions Program webpage, and read about the experiences of our past and current Champions cohorts on our blog." }, { "objectID": "initiatives.html#nasa-openscapes", @@ -1866,7 +1866,7 @@ "href": "index.html", "title": "WHAT WE DO", "section": "", - "text": "WHAT WE DO\n\n\nOpenscapes is an approach and a movement that helps researchers and those supporting research find each other and feel empowered to conduct data-intensive science. Through a creative approach drawing inspiration and skills from many places, we provide structures for technical skill-building, collaborative teamwork, and inclusive community development. Here’s how:\n\n\n\n\n\n\n\n\n\n\n\n\nENGAGE\n\n\nWe welcome, and create space & place. We engage researchers who want to work better and collaborate through empathy, art, storytelling, and technology.\n\n\n\n\n\n\n\n\n\nEMPOWER\n\n\nWe invest in learning & trust, and work openly. We empower researchers by growing their confidence and abilities as they put what they learn into practice quickly.\n\n\n\n\n\n\n\n\n\nAMPLIFY\n\n\nWe leverage common workflows & tools, and inspire broader shifts. We amplify progress through collaboration and reuse, celebrating people and small wins that accumulate.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGROWING THE OPEN MOVEMENT\n\n As part of the larger open science movement, Openscapes helps research teams and organizations reimagine data-intensive science and grow community-centered leadership skills. \n\n\n\n\n\n\n\n130 \n\n\nResearch teams through the Champions Program\n\n\n\n\n\n\n80\n\n\nMentors onboarded in the Mentors Framework\n\n\n\n\n\n\n22\n\n\nContributors to the NASA Earthdata Cloud Cookbook\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n“Because of Openscapes, I have renewed hope in how we can bring about a kinder future in science. I see a commitment in the open science community to bridging the gaps where we’ve left members of our community behind, and it inspires me.”\n\n\n\n\n\n\n\n\n\n- Ileana Fenwick,\nUniversity of North Carolina\n2021 Champion, Mentor, and Program Lead\n\n\n\n\n\n\n\n\n“Openscapes isn’t just about coding and GitHub, it’s about changing how we do science”\n\n\n\n\n\n\n– Malin Pinsky,\nUniversity of California, Santa Cruz\n2019 Champion\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFROM OUR BLOG\n\n\nOur blog shares stories from the community and documents our learning openly. See the recent posts below or browse our full blog listing.\n\n\n\n\n\n\n\n\n\n\n\nShifting institutional culture to develop climate solutions with Open Science\n\n\n\nblog\n\n\nnoaa-fisheries\n\n\nnasa-framework\n\n\nwater-boards\n\n\npathways\n\n\nhow-we-work\n\n\n\n\nJun 6, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNASA Earthdata Data Chat with Aaron Friesz\n\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nApr 4, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOpenscapes Newsletter #9: Inviting you to the Reflections Program\n\n\n\nblog\n\n\nnewsletter\n\n\n\n\nMar 27, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNASA Earthdata Webinar: NASA Openscapes Mentors from 4 data centers present the Earthdata Cloud Cookbook\n\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nMar 12, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nearthaccess: Accelerating NASA Earthdata access through open, collaborative development\n\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nMar 4, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOpenscapes Community Call: GitHub for NASA Openscapes community calendaring & project management\n\n\n\ncommunity-call\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nFeb 28, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNASA Openscapes: Talking points for 3-year recap & vision for next two years\n\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nFeb 15, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWhite House Fact Sheet Mentions Openscapes!\n\n\n\nblog\n\n\nnoaa-fisheries\n\n\nnasa-framework\n\n\nwater-boards\n\n\npathways\n\n\n\n\nFeb 9, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOpenscapes Newsletter #8: Winter 2024\n\n\n\nblog\n\n\nnewsletter\n\n\n\n\nJan 24, 2024\n\n\n\n\n\n\n\n\nNo matching items\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nOPEN RESOURCES\n\n\n\nWe share our curricula, approach, and many other open resources for reuse.\nLearn more about our initiatives through our media, and events and connect with us. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAbout\nOur vision is a scientific culture that is more efficient, more kind, and more collaborative, and that can uncover environmental solutions faster together.\nLearn more »\n\n\nContact\nOpenscapes\nCalifornia, USA\n\nhello @ openscapes.org\nMastodon & GitHub: @openscapes\nGet Involved »" + "text": "WHAT WE DO\n\n\nOpenscapes is an approach and a movement that helps researchers and those supporting research find each other and feel empowered to conduct data-intensive science. Through a creative approach drawing inspiration and skills from many places, we provide structures for technical skill-building, collaborative teamwork, and inclusive community development. Here’s how:\n\n\n\n\n\n\n\n\n\n\n\n\nENGAGE\n\n\nWe welcome, and create space & place. We engage researchers who want to work better and collaborate through empathy, art, storytelling, and technology.\n\n\n\n\n\n\n\n\n\nEMPOWER\n\n\nWe invest in learning & trust, and work openly. We empower researchers by growing their confidence and abilities as they put what they learn into practice quickly.\n\n\n\n\n\n\n\n\n\nAMPLIFY\n\n\nWe leverage common workflows & tools, and inspire broader shifts. We amplify progress through collaboration and reuse, celebrating people and small wins that accumulate.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nGROWING THE OPEN MOVEMENT\n\n As part of the larger open science movement, Openscapes helps research teams and organizations reimagine data-intensive science and grow community-centered leadership skills. \n\n\n\n\n\n\n\n151 \n\n\nResearch teams through the Champions Program\n\n\n\n\n\n\n80\n\n\nMentors onboarded in the Mentors Framework\n\n\n\n\n\n\n22\n\n\nContributors to the NASA Earthdata Cloud Cookbook\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n“Because of Openscapes, I have renewed hope in how we can bring about a kinder future in science. I see a commitment in the open science community to bridging the gaps where we’ve left members of our community behind, and it inspires me.”\n\n\n\n\n\n\n\n\n\n- Ileana Fenwick,\nUniversity of North Carolina\n2021 Champion, Mentor, and Program Lead\n\n\n\n\n\n\n\n\n“Openscapes isn’t just about coding and GitHub, it’s about changing how we do science”\n\n\n\n\n\n\n– Malin Pinsky,\nUniversity of California, Santa Cruz\n2019 Champion\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFROM OUR BLOG\n\n\nOur blog shares stories from the community and documents our learning openly. See the recent posts below or browse our full blog listing.\n\n\n\n\n\n\n\n\n\n\n\nShifting institutional culture to develop climate solutions with Open Science\n\n\n\nblog\n\n\nnoaa-fisheries\n\n\nnasa-framework\n\n\nwater-boards\n\n\npathways\n\n\nhow-we-work\n\n\n\n\nJun 6, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNASA Earthdata Data Chat with Aaron Friesz\n\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nApr 4, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOpenscapes Newsletter #9: Inviting you to the Reflections Program\n\n\n\nblog\n\n\nnewsletter\n\n\n\n\nMar 27, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNASA Earthdata Webinar: NASA Openscapes Mentors from 4 data centers present the Earthdata Cloud Cookbook\n\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nMar 12, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nearthaccess: Accelerating NASA Earthdata access through open, collaborative development\n\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nMar 4, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOpenscapes Community Call: GitHub for NASA Openscapes community calendaring & project management\n\n\n\ncommunity-call\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nFeb 28, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNASA Openscapes: Talking points for 3-year recap & vision for next two years\n\n\n\nblog\n\n\nnasa-framework\n\n\n\n\nFeb 15, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nWhite House Fact Sheet Mentions Openscapes!\n\n\n\nblog\n\n\nnoaa-fisheries\n\n\nnasa-framework\n\n\nwater-boards\n\n\npathways\n\n\n\n\nFeb 9, 2024\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nOpenscapes Newsletter #8: Winter 2024\n\n\n\nblog\n\n\nnewsletter\n\n\n\n\nJan 24, 2024\n\n\n\n\n\n\n\n\nNo matching items\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\nOPEN RESOURCES\n\n\n\nWe share our curricula, approach, and many other open resources for reuse.\nLearn more about our initiatives through our media, and events and connect with us. \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAbout\nOur vision is a scientific culture that is more efficient, more kind, and more collaborative, and that can uncover environmental solutions faster together.\nLearn more »\n\n\nContact\nOpenscapes\nCalifornia, USA\n\nhello @ openscapes.org\nMastodon & GitHub: @openscapes\nGet Involved »" }, { "objectID": "blog/2021-03-10-nasa-announcement/index.html", diff --git a/index.qmd b/index.qmd index 6df1f577..0a6c7ffb 100644 --- a/index.qmd +++ b/index.qmd @@ -115,7 +115,7 @@ listing: ::: {.g-col-12 .g-col-md-4 .stat-box} ::: {.large-stat-num .blue-text} -**130** +**151** ::: :::{.med-sm-body-text} **Research teams** through the Champions Program diff --git a/initiatives.qmd b/initiatives.qmd index 4f3d219a..8a549e31 100644 --- a/initiatives.qmd +++ b/initiatives.qmd @@ -35,7 +35,7 @@ Our initiatives are all remote-by-design, for researchers and those who support **Openscapes Champions is an open data science mentorship program for science teams.** It is a multi-month program that is designed to ignite incremental and sustainable change within research teams and beyond. It helps teams get their own work done, while building skills and community within the realities of scientists' busy schedules, varying expertise and needs. -This is our flagship program, and from 2019-2022 we have led 18 cohorts. We work with partners to coordinate cohorts of 5 to 7 research teams. +This is our flagship program, and from 2019-2024 we have led 20 cohorts. We work with partners to coordinate cohorts of 5 to 7 research teams. ::: {.yellow-box} ::: {.medium-body-text .center-text}