CINXE.COM

EAGE News Archive - eage.org

<!doctype html> <html lang="en-US" prefix="og: https://ogp.me/ns#"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <!-- Search Engine Optimization by Rank Math - https://rankmath.com/ --> <title>EAGE News Archive - eage.org</title> <meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/> <link rel="canonical" href="https://eage.org/eage_news/eage-news-archive/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="EAGE News Archive - eage.org" /> <meta property="og:url" content="https://eage.org/eage_news/eage-news-archive/" /> <meta property="og:site_name" content="eage.org" /> <meta property="og:updated_time" content="2020-09-17T09:44:59+00:00" /> <meta property="og:image" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <meta property="og:image:secure_url" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <meta property="og:image:width" content="800" /> <meta property="og:image:height" content="217" /> <meta property="og:image:alt" content="EAGE News Archive" /> <meta property="og:image:type" content="image/jpeg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="EAGE News Archive - eage.org" /> <meta name="twitter:image" content="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg" /> <!-- /Rank Math WordPress SEO plugin --> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel='dns-prefetch' href='//stats.wp.com' /> <link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /> <link rel="alternate" type="application/rss+xml" title="eage.org &raquo; Feed" href="https://eage.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="eage.org &raquo; Comments Feed" href="https://eage.org/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="eage.org &raquo; EAGE News Archive Comments Feed" href="https://eage.org/eage_news/eage-news-archive/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/eage.org\/wp-includes\/js\/wp-emoji.js?ver=6.7.1","twemoji":"https:\/\/eage.org\/wp-includes\/js\/twemoji.js?ver=6.7.1"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='all-css-4' href='https://eage.org/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5oM02OfaGpobGxkZmBkYGQMAhH8tYw==' type='text/css' media='all' /> <style id='jetpack-sharing-buttons-style-inline-css'> .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em} </style> <style id='rank-math-toc-block-style-inline-css'> .wp-block-rank-math-toc-block nav ol{counter-reset:item}.wp-block-rank-math-toc-block nav ol li{display:block}.wp-block-rank-math-toc-block nav ol li:before{content:counters(item, ".") ". ";counter-increment:item} </style> <style id='filebird-block-filebird-gallery-style-inline-css'> ul.filebird-block-filebird-gallery{margin:auto!important;padding:0!important;width:100%}ul.filebird-block-filebird-gallery.layout-grid{display:grid;grid-gap:20px;align-items:stretch;grid-template-columns:repeat(var(--columns),1fr);justify-items:stretch}ul.filebird-block-filebird-gallery.layout-grid li img{border:1px solid #ccc;box-shadow:2px 2px 6px 0 rgba(0,0,0,.3);height:100%;max-width:100%;-o-object-fit:cover;object-fit:cover;width:100%}ul.filebird-block-filebird-gallery.layout-masonry{-moz-column-count:var(--columns);-moz-column-gap:var(--space);column-gap:var(--space);-moz-column-width:var(--min-width);columns:var(--min-width) var(--columns);display:block;overflow:auto}ul.filebird-block-filebird-gallery.layout-masonry li{margin-bottom:var(--space)}ul.filebird-block-filebird-gallery li{list-style:none}ul.filebird-block-filebird-gallery li figure{height:100%;margin:0;padding:0;position:relative;width:100%}ul.filebird-block-filebird-gallery li figure figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}ul.filebird-block-filebird-gallery li figure figcaption a{color:inherit} </style> <style id='classic-theme-styles-inline-css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='all-css-14' href='https://eage.org/_static/??-eJylkt1OwzAMhV+I1DAEaBeIR0Fe4rWG/Cl2GHt70hYkkCir6E2UHNufjh3DKRubolJUyL72HAUw9qcMKEIqcGzB+TR4IkmBwMpPoQscuyZewSWYY9FZ6Q41Ok/di1yo5Gh9dQT03oLCqQUkl2ebfA1j0gweLWHkgLrGzXrmN3mZmc18NWILZ6UExzLluNnXiAPRc2t3G6MKFZMxkv8/yG+onUx8jXkbxQ5YdCPjINhZLKmNZWtTY0eF0RtHwv0f+7Pun9g4VMxsX6kss5wzQljsYDSZQLFCrgfPdiLxWyrnz/ivK60DBRIYyPtkyLdH1FQW9mwheZLH5KfwePOw299d397vdx8gPo3X' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-frontend.css?ver=1731931279' media='all' /> <link rel='stylesheet' id='all-css-16' href='https://eage.org/wp-content/plugins/elementor/assets/css/widget-image.min.css?m=1730132665g' type='text/css' media='all' /> <link rel='stylesheet' id='widget-nav-menu-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-pro-widget-nav-menu.min.css?ver=1731931322' media='all' /> <link rel='stylesheet' id='all-css-18' href='https://eage.org/_static/??-eJylkdEOwjAIRX9IrHNxPhm/pW44SdrSFEz1761mLnuaTh/hXk64YHKEloNiUBPdtacgBh36UnMyVgRVjKOTsYG8VeKii94dFhuMPegT53UrsjJzPIiJ38xiNpm6HhX0UnQYXLL2FD6jpqudiwlsRmGPL+6zMdR/koQddd8zJqEk2hbTsjDTm+BNATsq6vKDzP8qcvwtEbdkHVCZGZ909IdqX2+qets0uwfqOt+z' type='text/css' media='all' /> <link rel='stylesheet' id='e-apple-webkit-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-apple-webkit.min.css?ver=1731931271' media='all' /> <link rel='stylesheet' id='all-css-20' href='https://eage.org/wp-content/plugins/elementor-pro/assets/css/widget-posts.min.css?m=1730132665g' type='text/css' media='all' /> <link rel='stylesheet' id='widget-icon-box-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-widget-icon-box.min.css?ver=1731931288' media='all' /> <link rel='stylesheet' id='all-css-22' href='https://eage.org/_static/??-eJytkEsKwjAQhi9kOtZidSNu3AheIibTOpBH6YwGb29SQbctdPm/PpiBNCgTg2AQGNyzp8CADn3WcQTNjMJgmCGR7VHUA7Wl0FeeQpXtDczZO7qDDuS1UMw5y9shQ6ctXleiXGJaiXTDTpaRkEyhlCf9cjV5yzicaMARXscJ9VXzCWWTS5bKTdrlhvojzv5UH5pt3ezadv8B9qC9eQ==' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-3378-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3378.css?ver=1731931340' media='all' /> <link rel='stylesheet' id='all-css-24' href='https://eage.org/wp-content/plugins/powerpack-elements/assets/css/frontend.css?m=1712303166g' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-pro-css' href='https://eage.org/wp-content/uploads/elementor/css/custom-pro-frontend.css?ver=1731931340' media='all' /> <link rel='stylesheet' id='elementor-post-147-css' href='https://eage.org/wp-content/uploads/elementor/css/post-147.css?ver=1731931342' media='all' /> <link rel='stylesheet' id='elementor-post-174-css' href='https://eage.org/wp-content/uploads/elementor/css/post-174.css?ver=1731931346' media='all' /> <link rel='stylesheet' id='elementor-post-4942-css' href='https://eage.org/wp-content/uploads/elementor/css/post-4942.css?ver=1731931515' media='all' /> <link rel='stylesheet' id='all-css-32' href='https://eage.org/wp-content/themes/hello-elementor/elementorRights.css?m=1712303167g' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-15640-css' href='https://eage.org/wp-content/uploads/elementor/css/post-15640.css?ver=1731931349' media='all' /> <link rel='stylesheet' id='elementor-post-14898-css' href='https://eage.org/wp-content/uploads/elementor/css/post-14898.css?ver=1731931353' media='all' /> <link rel='stylesheet' id='elementor-post-4198-css' href='https://eage.org/wp-content/uploads/elementor/css/post-4198.css?ver=1731931356' media='all' /> <link rel='stylesheet' id='elementor-post-1653-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1653.css?ver=1731931356' media='all' /> <link rel='stylesheet' id='elementor-post-1650-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1650.css?ver=1731931358' media='all' /> <link rel='stylesheet' id='elementor-post-1647-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1647.css?ver=1731931361' media='all' /> <link rel='stylesheet' id='elementor-post-1644-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1644.css?ver=1731931364' media='all' /> <link rel='stylesheet' id='elementor-post-1641-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1641.css?ver=1731931367' media='all' /> <link rel='stylesheet' id='elementor-post-1588-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1588.css?ver=1731931371' media='all' /> <link rel='stylesheet' id='elementor-post-1566-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1566.css?ver=1731931371' media='all' /> <link rel='stylesheet' id='elementor-post-1137-css' href='https://eage.org/wp-content/uploads/elementor/css/post-1137.css?ver=1731931374' media='all' /> <link rel='stylesheet' id='all-css-54' href='https://eage.org/_static/??-eJylj7sOwjAMRX+IEEpFmRDfkodbIrlxFNtU/D0BlYEBBhi8HPke+9qlmEBZIIstqFPKbMV5hFKB2YY2XhNGG2F0irJtZGO/h2aKivAWduKeC7z1KkKZ//YEQp3zmFCgLilOID86Gy7toXQF81J/0IxU2xnjPKkYvlCVQBHM2sgW9ZjCan4gw3Jbfef51B37Xdfvh+FwB8Ojjik=' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=auto&#038;ver=6.7.1' media='all' /> <link rel='stylesheet' id='all-css-56' href='https://eage.org/_static/??-eJydjF0KgCAQBi9UfZlgT9FZtDYR/GPX6PrZFXqbgWHw1PEouVFuqPH2IQsoUupeGFaEmiAGh6tHo31ISiIcImDyd7Q8dR7w++LY5lO+yZ42tapFz1oZ8wItFTfm' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" id="jquery-core-js-extra"> /* <![CDATA[ */ var pp = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" id="thickbox-js-extra"> /* <![CDATA[ */ var thickboxL10n = {"next":"Next >","prev":"< Prev","image":"Image","of":"of","close":"Close","noiframes":"This feature requires inline frames. You have iframes disabled or your browser does not support them.","loadingAnimation":"https:\/\/eage.org\/wp-includes\/js\/thickbox\/loadingAnimation.gif"}; /* ]]> */ </script> <script type="text/javascript" id="ap_plugin_js_script-js-extra"> /* <![CDATA[ */ var bsa_object = {"ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJydkU1uAyEMRi9UQjqRmlXVs7jYnfEUDLUhP7cvmSZRFkkXkZAw6D37Q/h9cSwhNiTzc18/jfR43lazvfj/AJd4VKh0AUOWSlJ9iW1kMZ9IWrddyVZPcoJ+SCyPeJBxXzyYUTWPtDs5gDvSysYy3stTJw7fn/lwLe5BTZDUQlZa3Uy/JWzKWkPG61MAO7lkJmRwrcQM+DB3cX+ls6BcKmX/pQuDS/Pl8kk5TKDPuudvNE4lHjuRY+ydPtL763YzDOu39bCZfwEEWsDX" ></script> <!-- Google tag (gtag.js) snippet added by Site Kit --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-PHPCHVB" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["eage.org"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-PHPCHVB"); /* ]]> */ </script> <!-- End Google tag (gtag.js) snippet added by Site Kit --> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://eage.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.1" /> <link rel='shortlink' href='https://eage.org/?p=4945' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://eage.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Feage.org%2Feage_news%2Feage-news-archive%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://eage.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Feage.org%2Feage_news%2Feage-news-archive%2F&#038;format=xml" /> <style> /* Custom BSA_PRO Styles */ /* fonts */ /* form */ .bsaProOrderingForm { } .bsaProInput input, .bsaProInput input[type='file'], .bsaProSelectSpace select, .bsaProInputsRight .bsaInputInner, .bsaProInputsRight .bsaInputInner label { } .bsaProPrice { } .bsaProDiscount { } .bsaProOrderingForm .bsaProSubmit, .bsaProOrderingForm .bsaProSubmit:hover, .bsaProOrderingForm .bsaProSubmit:active { } /* alerts */ .bsaProAlert, .bsaProAlert > a, .bsaProAlert > a:hover, .bsaProAlert > a:focus { } .bsaProAlertSuccess { } .bsaProAlertFailed { } /* stats */ .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-bar, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-line, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-point, .bsaStatsWrapper .ct-chart .ct-series.ct-series-b .ct-slice.ct-donut { stroke: #673AB7 !important; } .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-bar, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-line, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-point, .bsaStatsWrapper .ct-chart .ct-series.ct-series-a .ct-slice.ct-donut { stroke: #FBCD39 !important; } /* Custom CSS */ </style><meta name="generator" content="Site Kit by Google 1.138.0" /> <style>img#wpstats{display:none}</style> <script> (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:3431110,hjsv:5}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv='); </script> <!-- Google AdSense meta tags added by Site Kit --> <meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"> <meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"> <!-- End Google AdSense meta tags added by Site Kit --> <meta name="generator" content="Elementor 3.24.7; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="c57ea602-a439-4584-a2dd-45c9e1c9a468" data-blockingmode="auto" type="text/javascript"></script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; let adSlot; // Declare adSlot at a scope accessible by the resize handler and manual refresh googletag.cmd.push(function() { var mapping1 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .build(); adSlot = googletag.defineSlot('/20287594127/WP_EAGE_leaderboard', [[500, 62], [1140, 140], [728, 90], [1000, 123], 'fluid'], 'div-gpt-ad-1724414516259-0') .defineSizeMapping(mapping1) .addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); let resizeTimer; window.addEventListener('resize', () => { console.log("Resize event triggered."); clearTimeout(resizeTimer); resizeTimer = setTimeout(() => { googletag.cmd.push(function() { console.log("Refreshing adSlot via resize."); googletag.pubads().refresh([adSlot]); }); }, 500); // Refresh the ad 500 ms after resizing stops }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper', [[310, 360], 'fluid'], 'div-gpt-ad-1721216353239-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_leaderboard_Mobile', ['fluid', [320, 180]], 'div-gpt-ad-1721216301701-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper-homepage', ['fluid', [152, 435]], 'div-gpt-ad-1721216397689-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_skyscraper_Mobile-homepage', ['fluid', [310, 360]], 'div-gpt-ad-1721216479067-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; let adSlot; // Declare adSlot at a scope accessible by the resize handler and manual refresh googletag.cmd.push(function() { var mapping2 = googletag.sizeMapping() //.addSize([1600, 0], [[1140, 140]]) .addSize([1380, 0], [[1000, 123]]) .addSize([1150, 0], [[728, 90]]) .addSize([1100, 0], [[500, 62]]) .build(); adSlot = googletag.defineSlot('/20287594127/WP_EAGE_CR_leaderboard', [[1000, 123], [1140, 140], [500, 62], 'fluid', [728, 90]], 'div-gpt-ad-1724424183457-0') .defineSizeMapping(mapping2) .addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); let resizeTimer; window.addEventListener('resize', () => { console.log("Resize event triggered."); clearTimeout(resizeTimer); resizeTimer = setTimeout(() => { googletag.cmd.push(function() { console.log("Refreshing adSlot via resize."); googletag.pubads().refresh([adSlot]); }); }, 500); // Refresh the ad 500 ms after resizing stops }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_CR_skyscraper', [[310, 360], 'fluid'], 'div-gpt-ad-1721216112322-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/WP_EAGE_CR_leaderboard_Mobile', [[320, 180], 'fluid'], 'div-gpt-ad-1721216053156-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <meta http-equiv="Content-type" content="text/html; charset=UTF-8"> <script src="https://www.google.com/recaptcha/api.js"></script> <script> function timestamp() { var response = document.getElementById("g-recaptcha-response"); if (response == null || response.value.trim() == "") {var elems = JSON.parse(document.getElementsByName("captcha_settings")[0].value);elems["ts"] = JSON.stringify(new Date().getTime());document.getElementsByName("captcha_settings")[0].value = JSON.stringify(elems); } } setInterval(timestamp, 500); </script> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <!-- Google AdSense snippet added by Site Kit --> <script type="text/javascript" async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9577946690838398&amp;host=ca-host-pub-2644536267352236" crossorigin="anonymous"></script> <!-- End Google AdSense snippet added by Site Kit --> <meta name="generator" content="Powered by Slider Revolution 6.6.18 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <!-- Ads on this site are served by Adning v1.6.2 - adning.com --> <style></style><!-- / Adning. --> <!-- CJT Global Block (288) - Google tag manager - START --> <!-- Google tag (gtag.js) --> <script type="text/plain" data-cookieconsent="statistics" src="https://www.googletagmanager.com/gtag/js?id=G-7TGFG8T62W"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-7TGFG8T62W'); </script> <!-- CJT Global Block (288) - Google tag manager - END --> <!-- CJT Global Block (1) - FAQ widget - START --> <script> window.fwSettings={ 'widget_id':25000000070 }; !function(){if("function"!=typeof window.FreshworksWidget){var n=function(){n.q.push(arguments)};n.q=[],window.FreshworksWidget=n}}() </script> <script type='text/javascript' src='https://widget.freshworks.com/widgets/25000000070.js' async defer></script> <!-- CJT Global Block (1) - FAQ widget - END --> <link rel="icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=32" sizes="32x32" /> <link rel="icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=192" sizes="192x192" /> <link rel="apple-touch-icon" href="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=180" /> <meta name="msapplication-TileImage" content="https://eage.org/wp-content/uploads/2020/07/favicon.png?w=270" /> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> </head> <body class="eage_news-template-default single single-eage_news postid-4945 single-format-standard viewable-enabled hello-elementor elementor-default elementor-template-full-width elementor-kit-3378 elementor-page elementor-page-4945 elementor-page-4942"> <a class="skip-link screen-reader-text" href="#content"> Skip to content</a> <div data-elementor-type="header" data-elementor-id="147" class="elementor elementor-147 elementor-location-header" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-a64099a elementor-hidden-phone header_container elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a64099a" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e09b592" data-id="e09b592" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c7dbf89 elementor-absolute elementor-widget elementor-widget-image" data-id="c7dbf89" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://eage.org/"> <img width="360" height="280" src="https://eage.org/wp-content/uploads/2020/03/eagelogo.png" class="attachment-full size-full wp-image-2743" alt="Logo EAGE" srcset="https://eage.org/wp-content/uploads/2020/03/eagelogo.png 360w, https://eage.org/wp-content/uploads/2020/03/eagelogo.png?resize=768,597 768w" sizes="(max-width: 360px) 100vw, 360px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-6ebdae5" data-id="6ebdae5" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-ae96cbf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ae96cbf" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e4ad795" data-id="e4ad795" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f03e66e elementor-widget__width-auto elementor-nav-menu--dropdown-mobile elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="f03e66e" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none"> <ul id="menu-1-f03e66e" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item">Learning Geoscience</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> <span class="elementor-screen-only">Menu</span> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-f03e66e" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item" tabindex="-1">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item" tabindex="-1">Learning Geoscience</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-e578b89 elementor-align-right elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="e578b89" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://eage.eventsair.com/eage-membership-module/sso" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">My EAGE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-407aca5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="407aca5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <nav class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e03fa9e" data-id="e03fa9e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0d0b11d elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon" data-id="0d0b11d" data-element_type="widget" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <a class="elementor-icon" href="https://eage.org/"> <i aria-hidden="true" class="fas fa-home"></i> </a> </div> </div> </div> <div class="elementor-element elementor-element-bcaf978 elementor-hidden-phone elementor-widget__width-auto elementor-widget elementor-widget-wp-widget-nav_menu" data-id="bcaf978" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-eage-main-menu-desktop-container"><ul id="menu-eage-main-menu-desktop" class="menu"><li id="menu-item-1298" class="pop_abouteage menu-item menu-item-type-custom menu-item-object-custom menu-item-1298"><a href="#">About EAGE</a></li> <li id="menu-item-1300" class="pop_events menu-item menu-item-type-custom menu-item-object-custom menu-item-1300"><a href="#">Events</a></li> <li id="menu-item-1301" class="pop_membership menu-item menu-item-type-custom menu-item-object-custom menu-item-1301"><a href="#">Membership</a></li> <li id="menu-item-1302" class="pop_communities menu-item menu-item-type-custom menu-item-object-custom menu-item-1302"><a href="#">Communities</a></li> <li id="menu-item-1303" class="pop_students menu-item menu-item-type-custom menu-item-object-custom menu-item-1303"><a href="#">Students</a></li> <li id="menu-item-1304" class="pop_education menu-item menu-item-type-custom menu-item-object-custom menu-item-1304"><a href="#">Education</a></li> <li id="menu-item-1305" class="pop_media2 menu-item menu-item-type-custom menu-item-object-custom menu-item-1305"><a href="#">Media</a></li> </ul></div> </div> </div> </div> </nav> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1182b96" data-id="1182b96" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d444e1c menu-search elementor-widget elementor-widget-shortcode" data-id="d444e1c" data-element_type="widget" data-widget_type="shortcode.default"> <div class="elementor-widget-container"> <div class="elementor-shortcode"><form class="is-search-form is-form-style is-form-style-3 is-form-id-6048 " action="https://eage.org/" method="get" role="search" ><label for="is-search-input-6048"><span class="is-screen-reader-text">Search for:</span><input type="search" id="is-search-input-6048" name="s" value="" class="is-search-input" placeholder="Search here..." autocomplete=off /></label><button type="submit" class="is-search-submit"><span class="is-screen-reader-text">Search Button</span><span class="is-search-icon"><svg focusable="false" aria-label="Search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24px"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></span></button><input type="hidden" name="id" value="6048" /></form></div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-99d6739 elementor-hidden-phone header_container elementor-hidden-desktop elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="99d6739" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d041004" data-id="d041004" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-60d1405 elementor-absolute elementor-widget elementor-widget-image" data-id="60d1405" data-element_type="widget" data-settings="{&quot;_position&quot;:&quot;absolute&quot;}" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="https://www.eage.org/"> <img width="360" height="280" src="https://eage.org/wp-content/uploads/2020/03/eagelogo.png" class="attachment-full size-full wp-image-2743" alt="Logo EAGE" srcset="https://eage.org/wp-content/uploads/2020/03/eagelogo.png 360w, https://eage.org/wp-content/uploads/2020/03/eagelogo.png?resize=768,597 768w" sizes="(max-width: 360px) 100vw, 360px" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-e77b52a" data-id="e77b52a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d9d1a2b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d9d1a2b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-0f7c7e6" data-id="0f7c7e6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e111f86 elementor-widget__width-auto elementor-nav-menu--dropdown-mobile elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="e111f86" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none"> <ul id="menu-1-e111f86" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item">Learning Geoscience</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> <span class="elementor-screen-only">Menu</span> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-e111f86" class="elementor-nav-menu"><li class="hide_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-151"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Corporate Relations</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-152"><a href="https://www.firstbreak.org/" class="elementor-item" tabindex="-1">First Break</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-153"><a href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1">EarthDoc</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14370"><a href="https://learninggeoscience.org/" class="elementor-item" tabindex="-1">Learning Geoscience</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-dfd2106 elementor-align-right elementor-widget__width-auto elementor-widget elementor-widget-button" data-id="dfd2106" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-grow" href="https://eage.eventsair.com/eage-membership-module/sso" target="_blank"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">My EAGE</span> </span> </a> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-96e68d5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="96e68d5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3ac397d" data-id="3ac397d" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <nav class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-75f8507" data-id="75f8507" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3316de1 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="3316de1" data-element_type="widget" data-settings="{&quot;skin&quot;:&quot;classic&quot;}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://eage.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-3316de1">Search</label> <input id="elementor-search-form-3316de1" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> <span class="elementor-screen-only">Search</span> </button> </div> </form> </search> </div> </div> </div> </nav> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8759959" data-id="8759959" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-da90082 tablet_overlay_menu elementor-widget elementor-widget-image" data-id="da90082" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_open.svg?w=150&#038;h=150&#038;crop=1" title="Mobile_MenuIcon_open" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-319dd42 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="319dd42" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-bd6b030" data-id="bd6b030" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b4fba76 elementor-widget elementor-widget-spacer" data-id="b4fba76" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4574d12 elementor-section-full_width mobile_menu_container elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="4574d12" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1d1e04a" data-id="1d1e04a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d014211 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="d014211" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d804c22" data-id="d804c22" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a8f0ca8 elementor-widget elementor-widget-image" data-id="a8f0ca8" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="http://www.eage.org"> <img src="https://eage.org/wp-content/uploads/2020/05/EAGE_logo_header.svg?w=800" title="EAGE_logo" alt="" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-fceaa7e" data-id="fceaa7e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-23ab4b2 pop_mobile elementor-widget elementor-widget-image" data-id="23ab4b2" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_open.svg?w=150&#038;h=150&#038;crop=1" title="Mobile_MenuIcon_open" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-00edc04 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="00edc04" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-f6683e1" data-id="f6683e1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-13410e6 mobile_top_menu elementor-widget elementor-widget-text-editor" data-id="13410e6" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center;"><a href="https://www.firstbreak.org/">First Break</a>           <a href="https://www.earthdoc.org/">EarthDoc</a>           <a href="https://learninggeoscience.org/">Learning Geoscience</a></p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="single" data-elementor-id="4942" class="elementor elementor-4942 elementor-location-single post-4945 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-eage-news-archive" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-ea49898 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ea49898" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3f2c7958" data-id="3f2c7958" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1c2711c4 elementor-widget elementor-widget-template" data-id="1c2711c4" data-element_type="widget" data-widget_type="template.default"> <div class="elementor-widget-container"> <div class="elementor-template"> <style id="elementor-post-dynamic-3293">.elementor-3293 .elementor-element.elementor-element-c608feb:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-c608feb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}.elementor-3293 .elementor-element.elementor-element-57216984:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-57216984 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}@media(max-width:767px){.elementor-3293 .elementor-element.elementor-element-7845140:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-7845140 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}.elementor-3293 .elementor-element.elementor-element-75cdfcea:not(.elementor-motion-effects-element-type-background), .elementor-3293 .elementor-element.elementor-element-75cdfcea > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg");}}</style> <div data-elementor-type="single" data-elementor-id="3293" class="elementor elementor-3293 elementor-location-single post-4945 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-eage-news-archive" data-elementor-post-type="elementor_library"> <div class="elementor-element elementor-element-c608feb elementor-hidden-mobile e-flex e-con-boxed e-con e-parent" data-id="c608feb" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="e-con-inner"> <div class="elementor-element elementor-element-49e5527 e-flex e-con-boxed e-con e-child" data-id="49e5527" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-3c2d0b6 e-con-full e-flex e-con e-child" data-id="3c2d0b6" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-3423288 elementor-widget elementor-widget-heading" data-id="3423288" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">EAGE</h1> </div> </div> <div class="elementor-element elementor-element-26e1525 elementor-widget elementor-widget-heading" data-id="26e1525" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">News Archive</h2> </div> </div> <div class="elementor-element elementor-element-5f010a9 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5f010a9" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> <div class="elementor-element elementor-element-ba8a818 e-con-full e-flex e-con e-child" data-id="ba8a818" data-element_type="container"> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-f120ebb e-con-full elementor-hidden-mobile e-flex e-con e-parent" data-id="f120ebb" data-element_type="container" data-settings="{&quot;position&quot;:&quot;absolute&quot;}"> <div class="elementor-element elementor-element-4d17865 e-con-full e-flex e-con e-child" data-id="4d17865" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> </div> <div class="elementor-element elementor-element-e917d2a e-con-full e-flex e-con e-child" data-id="e917d2a" data-element_type="container"> </div> </div> <div class="elementor-element elementor-element-7845140 e-con-full elementor-hidden-desktop elementor-hidden-tablet section-page-title-mobile e-flex e-con e-parent" data-id="7845140" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-2041f66 e-con-full e-flex e-con e-child" data-id="2041f66" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-element elementor-element-644af27 elementor-widget elementor-widget-heading" data-id="644af27" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">EAGE</h1> </div> </div> <div class="elementor-element elementor-element-227dc0c elementor-widget elementor-widget-heading" data-id="227dc0c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">News Archive</h2> </div> </div> <div class="elementor-element elementor-element-1b0c1ab elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="1b0c1ab" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <section class="elementor-section elementor-top-section elementor-element elementor-element-57216984 elementor-hidden-mobile elementor-section-full_width section-page-title-desktop elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="57216984" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-223d1cd9" data-id="223d1cd9" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-1031b76b PageTitle_InnerSection_1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1031b76b" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5aedab8c" data-id="5aedab8c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2793141d elementor-widget elementor-widget-heading" data-id="2793141d" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">EAGE</h1> </div> </div> <div class="elementor-element elementor-element-1d1391d6 elementor-widget elementor-widget-heading" data-id="1d1391d6" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">News Archive</h2> </div> </div> <div class="elementor-element elementor-element-610c0e4a elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="610c0e4a" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-72cbc049 elementor-hidden-phone" data-id="72cbc049" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-41a10f8a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="41a10f8a" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-66 elementor-inner-column elementor-element elementor-element-efc45f4" data-id="efc45f4" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-51662483 elementor-widget elementor-widget-spacer" data-id="51662483" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-7148767b elementor-hidden-phone" data-id="7148767b" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-f86f455 elementor-hidden-mobile elementor-section-full_width section-page-title-desktop elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="f86f455" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1c76ff6" data-id="1c76ff6" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-ba3c70b PageTitle_InnerSection_1 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ba3c70b" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5e406bf" data-id="5e406bf" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-7a5ad6e elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7a5ad6e" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-582d055 elementor-hidden-phone" data-id="582d055" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-75cdfcea elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet section-page-title-mobile elementor-hidden-mobile elementor-section-height-default elementor-section-height-default" data-id="75cdfcea" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-755066d6" data-id="755066d6" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <div class="elementor-element elementor-element-1c6edbed elementor-widget elementor-widget-heading" data-id="1c6edbed" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">EAGE</h1> </div> </div> <div class="elementor-element elementor-element-20a84402 elementor-widget elementor-widget-heading" data-id="20a84402" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">News Archive</h2> </div> </div> <div class="elementor-element elementor-element-5a801f02 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="5a801f02" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-677efe95 elementor-section-full_width elementor-section-height-min-height section-interesting-topic elementor-hidden-phone elementor-section-height-default elementor-section-items-middle" data-id="677efe95" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4cd99062" data-id="4cd99062" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-262f748f section-content elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="262f748f" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7e674dab" data-id="7e674dab" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-837262b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="837262b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1de875c" data-id="1de875c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0a60134 elementor-widget elementor-widget-text-editor" data-id="0a60134" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>News search:</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7fefe8e" data-id="7fefe8e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1ee2c90 elementor-widget elementor-widget-shortcode" data-id="1ee2c90" data-element_type="widget" data-widget_type="shortcode.default"> <div class="elementor-widget-container"> <div class="elementor-shortcode"><form class="is-search-form is-form-style is-form-style-3 is-form-id-7191 " action="https://eage.org/" method="get" role="search" ><label for="is-search-input-7191"><span class="is-screen-reader-text">Search for:</span><input type="search" id="is-search-input-7191" name="s" value="" class="is-search-input" placeholder="Search here..." autocomplete=off /></label><button type="submit" class="is-search-submit"><span class="is-screen-reader-text">Search Button</span><span class="is-search-icon"><svg focusable="false" aria-label="Search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24px"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></span></button><input type="hidden" name="id" value="7191" /><input type="hidden" name="post_type" value="eage_news" /></form></div> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-611b1ad elementor-grid-3 elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-card-shadow-yes elementor-posts__hover-gradient elementor-widget elementor-widget-posts" data-id="611b1ad" data-element_type="widget" data-settings="{&quot;cards_masonry&quot;:&quot;yes&quot;,&quot;cards_columns&quot;:&quot;3&quot;,&quot;cards_columns_tablet&quot;:&quot;2&quot;,&quot;cards_columns_mobile&quot;:&quot;1&quot;,&quot;cards_row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:35,&quot;sizes&quot;:[]},&quot;cards_row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;cards_row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}" data-widget_type="posts.cards"> <div class="elementor-widget-container"> <div class="elementor-posts-container elementor-posts elementor-posts--skin-cards elementor-grid"> <article class="elementor-post elementor-grid-item post-25898 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/best-paper-awards-2024/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/Awards_bg.jpg?w=300" title="Awards_bg" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/best-paper-awards-2024/" > Best Paper Awards 2024 </a> </h3> <div class="elementor-post__excerpt"> <p>We are pleased to announce the recipients of the prestigious EAGE Best Paper Awards for 2024. These recognitions are presented annually to honor the most</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/best-paper-awards-2024/" aria-label="Read more about Best Paper Awards 2024" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 18, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-25717 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-statement-on-ai-ldc-minusco2/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/05/AdobeStock_85273655.jpeg?w=300" title="Teacher with group of students working on digital tablet" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-statement-on-ai-ldc-minusco2/" > EAGE statement on AI generated content for papers &#8212; Duplicate </a> </h3> <div class="elementor-post__excerpt"> <p>1. The EAGE Student Affairs Committee acknowledges that free Generative AI (GenAI) tools (such as ChatGPT, Copilot, Gemini, and DALL∙E) that create text and/or images</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-statement-on-ai-ldc-minusco2/" aria-label="Read more about EAGE statement on AI generated content for papers &#8212; Duplicate" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 22, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-25611 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/renew-your-membership-2025/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/09/stock_et2.png?w=300" title="energy-transition" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/renew-your-membership-2025/" > Renew your commitment to innovation in 2025 </a> </h3> <div class="elementor-post__excerpt"> <p>As we look toward 2025, it’s time to renew your EAGE membership and secure all the benefits that will keep you at the forefront in</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/renew-your-membership-2025/" aria-label="Read more about Renew your commitment to innovation in 2025" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 26, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-25000 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-featured"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/petroleum-geoscience-call-for-papers-to-further-understanding-the-north-africa-and-eastern-mediterranean-energy-hubs/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/09/geoscience-energy-in-North-Africa-and-Eastern-Mediterranean.jpg?w=300" title="Pumice mines, Dodecanese islands, Greece." alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/petroleum-geoscience-call-for-papers-to-further-understanding-the-north-africa-and-eastern-mediterranean-energy-hubs/" > Petroleum Geoscience call for papers to further understanding the North Africa and Eastern Mediterranean energy hubs </a> </h3> <div class="elementor-post__excerpt"> <p>North Africa and the Eastern Mediterranean area is poised to be a critical global energy hub in the 21st century. Unlocking oil and gas resources,</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/petroleum-geoscience-call-for-papers-to-further-understanding-the-north-africa-and-eastern-mediterranean-energy-hubs/" aria-label="Read more about Petroleum Geoscience call for papers to further understanding the North Africa and Eastern Mediterranean energy hubs" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 12, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-25001 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-featured"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/geoenergy-call-for-papers-on-minerals-energy-in-africa/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/09/mineral-in-a-cave-in-Africa.jpg?w=300" title="Stalactites and stalagmites in a Kuza cave at Zanzibar, Tanzania. Natural pool with crystal clear water" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/geoenergy-call-for-papers-on-minerals-energy-in-africa/" > Geoenergy call for papers on minerals-energy in Africa </a> </h3> <div class="elementor-post__excerpt"> <p>Geoenergy is calling for a range of articles that recognise and demonstrate the knowledge base relating to critical and strategic raw materials for the energy</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/geoenergy-call-for-papers-on-minerals-energy-in-africa/" aria-label="Read more about Geoenergy call for papers on minerals-energy in Africa" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 12, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-24714 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-featured"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/geoenergy-call-for-papers-from-all-aspects-of-geoscience-related-to-ccs-in-the-apac-region/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/08/CCS.jpg?w=300" title="CCS" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/geoenergy-call-for-papers-from-all-aspects-of-geoscience-related-to-ccs-in-the-apac-region/" > Geoenergy call for papers from all aspects of geoscience related to CCS in the APAC region </a> </h3> <div class="elementor-post__excerpt"> <p>Momentum is building in the Asia–Pacific (APAC) region for increased decarbonisation spurred by government policy development and cross-border industrial partnerships. Australia, Indonesia and Malaysia for</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/geoenergy-call-for-papers-from-all-aspects-of-geoscience-related-to-ccs-in-the-apac-region/" aria-label="Read more about Geoenergy call for papers from all aspects of geoscience related to CCS in the APAC region" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> August 6, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-23609 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-homepage-news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/geoenergy-launches-themed-issue-for-early-career-researchers/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/05/Enrich-research-in-the-diverse-field-of-geoenergy-led-by-early-career-scientists.jpg?w=300" title="Enrich-research-in-the-diverse-field-of-geoenergy-led-by-early-career-scientists" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/geoenergy-launches-themed-issue-for-early-career-researchers/" > Geoenergy launches themed issue for early career researchers </a> </h3> <div class="elementor-post__excerpt"> <p>Geoenergy is inviting contributions to a thematic collection showcasing the breadth of innovative research in the field of geoenergy by emerging leaders in the field. Scope</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/geoenergy-launches-themed-issue-for-early-career-researchers/" aria-label="Read more about Geoenergy launches themed issue for early career researchers" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 26, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-24197 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/masterclass/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/11/TransitionHub_Environmental_bg.jpg?w=300" title="TransitionHub_Environmental_bg.jpg" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/masterclass/" > Join EAGE&#8217;s CO2 Storage Masterclass 2024 </a> </h3> <div class="elementor-post__excerpt"> <p>This Autumn we are gathering four leading experts in London to offer you a comprehensive programme of short courses to advance your skills on geological</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/masterclass/" aria-label="Read more about Join EAGE&#8217;s CO2 Storage Masterclass 2024" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 21, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-23839 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/membership-fees-2024-announcement/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/LaunchWebsite.jpg?w=300" title="LaunchWebsite" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/membership-fees-2024-announcement/" > Membership Fees 2024 Announcement </a> </h3> <div class="elementor-post__excerpt"> <p>As we chart a sustainable future for the Association and endeavour to continue offering members the same level of services, benefits and support, it has</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/membership-fees-2024-announcement/" aria-label="Read more about Membership Fees 2024 Announcement" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 17, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-23219 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/make-perth-your-august-events-destination/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/04/Perth-skyline.jpg?w=300" title="Perth-skyline" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/make-perth-your-august-events-destination/" > Make Perth your August events destination </a> </h3> <div class="elementor-post__excerpt"> <p>If you are passionate about carbon capture and storage, fiber optic sensing for energy applications, and integrated site characterization for offshore wind in Asia Pacific,</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/make-perth-your-august-events-destination/" aria-label="Read more about Make Perth your August events destination" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 6, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-22958 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-local-chapter-czech-republic-announces-annual-competition-for-students-2023-2024/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/10/Award_Polygons_Green.png?w=300" title="Award_Polygons_Green" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-local-chapter-czech-republic-announces-annual-competition-for-students-2023-2024/" > EAGE Local Chapter Czech Republic announces annual competition for students 2023/2024 </a> </h3> <div class="elementor-post__excerpt"> <p>The 12th Vlastislav Červený Student Prize is brought to EAGE by our Local Chapter Czech Republic, in collaboration with INSET, Seismik s.r.o., G Impuls Praha</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-local-chapter-czech-republic-announces-annual-competition-for-students-2023-2024/" aria-label="Read more about EAGE Local Chapter Czech Republic announces annual competition for students 2023/2024" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> April 12, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-22557 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-1-2024/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-1-2024/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #1/2024 </a> </h3> <div class="elementor-post__excerpt"> <p>As a group of EAGE members and volunteers, the EAGE A.I. Committee is dedicated to helping you navigate the digital world and finding the bits</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-1-2024/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #1/2024" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 27, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-22449 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/petroleum-geoscience-call-for-editors/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/03/women-geoscientist-editor.jpeg?w=300" title="women-geoscientist-editor" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/petroleum-geoscience-call-for-editors/" > Petroleum Geoscience: Call for Editors </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE, in collaboration with the Geological Society of London (GSL) invite applications for Editorial Board Member positions for our journal Petroleum Geoscience. Appointments would be for an</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/petroleum-geoscience-call-for-editors/" aria-label="Read more about Petroleum Geoscience: Call for Editors" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 1, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-22319 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/invitation-agmm-2024/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/05/AGMM.jpg?w=300" title="AGMM" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/invitation-agmm-2024/" > Invitation to join the 2024 Annual General Meeting for Members </a> </h3> <div class="elementor-post__excerpt"> <p>At the Annual General Meeting for Members (AGMM), convened every year during our Annual Conference, the Board reports about previous year&#8217;s activities and discusses topics</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/invitation-agmm-2024/" aria-label="Read more about Invitation to join the 2024 Annual General Meeting for Members" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 21, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-22362 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-and-sut-to-collaborate-on-offshore-renewable-energy-workshop-series/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/02/windmill.jpg?w=300" title="windmill" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-and-sut-to-collaborate-on-offshore-renewable-energy-workshop-series/" > EAGE and SUT to collaborate on offshore renewable energy workshop series </a> </h3> <div class="elementor-post__excerpt"> <p>Geological and geophysical expertise has become increasingly indispensable in the site investigation phase of offshore wind farm development, owing to the intricate geological formations involved.</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-and-sut-to-collaborate-on-offshore-renewable-energy-workshop-series/" aria-label="Read more about EAGE and SUT to collaborate on offshore renewable energy workshop series" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 16, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-22350 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-statement-on-ai-generated-content-for-papers/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/02/AI-automation-concept.jpeg?w=300" title="AI automation concept" alt="AI automation concept" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-statement-on-ai-generated-content-for-papers/" > EAGE statement on AI generated content for papers </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE acknowledges the use of generative AI tools, like ChatGPT, Bard, etc., in research publications, books, articles and abstracts. However, some concerns have been raised</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-statement-on-ai-generated-content-for-papers/" aria-label="Read more about EAGE statement on AI generated content for papers" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 13, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-22294 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-geophysical-prospecting tag-journal tag-publications tag-special-issue"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/geophysical-prospecting-special-issue-targets-mineral-exploration-modelling-and-interpretation/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/02/AI-assited-seismic-data-analysis.jpeg?w=300" title="AI Assisted Seismic Data Analysis" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/geophysical-prospecting-special-issue-targets-mineral-exploration-modelling-and-interpretation/" > Geophysical Prospecting special issue targets mineral exploration modelling and interpretation </a> </h3> <div class="elementor-post__excerpt"> <p>A Call for Papers has been announced for an upcoming Geophysical Prospecting (GP) Special Issue on ‘Advances in Geophysical Modelling and Interpretation for Mineral Exploration’. Contributions</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/geophysical-prospecting-special-issue-targets-mineral-exploration-modelling-and-interpretation/" aria-label="Read more about Geophysical Prospecting special issue targets mineral exploration modelling and interpretation" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 9, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-22040 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-geoenergy tag-publications"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/geoenergy-celebrates-its-first-year/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2024/01/Geoenergy-image.jpg?w=300" title="Geoenergy-image" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/geoenergy-celebrates-its-first-year/" > Geoenergy celebrates its first year </a> </h3> <div class="elementor-post__excerpt"> <p>In its first year of publication, the new EAGE/Geological Society journal Geoenergy has exceeded all our targets for submission and published contributions. Attracting a wide</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/geoenergy-celebrates-its-first-year/" aria-label="Read more about Geoenergy celebrates its first year" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 9, 2024 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-21764 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/coaching-programme/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/12/AdobeStock_512010105.jpeg?w=300" title="Net Zero and Carbon Neutral Concepts Net Zero Emissions Goals We" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/coaching-programme/" > EAGE Coaching Programme </a> </h3> <div class="elementor-post__excerpt"> <p>Are you a geoscientist looking to pivot your career, improve self mastery and explore new opportunities? Look no further! Whether you are a young or</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/coaching-programme/" aria-label="Read more about EAGE Coaching Programme" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> December 21, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19633 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/new-book-released-pre-cambrian-to-paleozoic-petroleum-systems-of-the-arabian-plate/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/12/rock-formation-Arabian.jpg?w=300" title="rock-formation-Arabian" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/new-book-released-pre-cambrian-to-paleozoic-petroleum-systems-of-the-arabian-plate/" > New Book Released: Pre-Cambrian to Paleozoic Petroleum Systems of the Arabian Plate </a> </h3> <div class="elementor-post__excerpt"> <p>We are excited to announce the release of EAGE’s latest book entitled Pre-Cambrian to Paleozoic Petroleum Systems of the Arabian Plate, available now on EarthDoc.</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/new-book-released-pre-cambrian-to-paleozoic-petroleum-systems-of-the-arabian-plate/" aria-label="Read more about New Book Released: Pre-Cambrian to Paleozoic Petroleum Systems of the Arabian Plate" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> December 20, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-21700 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/sustainable-young-professional-award/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/11/TransitionHub_Environmental_bg.jpg?w=300" title="TransitionHub_Environmental_bg.jpg" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/sustainable-young-professional-award/" > EAGE Sustainable Energy Young Professionals Award &#8220;Marie Tharp&#8221; </a> </h3> <div class="elementor-post__excerpt"> <p>In 2023, the geoscience and engineering community has endeavored to advance the energy transition more than ever. To anticipate further transformations and the need to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/sustainable-young-professional-award/" aria-label="Read more about EAGE Sustainable Energy Young Professionals Award &#8220;Marie Tharp&#8221;" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> December 14, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-21076 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-communities-set-the-bar-high-in-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/10/DSC_0716-1.jpg?w=300" title="DSC_0716" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-communities-set-the-bar-high-in-2023/" > EAGE Communities Set the Bar High in 2023 </a> </h3> <div class="elementor-post__excerpt"> <p>With a New Year full of opportunities already calling for us, let us take a moment to look back at the success stories of our</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-communities-set-the-bar-high-in-2023/" aria-label="Read more about EAGE Communities Set the Bar High in 2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> December 14, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16212 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-basin-research tag-journal tag-publications"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/basin-research-call-for-applications-to-serve-as-associate-editor/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/05/an-editor-making-notes.jpeg?w=300" title="an-editor-making-notes" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/basin-research-call-for-applications-to-serve-as-associate-editor/" > Basin Research &#8211; Call for Applications to Serve as Associate Editor </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE, in collaboration with the International Association of Sedimentologists (IAS) and publisher John Wiley &amp; Sons, invite applications for 3 new Associate Editors for our</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/basin-research-call-for-applications-to-serve-as-associate-editor/" aria-label="Read more about Basin Research &#8211; Call for Applications to Serve as Associate Editor" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> December 12, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-21251 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-local-chapter-czech-republic-announces-winners-of-annual-competition-for-students/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/04/BG-promotionFullWidthParalax.jpg?w=300" title="BG-promotionFullWidthParalax" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-local-chapter-czech-republic-announces-winners-of-annual-competition-for-students/" > EAGE Local Chapter Czech Republic announces winners of annual competition for students </a> </h3> <div class="elementor-post__excerpt"> <p>The Vlastislav Červený Student Prize is an initiative of our Local Chapter Czech Republic as a recognition of excellence in two categories: Best Master&#8217;s and</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-local-chapter-czech-republic-announces-winners-of-annual-competition-for-students/" aria-label="Read more about EAGE Local Chapter Czech Republic announces winners of annual competition for students" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 22, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-21227 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/inspiring-through-partnership-best-chapters-unite-for-collaborative-end-of-year-event/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/11/AdobeStock_654665720.jpeg?w=300" title="Critical minerals" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/inspiring-through-partnership-best-chapters-unite-for-collaborative-end-of-year-event/" > Inspiring Through Partnership: Best Chapters Unite for Collaborative End-of-Year Event </a> </h3> <div class="elementor-post__excerpt"> <p>If you have been following this year’s race, you know selection was tough but two EAGE communities distinguished themselves for their outstanding work: Local Chapter</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/inspiring-through-partnership-best-chapters-unite-for-collaborative-end-of-year-event/" aria-label="Read more about Inspiring Through Partnership: Best Chapters Unite for Collaborative End-of-Year Event" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 21, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-21137 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-near-surface-geophysics-special-issue-on-multi-scale-hydrogeophysics-for-water-sustainability/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/11/world-in-a-waterdrop.jpg?w=300" title="world-in-a-waterdrop" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-near-surface-geophysics-special-issue-on-multi-scale-hydrogeophysics-for-water-sustainability/" > Papers invited for Near Surface Geophysics special issue on multi-scale hydrogeophysics for water sustainability </a> </h3> <div class="elementor-post__excerpt"> <p>Special issue: Multi-scale Hydrogeophysics for Water Sustainability Submission deadline: 31 August 2024 Our planet is in the throes of extreme climate variability. Inextricable linkages of</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-near-surface-geophysics-special-issue-on-multi-scale-hydrogeophysics-for-water-sustainability/" aria-label="Read more about Papers invited for Near Surface Geophysics special issue on multi-scale hydrogeophysics for water sustainability" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 7, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-20967 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/renew-membership-2024/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/10/Membership-Unlock-Opportunities-2024.jpg?w=300" title="Membership-Unlock-Opportunities-2024" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/renew-membership-2024/" > Renew your membership and unlock a ton of opportunities! </a> </h3> <div class="elementor-post__excerpt"> <p>This year has been filled with groundbreaking events that allowed us to consistently advance in our mission to share geology and engineering around the world</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/renew-membership-2024/" aria-label="Read more about Renew your membership and unlock a ton of opportunities!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 9, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-20888 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/wur-nature-challenge/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/10/Screenshot-2023-10-04-at-10.36.14-AM.png?w=276" title="Screenshot 2023-10-04 at 10.36.14 AM" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/wur-nature-challenge/" > Exploring Nature&#8217;s Solutions: The WUR Nature-based Future Challenge </a> </h3> <div class="elementor-post__excerpt"> <p>In a world increasingly challenged by climate change and biodiversity loss, the search for innovative solutions has never been more critical. Wageningen University &amp; Research</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/wur-nature-challenge/" aria-label="Read more about Exploring Nature&#8217;s Solutions: The WUR Nature-based Future Challenge" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 4, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-20932 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/disasters-in-morocco-and-libya/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/10/featured-image_Morocco-and-Libya.png?w=300" title="Morocco-and-Libya" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/disasters-in-morocco-and-libya/" > Disasters in Morocco and Libya </a> </h3> <div class="elementor-post__excerpt"> <p>The hearts and thoughts of our EAGE community go out to the families and loved ones affected by the recent devastating earthquakes in Morocco and</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/disasters-in-morocco-and-libya/" aria-label="Read more about Disasters in Morocco and Libya" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 25, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-20577 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-on-seismic-tomography-and-imaging/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/08/Land_base_oil_exploration_with_seismic_method.png?w=300" title="Land_base_oil_exploration_with_seismic_method" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-on-seismic-tomography-and-imaging/" > Papers invited for Geophysical Prospecting Special Issue on Seismic Tomography and Imaging </a> </h3> <div class="elementor-post__excerpt"> <p>This special issue invites paper contributions that focus on improving seismic tomography and imaging with both physics- and data-driven approaches and their applications to derive</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-on-seismic-tomography-and-imaging/" aria-label="Read more about Papers invited for Geophysical Prospecting Special Issue on Seismic Tomography and Imaging" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> August 22, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-20345 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/get-conference-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/05/GET2021-background.png?w=300" title="GET2021 background" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/get-conference-2023/" > GET2023: Your Impact in Transforming the Future of Energy </a> </h3> <div class="elementor-post__excerpt"> <p>Join us in Paris from November 14-17 for GET2023. This event brings together industry leaders, experts, and decision-makers to propel the transition to a sustainable</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/get-conference-2023/" aria-label="Read more about GET2023: Your Impact in Transforming the Future of Energy" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 17, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-20334 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/affiliations-renewal-survey/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/07/AdobeStock_578604774.jpeg?w=300" title="Businessman using a laptop and Taking an assessment, questionnai" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/affiliations-renewal-survey/" > Stay Engaged with EAGE by Updating Your Affiliations! </a> </h3> <div class="elementor-post__excerpt"> <p>Connecting with professionals who share similar interests is key in promoting innovation and technical progress in your field and, as an EAGE member, you can</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/affiliations-renewal-survey/" aria-label="Read more about Stay Engaged with EAGE by Updating Your Affiliations!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 17, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-20239 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/skills-energy-transition-survey/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/07/da668aa3-b75c-466b-9d30-1774fe8b29a0.png?w=300" title="da668aa3-b75c-466b-9d30-1774fe8b29a0" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/skills-energy-transition-survey/" > Help Us Map Technical Skills for the Energy Transition </a> </h3> <div class="elementor-post__excerpt"> <p>In collaboration with the EAGE Decarbonization and Energy Transition Community, the Education Committee works on mapping skills needed in energy transition. The aim is to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/skills-energy-transition-survey/" aria-label="Read more about Help Us Map Technical Skills for the Energy Transition" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 7, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-20196 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-6-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-6-2023/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #6/2023 </a> </h3> <div class="elementor-post__excerpt"> <p>As a group of EAGE members and volunteers, the EAGE A.I. Committee is dedicated to helping you navigate the digital world and finding the bits</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-6-2023/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #6/2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 7, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19899 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-media_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-board-ballot-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/LaunchWebsite.jpg?w=300" title="LaunchWebsite" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-board-ballot-2023/" > EAGE Ballot 2023 </a> </h3> <div class="elementor-post__excerpt"> <p>Congratulations to the new members of the EAGE Board introduced on 7 June during the AGMM in the 84th EAGE Annual Conference &amp; Exhibition in</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-board-ballot-2023/" aria-label="Read more about EAGE Ballot 2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 12, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19891 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-geoenergy-thematic-collection-on-sustainable-geological-disposal-and-containment-of-radioactive-waste/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/04/Template_RevSlider_BG.jpg?w=300" title="Template_RevSlider_BG" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-geoenergy-thematic-collection-on-sustainable-geological-disposal-and-containment-of-radioactive-waste/" > Papers invited for Geoenergy thematic collection on Sustainable geological disposal and containment of radioactive waste </a> </h3> <div class="elementor-post__excerpt"> <p>Collection Editors Simon Norris (Nuclear Waste Services, UK) Andrew Cooke (Nuclear Waste Services, UK) Scope Geoenergy is calling for papers to be submitted to the thematic collection</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-geoenergy-thematic-collection-on-sustainable-geological-disposal-and-containment-of-radioactive-waste/" aria-label="Read more about Papers invited for Geoenergy thematic collection on Sustainable geological disposal and containment of radioactive waste" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 9, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19840 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/early-careers-news/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/05/AdobeStock_126228815.jpeg?w=300" title="Diverse group of students studying at library" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/early-careers-news/" > Making Way for Early Careers! </a> </h3> <div class="elementor-post__excerpt"> <p>At EAGE we know that, as the energy sector undergoes critical changes and the pace of technological innovation accelerates, it is more important than ever</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/early-careers-news/" aria-label="Read more about Making Way for Early Careers!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 3, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19837 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-5-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-5-2023/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #5/2023 </a> </h3> <div class="elementor-post__excerpt"> <p>As a group of EAGE members and volunteers, the EAGE A.I. Committee is dedicated to helping you navigate the digital world and finding the bits</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-5-2023/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #5/2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 30, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19684 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-4-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-4-2023/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #4/2023 </a> </h3> <div class="elementor-post__excerpt"> <p>As a group of EAGE members and volunteers, the EAGE A.I. Committee is dedicated to helping you navigate the digital world and finding the bits</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-4-2023/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #4/2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 5, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19480 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/participate-in-the-eage-ballot-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/04/AdobeStock_445420034.jpeg?w=300" title="You learn through asking" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/participate-in-the-eage-ballot-2023/" > Participate in the EAGE Ballot 2023 </a> </h3> <div class="elementor-post__excerpt"> <p>The annual EAGE Board elections are due to take place, with voting online beginning from 1 May to 1 June 2023. The Board is responsible</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/participate-in-the-eage-ballot-2023/" aria-label="Read more about Participate in the EAGE Ballot 2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> April 14, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19205 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/welcome-back-eage-local-chapter-kuwait/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/10/Award_Polygons_Green.png?w=300" title="Award_Polygons_Green" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/welcome-back-eage-local-chapter-kuwait/" > Welcome back EAGE Local Chapter Kuwait! </a> </h3> <div class="elementor-post__excerpt"> <p>We bring exciting news from our members in Kuwait, with the launch of a new EAGE Local Chapter. The founders invested a lot in cooperation</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/welcome-back-eage-local-chapter-kuwait/" aria-label="Read more about Welcome back EAGE Local Chapter Kuwait!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> April 1, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19313 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-3-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-3-2023/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #3/2023 </a> </h3> <div class="elementor-post__excerpt"> <p>With a successful EAGE Digital behind us, we could not miss our appointment with the EAGE AI Committee. This month we are focusing on subsurface</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-3-2023/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #3/2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 31, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-19210 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/sustainable-energy-one-of-the-three-circles-of-eages-new-structure/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/05/AGMM.jpg?w=300" title="AGMM" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/sustainable-energy-one-of-the-three-circles-of-eages-new-structure/" > Sustainable Energy, one of the three Circles of EAGE’s new structure </a> </h3> <div class="elementor-post__excerpt"> <p>At the Special Members Meeting held on 16 February 2023, EAGE members have passed a proposal from the Board to replace the existing two divisional</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/sustainable-energy-one-of-the-three-circles-of-eages-new-structure/" aria-label="Read more about Sustainable Energy, one of the three Circles of EAGE’s new structure" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 28, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-18433 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/vlastislav-cerveny/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/10/Award_Polygons_Green.png?w=300" title="Award_Polygons_Green" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/vlastislav-cerveny/" > EAGE Local Chapter Czech Republic announces annual competition for students </a> </h3> <div class="elementor-post__excerpt"> <p>The Vlastislav Červený Student Prize is brought to EAGE by our Local Chapter Czech Republic, in collaboration with RWE Gas Storage CZ, Seismik, GImpuls and</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/vlastislav-cerveny/" aria-label="Read more about EAGE Local Chapter Czech Republic announces annual competition for students" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 14, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-18535 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/hydrogeophysics_webinar_march2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/02/shutterstock_1470790745.jpg?w=300" title="Hydrogeophysics community" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/hydrogeophysics_webinar_march2023/" > On the Road to NSG 2023: EAGE Hydrogeophysics Community To Host Webinar </a> </h3> <div class="elementor-post__excerpt"> <p>The EAGE technical community on Hydrogeophysics will run a webinar on 7 March (15:00 &#8211; 16:00 CET) for all members to join. The topic &#8211;</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/hydrogeophysics_webinar_march2023/" aria-label="Read more about On the Road to NSG 2023: EAGE Hydrogeophysics Community To Host Webinar" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 13, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17095 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-rock-physics-contribution-to-the-energy-transition-challenge/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/09/Layers-and-cracks-in-sedimentary-rock-on-cliff-face-1.jpg?w=300" title="Layers-and-cracks-in-sedimentary-rock-on-cliff-face (1)" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-rock-physics-contribution-to-the-energy-transition-challenge/" > Papers invited for Geophysical Prospecting special issue: Rock Physics contribution to the Energy Transition Challenge </a> </h3> <div class="elementor-post__excerpt"> <p>Special Issue: Rock Physics contribution to the Energy Transition Challenge This Special Issue invites contributions presenting novel theoretical, experimental and applied progress in measurement of</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-rock-physics-contribution-to-the-energy-transition-challenge/" aria-label="Read more about Papers invited for Geophysical Prospecting special issue: Rock Physics contribution to the Energy Transition Challenge" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 1, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-18427 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-2-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-2-2023/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #2/2023 </a> </h3> <div class="elementor-post__excerpt"> <p>It&#8217;s February and the EAGE A.I. Committee has some updates for you!&nbsp; &nbsp; As a group of EAGE members and volunteers, the EAGE A.I. Committee</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-2-2023/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #2/2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 31, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-18421 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-petroleum-geoscience-and-geoenergy-joint-special-issue-on-digitally-enabled-geoscience-workflows/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2023/01/data_wide.png?w=300" title="data_wide" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-petroleum-geoscience-and-geoenergy-joint-special-issue-on-digitally-enabled-geoscience-workflows/" > Papers invited for Petroleum Geoscience and Geoenergy joint thematic collection on digitally enabled geoscience workflows </a> </h3> <div class="elementor-post__excerpt"> <p>Collection Editors Daniel Austin Earth Science Analytics Paul Wilson SLB (Petroleum Geoscience Editorial Board) Runhai Feng University of Copenhagen (Geoenergy Editorial Board) Scope Petroleum Geoscience and Geoenergy are calling for</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-petroleum-geoscience-and-geoenergy-joint-special-issue-on-digitally-enabled-geoscience-workflows/" aria-label="Read more about Papers invited for Petroleum Geoscience and Geoenergy joint thematic collection on digitally enabled geoscience workflows" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 31, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-18157 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-8-2022-duplicate/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-8-2022-duplicate/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #1/2023 </a> </h3> <div class="elementor-post__excerpt"> <p>Happy 2023! For their first newsletter of the year, the EAGE A.I. Committee is sharing their highlights of 2022 and wishes you a fantastic year</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-8-2022-duplicate/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #1/2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 2, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17981 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/entries-open-for-the-eage-efg-photo-contest-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/12/photo-contest-background-e1672435566393.jpg?w=300" title="photo contest" alt="eage-efg photo contest 2023" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/entries-open-for-the-eage-efg-photo-contest-2023/" > Entries open for the EAGE/EFG Photo Contest 2023! </a> </h3> <div class="elementor-post__excerpt"> <p>It’s time to showcase your talent for capturing extraordinary images reflecting any field of geoscience. Entries are now open for the EAGE/EFG Photo Contest 2023!</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/entries-open-for-the-eage-efg-photo-contest-2023/" aria-label="Read more about Entries open for the EAGE/EFG Photo Contest 2023!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 1, 2023 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-18048 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/invitation-to-a-special-members-meeting-in-february-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/05/AGMM-1.jpg?w=300" title="AGMM" alt="agmm_2022" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/invitation-to-a-special-members-meeting-in-february-2023/" > Invitation to a Special Members Meeting in February 2023 </a> </h3> <div class="elementor-post__excerpt"> <p>On behalf of the Board, I would like make this formal invitation to all members to a Special Members Meeting which will take place online</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/invitation-to-a-special-members-meeting-in-february-2023/" aria-label="Read more about Invitation to a Special Members Meeting in February 2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> December 23, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17763 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-geoenergy tag-publications"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-geoenergy-special-issue-on-the-earth-as-a-thermal-battery/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/11/Thermal_spring_at_Haukadalur_valley-Iceland.jpg?w=300" title="Thermal_spring_at_Haukadalur_valley-Iceland" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-geoenergy-special-issue-on-the-earth-as-a-thermal-battery/" > Papers invited for Geoenergy thematic collection on the Earth as a thermal battery </a> </h3> <div class="elementor-post__excerpt"> <p>Collection Editors Roman Shor (University of Calgary) Rosalind Archer (Griffith University) Sebastian Geiger (Delft University of Technology) Kevin Taylor (University of Manchester) Scope Geoenergy is calling for papers to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-geoenergy-special-issue-on-the-earth-as-a-thermal-battery/" aria-label="Read more about Papers invited for Geoenergy thematic collection on the Earth as a thermal battery" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 6, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17759 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-geoenergy-special-issue-on-hydrogen-as-a-future-energy-source-exploration-storage-monitoring/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/11/hydrogen-e1680303618771.jpeg?w=300" title="hydrogen" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-geoenergy-special-issue-on-hydrogen-as-a-future-energy-source-exploration-storage-monitoring/" > Papers invited for Geoenergy thematic collection on hydrogen as a future energy source – exploration, storage, monitoring </a> </h3> <div class="elementor-post__excerpt"> <p>Collection Editors Niklas Heinemann University of Edinburgh Edward Hough British Geological Survey Dave Dewhurst CSIRO Sebastian Geiger Delft University of Technology Scope Geoenergy is calling for papers to be</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-geoenergy-special-issue-on-hydrogen-as-a-future-energy-source-exploration-storage-monitoring/" aria-label="Read more about Papers invited for Geoenergy thematic collection on hydrogen as a future energy source – exploration, storage, monitoring" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 4, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17742 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-geoenergy-special-issue-on-the-energy-critical-metals-for-a-low-carbon-transition/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/11/copper.jpeg?w=300" title="copper" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-geoenergy-special-issue-on-the-energy-critical-metals-for-a-low-carbon-transition/" > Papers invited for Geoenergy thematic collection on the energy-critical metals for a low carbon transition </a> </h3> <div class="elementor-post__excerpt"> <p>Collection Editors Kathryn Moore University of Exeter (Geoenergy Deputy Editor) Juliana Segura-Salazar The University of Queensland  Katerina Savinova The University of Queensland Scope Geoenergy is calling for papers</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-geoenergy-special-issue-on-the-energy-critical-metals-for-a-low-carbon-transition/" aria-label="Read more about Papers invited for Geoenergy thematic collection on the energy-critical metals for a low carbon transition" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 4, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17744 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-8-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-8-2022/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #8/2022 </a> </h3> <div class="elementor-post__excerpt"> <p>Welcome to the latest newsletter prepared by the EAGE A.I. Committee this year. As a group of EAGE members and volunteers they help you navigate</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-8-2022/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #8/2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 4, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17723 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/its-time-to-secure-your-2023-eage-membership/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/11/BANNER-MEMBERSHIP-WEBPAGE.png?w=300" title="BANNER MEMBERSHIP WEBPAGE" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/its-time-to-secure-your-2023-eage-membership/" > It’s time to secure your 2023 EAGE Membership! </a> </h3> <div class="elementor-post__excerpt"> <p>2022 is coming to an end, this means it’s time to secure your 2023 EAGE membership! Guarantee your uninterrupted access to all the benefits we</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/its-time-to-secure-your-2023-eage-membership/" aria-label="Read more about It’s time to secure your 2023 EAGE Membership!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 1, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17422 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-digital-2023-to-explore-the-enabling-power-of-technological-innovation/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/10/EAGE_News-DIGI23.jpg?w=300" title="EAGE_News-DIGI23" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-digital-2023-to-explore-the-enabling-power-of-technological-innovation/" > EAGE Digital 2023 to explore the enabling power of technological innovation </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE’s flagship digital transformation conference returns in 2023 following a successful second edition in Vienna earlier this year. The Third EAGE Digitalization Conference &amp; Exhibition</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-digital-2023-to-explore-the-enabling-power-of-technological-innovation/" aria-label="Read more about EAGE Digital 2023 to explore the enabling power of technological innovation" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 27, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17607 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-women-in-geoscience-and-engineering-community-and-rwth-to-conduct-a-webinar-on-gender-and-diversity-2/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/women-in-science.jpeg?w=300" title="Professional engineering, worker, woman" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-women-in-geoscience-and-engineering-community-and-rwth-to-conduct-a-webinar-on-gender-and-diversity-2/" > EAGE Women in Geoscience and Engineering Community and RWTH to Conduct a Webinar on Gender and Diversity </a> </h3> <div class="elementor-post__excerpt"> <p>The EAGE Women in Geoscience and Engineering (WGE) community is striving for a gender equal world. One of our goals is to discuss about the</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-women-in-geoscience-and-engineering-community-and-rwth-to-conduct-a-webinar-on-gender-and-diversity-2/" aria-label="Read more about EAGE Women in Geoscience and Engineering Community and RWTH to Conduct a Webinar on Gender and Diversity" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 20, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17553 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-nsg-special-issue-on-ground-penetrating-radar-gpr-numerical-modelling-research-and-practice/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/10/gpr_model_lt-1.jpg?w=300" title="gpr_model_lt" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-nsg-special-issue-on-ground-penetrating-radar-gpr-numerical-modelling-research-and-practice/" > Papers invited for NSG special issue on Ground Penetrating Radar (GPR) numerical modelling research and practice </a> </h3> <div class="elementor-post__excerpt"> <p>Ground Penetrating Radar (GPR) is well established as a key method in the geophysicist’s toolbox for tackling near surface geophysics problems. GPR applications are broad</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-nsg-special-issue-on-ground-penetrating-radar-gpr-numerical-modelling-research-and-practice/" aria-label="Read more about Papers invited for NSG special issue on Ground Penetrating Radar (GPR) numerical modelling research and practice" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 18, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16051 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/get-your-abstract-in-for-the-annual-2023-technical-programme/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/10/Featured_Image-TextSafe-area.jpg?w=300" title="EAGE_News-Vienna23" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/get-your-abstract-in-for-the-annual-2023-technical-programme/" > Get your abstract in for the Annual 2023 Technical Programme </a> </h3> <div class="elementor-post__excerpt"> <p>It’s already time to focus on the conference agenda for the next EAGE Annual being held in Vienna on 5-8 June 2023 and your opportunity</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/get-your-abstract-in-for-the-annual-2023-technical-programme/" aria-label="Read more about Get your abstract in for the Annual 2023 Technical Programme" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 12, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17392 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/meet-geoenergy-our-new-scientific-journal/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/10/shutterstock_168368645-e1666795762200.jpg?w=300" title="geoenergy" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/meet-geoenergy-our-new-scientific-journal/" > Meet Geoenergy, our new scientific journal! </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE and the Geological Society of London are proud to present Geoenergy, our new co-owned journal that will be launched in January 2023. In tandem</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/meet-geoenergy-our-new-scientific-journal/" aria-label="Read more about Meet Geoenergy, our new scientific journal!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 10, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17291 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/geohazards-now-has-its-own-eage-technical-community/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/09/Geohazards-image.jpg?w=300" title="Geohazards image" alt="volcano_geohazards" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/geohazards-now-has-its-own-eage-technical-community/" > Geohazards now has its own EAGE technical community! </a> </h3> <div class="elementor-post__excerpt"> <p>A new special interest technical community is available for you: Geohazards! EAGE is proud to have a network of members interested in promoting the development</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/geohazards-now-has-its-own-eage-technical-community/" aria-label="Read more about Geohazards now has its own EAGE technical community!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 27, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17254 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/join-our-new-technical-community-on-uav/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/09/Captura-de-Pantalla-2022-09-28-a-las-2.08.36-p.m.-e1664392320622.png?w=300" title="UAV image" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/join-our-new-technical-community-on-uav/" > Join our new technical community on UAV! </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE is pleased to present its newest Technical Community on UAV&nbsp;(Uncrewed Aerial Vehicles)! Welcome to a network of members interested in sharing knowledge and developing</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/join-our-new-technical-community-on-uav/" aria-label="Read more about Join our new technical community on UAV!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 27, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17052 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/participate-in-a-new-soft-skills-development-initiative/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/09/H4A9787-e1662407539106.jpg?w=300" title="eage_soft_skills_development_initiative" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/participate-in-a-new-soft-skills-development-initiative/" > Participate in a new soft-skills development initiative </a> </h3> <div class="elementor-post__excerpt"> <p>Our sector is entering a new era where questions around sustainability, low carbon energy, digitalization, as well as job security, have never been so prominent.</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/participate-in-a-new-soft-skills-development-initiative/" aria-label="Read more about Participate in a new soft-skills development initiative" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 5, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-17043 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-bags-donated-to-the-gambia/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/09/gambia-3-e1662400795787.jpg?w=300" title="eage_bags_for_the_gambia" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-bags-donated-to-the-gambia/" > EAGE bags donated to The Gambia </a> </h3> <div class="elementor-post__excerpt"> <p>In commemoration of the International Day of Charity (5 September), we would like to recall EAGE’s commitment to supporting good causes that enhance social bonding</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-bags-donated-to-the-gambia/" aria-label="Read more about EAGE bags donated to The Gambia" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 5, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16967 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/meet-the-winners-of-the-eage-efg-photocontest-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/08/1st-place-Asonkey-Alexander-Geological-terrine-in-Jamestown-Ghana-Jamestown-Accra-Ghana-e1661544795368.jpeg?w=300" title="Asonkey_Alexander_Geological_terrain_in_Jamestown_Ghana_Jamestown_Accra_Ghana" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/meet-the-winners-of-the-eage-efg-photocontest-2022/" > Meet the winners of the EAGE/EFG Photocontest 2022! </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE and the European Federation of Geologists (EFG), are proud to announce the winners of this year’s Photo Contest!&nbsp; The 2022 “Legends of Geoscience” title</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/meet-the-winners-of-the-eage-efg-photocontest-2022/" aria-label="Read more about Meet the winners of the EAGE/EFG Photocontest 2022!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 1, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16945 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/the-nominations-for-the-2023-eage-awards-are-open/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/08/EAGE-AWARDS-1.jpeg?w=300" title="eage_awards_call_for_nominations" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/the-nominations-for-the-2023-eage-awards-are-open/" > The nominations for the 2023 EAGE Awards are open! </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE recognizes and honours the scientific advances and achievements made by its members. By nominating your colleagues to 2023 EAGE Awards, you help them stand</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/the-nominations-for-the-2023-eage-awards-are-open/" aria-label="Read more about The nominations for the 2023 EAGE Awards are open!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> August 26, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16875 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-7-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-7-2022/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #7/2022 </a> </h3> <div class="elementor-post__excerpt"> <p>Welcome to the latest newsletter prepared by the EAGE A.I. Committee this year. As a group of EAGE members and volunteers they help you navigate</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-7-2022/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #7/2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> August 22, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16924 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-annual-2022-event-report/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/08/EAGE-Annual-2022-Madrid.jpeg?w=300" title="EAGE Annual 2022 &#8211; Madrid" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-annual-2022-event-report/" > EAGE Annual 2022 Event Report </a> </h3> <div class="elementor-post__excerpt"> <p>It was an amazing week in beautiful, sunny Madrid for the 83rd EAGE Annual Conference and Exhibition. The convergence of science, technology, policy and ambition</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-annual-2022-event-report/" aria-label="Read more about EAGE Annual 2022 Event Report" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> August 18, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16960 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/message-from-the-eage-president-2022-2023/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/08/AGMM.jpg?w=300" title="AGMM" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/message-from-the-eage-president-2022-2023/" > Message from the EAGE President 2022-2023 </a> </h3> <div class="elementor-post__excerpt"> <p>In an interview published in First Break August, Jean-Marc Rodriguez, EAGE President (2022-2023), talks about the upcoming challenges and opportunities for the Association. He states</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/message-from-the-eage-president-2022-2023/" aria-label="Read more about Message from the EAGE President 2022-2023" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> August 1, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16652 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-6-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-6-2022/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #6/2022 </a> </h3> <div class="elementor-post__excerpt"> <p>Welcome to the latest newsletter prepared by the EAGE A.I. Committee this year. As a group of EAGE members and volunteers they help you navigate</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-6-2022/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #6/2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 22, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16586 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/this-summer-eage-helps-you-to-strengthen-your-career/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/06/AdobeStock_322230356-1-1.jpeg?w=300" title="AdobeStock_322230356 (1)" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/this-summer-eage-helps-you-to-strengthen-your-career/" > This Summer, EAGE helps you to strengthen your career </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE helps you to make the most of your time off, with a series of online courses and webinars that will prepare you for your</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/this-summer-eage-helps-you-to-strengthen-your-career/" aria-label="Read more about This Summer, EAGE helps you to strengthen your career" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 1, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16394 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ukraine-professional-development-fund/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/05/img196.jpg?w=300" title="img196" alt="ukraine_flag" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ukraine-professional-development-fund/" > EAGE Ukraine Professional Development Fund </a> </h3> <div class="elementor-post__excerpt"> <p>The&nbsp;EAGE&nbsp;Board has unanimously expressed shock and dismay at the ongoing Russian invasion of Ukraine. In addition to a special registration fee waiver programme through which</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ukraine-professional-development-fund/" aria-label="Read more about EAGE Ukraine Professional Development Fund" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 27, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16387 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-5-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-5-2022/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #5/2022 </a> </h3> <div class="elementor-post__excerpt"> <p>Welcome to a new newsletter prepared by the EAGE A.I. Committee. As a group of EAGE members and volunteers they help you navigate the digital</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-5-2022/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #5/2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 25, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16154 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-on-seabed-prospecting-technology/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/05/GP-special-issue-seabed.jpg?w=300" title="Underwater Scene &#8211; Tropical Seabed With Reef And Sunshine" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-on-seabed-prospecting-technology/" > Papers invited for Geophysical Prospecting special issue on seabed prospecting technology </a> </h3> <div class="elementor-post__excerpt"> <p>A special issue of Geophysical Prospecting (GP) on advances and applications of ocean bottom geophysical prospecting technologies is set for 2023. The aim is to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-on-seabed-prospecting-technology/" aria-label="Read more about Papers invited for Geophysical Prospecting special issue on seabed prospecting technology" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 4, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-16043 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/interview-by-the-a-i-committee-part-3/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/Picture-1_resized.png?w=300" title="Digital" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/interview-by-the-a-i-committee-part-3/" > Interview by the A.I. Committee &#8211; Part 3 </a> </h3> <div class="elementor-post__excerpt"> <p>Two years from its emergence, the EAGE A.I. community is going strong, led by a multidisciplinary team of geoscientists that have found their way to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/interview-by-the-a-i-committee-part-3/" aria-label="Read more about Interview by the A.I. Committee &#8211; Part 3" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> April 19, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15986 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-4-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-4-2022/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #4/2022 </a> </h3> <div class="elementor-post__excerpt"> <p>Welcome to the third newsletter prepared by the EAGE A.I. Committee this year. As a group of EAGE members and volunteers they help you navigate</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-4-2022/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #4/2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> April 11, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15962 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/interview-by-the-a-i-committee-part-2/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/Picture-1_resized.png?w=300" title="Digital" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/interview-by-the-a-i-committee-part-2/" > Interview by the A.I. Committee &#8211; Part 2 </a> </h3> <div class="elementor-post__excerpt"> <p>Two years from its emergence, the EAGE A.I. community is going strong, led by a multidisciplinary team of geoscientists that have found their way to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/interview-by-the-a-i-committee-part-2/" aria-label="Read more about Interview by the A.I. Committee &#8211; Part 2" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 28, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15864 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-media_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/ukraine-fee-waiver-programme/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/03/AdobeStock_-155094339.png?w=300" title="AdobeStock_ 155094339" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/ukraine-fee-waiver-programme/" > Special fee waiver programme for Ukrainian colleagues </a> </h3> <div class="elementor-post__excerpt"> <p>In support of Ukraine’s geoscience community, EAGE is introducing a special fee waiver programme for the country’s geoscientists and engineers. Until further notice, we will</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/ukraine-fee-waiver-programme/" aria-label="Read more about Special fee waiver programme for Ukrainian colleagues" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 16, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15555 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-about-eage_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/wge-online-talk-on-patenting/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/women-in-science.jpeg?w=300" title="Professional engineering, worker, woman" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/wge-online-talk-on-patenting/" > WGE to Conduct a Webinar on Patenting </a> </h3> <div class="elementor-post__excerpt"> <p>The EAGE Women in Geoscience and Engineering (WGE) Community is striving for a gender equal world. We would love to see a world free of</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/wge-online-talk-on-patenting/" aria-label="Read more about WGE to Conduct a Webinar on Patenting" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 8, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15438 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-about-eage_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-board-ukraine-statement/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/03/Panoramic_Polonina-Borzava_Ukraine.jpg?w=300" title="Panoramic_Polonina-Borzava_Ukraine" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-board-ukraine-statement/" > EAGE BOARD UKRAINE STATEMENT </a> </h3> <div class="elementor-post__excerpt"> <p>English Russian English The EAGE Board unanimously expresses our shock and dismay at the ongoing Russian military invasion of Ukraine and offer our support to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-board-ukraine-statement/" aria-label="Read more about EAGE BOARD UKRAINE STATEMENT" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 3, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15417 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-digitalization-hub/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/Digitalization_HUB_header.jpg?w=300" title="Digitalization_HUB_header" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-digitalization-hub/" > EAGE Digitalization Hub </a> </h3> <div class="elementor-post__excerpt"> <p>In the incredibly fast-paced digital transformation era we are living in, EAGE recognizes the importance of keeping you informed of all the opportunities available via</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-digitalization-hub/" aria-label="Read more about EAGE Digitalization Hub" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 2, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15576 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-3-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-3-2022/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #3/2022 </a> </h3> <div class="elementor-post__excerpt"> <p>Welcome to the third newsletter prepared by the EAGE A.I. Committee this year. As a group of EAGE members and volunteers they help you navigate</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-3-2022/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #3/2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 1, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15323 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/interview-by-the-a-i-committee-part-1/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/Picture-1_resized.png?w=300" title="Digital" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/interview-by-the-a-i-committee-part-1/" > Interview by the A.I. Committee &#8211; Part 1 </a> </h3> <div class="elementor-post__excerpt"> <p>Two years from its emergence, the EAGE A.I. community is going strong, led by a multidisciplinary team of geoscientists that have found their way to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/interview-by-the-a-i-committee-part-1/" aria-label="Read more about Interview by the A.I. Committee &#8211; Part 1" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 22, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15125 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-nsg-special-issue-on-geophysics-for-infrastructure-challenges/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/Building-Information-Modelling-BIM.jpeg?w=300" title="BIM" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-nsg-special-issue-on-geophysics-for-infrastructure-challenges/" > Papers invited for NSG special issue on geophysics for infrastructure challenges </a> </h3> <div class="elementor-post__excerpt"> <p>Guest editors of Near Surface Geophysics are inviting the submission of papers for a Special Issue on ‘Geophysics for Infrastructure Planning, Monitoring and Building Information</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-nsg-special-issue-on-geophysics-for-infrastructure-challenges/" aria-label="Read more about Papers invited for NSG special issue on geophysics for infrastructure challenges" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 15, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15023 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/2022-international-day-of-women-and-girls-in-science/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/women-in-science.jpeg?w=300" title="Professional engineering, worker, woman" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/2022-international-day-of-women-and-girls-in-science/" > 2022 International Day of Women and Girls in Science </a> </h3> <div class="elementor-post__excerpt"> <p>The United Nations have proclaimed 11 February the International Day of Women and Girls in Science. This day is set aside to ensure full and</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/2022-international-day-of-women-and-girls-in-science/" aria-label="Read more about 2022 International Day of Women and Girls in Science" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 11, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-14735 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-2-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-2-2022/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #2/2022 </a> </h3> <div class="elementor-post__excerpt"> <p>Artificial intelligence and machine learning have developed at an incredible pace in the recent years. As a group of EAGE members and volunteers we aim</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-ai-committee-newsletter-on-ai-ml-and-all-things-digitalization-2-2022/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #2/2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 26, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-15047 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/2022-international-day-of-education/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/02/education.jpeg?w=300" title="Concept,Of,Global,Business,Study,Abroad,Education.,Graduation,Hat,On" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/2022-international-day-of-education/" > 2022 International Day of Education </a> </h3> <div class="elementor-post__excerpt"> <p>Today, 24 January, marks the International Day of Education. At EAGE, education is at the heart of our mission to share knowledge. We are very</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/2022-international-day-of-education/" aria-label="Read more about 2022 International Day of Education" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 24, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-14641 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-gp-special-issue-on-mineral-exploration-and-mining-geophysics/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2022/01/Preikestolen-in-Norway.jpg?w=300" title="Preikestolen in Norway" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-gp-special-issue-on-mineral-exploration-and-mining-geophysics/" > Papers invited for GP special issue on mineral exploration and mining geophysics </a> </h3> <div class="elementor-post__excerpt"> <p>Geophysical Prospecting is returning to the topic of mineral exploration and mining geophysics with a third Special Issue due for publication in January 2023. Guest</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-gp-special-issue-on-mineral-exploration-and-mining-geophysics/" aria-label="Read more about Papers invited for GP special issue on mineral exploration and mining geophysics" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 20, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-14527 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-annual tag-energy-transition tag-homehighlight news_categories-eage_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/new-energy-transition-area-introduced-at-the-eage-annual-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/11/Energy-Transition.jpg?w=300" title="Energy Transition" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/new-energy-transition-area-introduced-at-the-eage-annual-2022/" > New Energy Transition Area introduced at the EAGE Annual 2022 </a> </h3> <div class="elementor-post__excerpt"> <p>We are delighted to include a brand-new Energy Transition Area in the Exhibition of our Annual Meeting in Madrid on 6-9 June this year –</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/new-energy-transition-area-introduced-at-the-eage-annual-2022/" aria-label="Read more about New Energy Transition Area introduced at the EAGE Annual 2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 12, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-14524 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/2022-eage-efg-photo-contest/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/03/Photocontest_2021.jpg?w=300" title="Photocontest_2021" alt="photo contest" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/2022-eage-efg-photo-contest/" > 2022 EAGE/EFG Photo Contest </a> </h3> <div class="elementor-post__excerpt"> <p>Photo enthusiasts, listen up: We’re currently welcoming submissions for the EAGE/EFG Photo Contest 2022. This year’s theme is Legends of Geoscience &#8211; all images that</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/2022-eage-efg-photo-contest/" aria-label="Read more about 2022 EAGE/EFG Photo Contest" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 11, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-14273 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/ai-newsletter-1-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/22033-SIC-Promo-Package_Slider5.jpg?w=300" title="A.I. Community &#8211; Resources" alt="A.I. Community - Resources" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/ai-newsletter-1-2022/" > EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #1/2022 </a> </h3> <div class="elementor-post__excerpt"> <p>Artificial intelligence and machine learning have developed at an incredible pace in the recent years. With that development came new algorithms, workflows, paradigm shifts, failures,</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/ai-newsletter-1-2022/" aria-label="Read more about EAGE AI Committee &#8211; Newsletter on AI, ML and all things Digitalization #1/2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 4, 2022 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-14437 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-challenge tag-laurie-dake tag-students news_categories-students_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/2022-laurie-dake-challenge/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/06/student-chapter-geoquiz.jpeg?w=300" title="student-chapter-geoquiz" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/2022-laurie-dake-challenge/" > 2022 Laurie Dake Challenge </a> </h3> <div class="elementor-post__excerpt"> <p>Start 2022 with a challenge &#8211; the Laurie Dake Challenge: an EAGE&#8217;s prestigious student team competition! The application window for the 2022 Laurie Dake Challenge</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/2022-laurie-dake-challenge/" aria-label="Read more about 2022 Laurie Dake Challenge" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> December 21, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-14310 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-co2-storage tag-education tag-energy-transition tag-learning-geoscience tag-near-surface-geoscience tag-non-seismic-methods news_categories-education_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/learning-geoscience-adds-2-new-extensive-courses/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/12/Girl_Behind_Laptop_Learning.png?w=300" title="Girl_Behind_Laptop_Learning" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/learning-geoscience-adds-2-new-extensive-courses/" > Learning Geoscience adds 2 new extensive courses </a> </h3> <div class="elementor-post__excerpt"> <p>Two new extensive online courses &#8216;Geological CO2 Storage&#8217; and &#8216;Non-Seismic Data Acquisition and Processing: Gravity and Magnetics&#8217; are now available on our Learning Geoscience platform.</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/learning-geoscience-adds-2-new-extensive-courses/" aria-label="Read more about Learning Geoscience adds 2 new extensive courses" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> December 3, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-14109 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-energy-transition-hub/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/11/Energy-Transition.jpg?w=300" title="Energy Transition" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-energy-transition-hub/" > EAGE Energy Transition Hub </a> </h3> <div class="elementor-post__excerpt"> <p>There are enormous opportunities for geoscientists and engineers in the energy transition.&nbsp;As the leading multidisciplinary geoscience and engineering association, EAGE is a natural platform to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-energy-transition-hub/" aria-label="Read more about EAGE Energy Transition Hub" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 29, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-14128 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-events_news news_categories-highlight_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/get-your-abstracts-in-for-madrid-2022/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/11/Madrid.jpg?w=300" title="Madrid" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/get-your-abstracts-in-for-madrid-2022/" > Get your abstracts in for Madrid 2022 </a> </h3> <div class="elementor-post__excerpt"> <p>Even though this year’s Annual Meeting in Amsterdam has just taken place, it’s time to get back to normal. That means we encourage everyone to</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/get-your-abstracts-in-for-madrid-2022/" aria-label="Read more about Get your abstracts in for Madrid 2022" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 23, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-13416 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/yp-summit-2021/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/11/Young-Professionals.jpeg?w=300" title="Young Professionals" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/yp-summit-2021/" > YP Summit 2021 </a> </h3> <div class="elementor-post__excerpt"> <p>Gerardo Gaitan (Royal Holloway, University of London), explains what the Third Young Professionals Summit scheduled for 18-19 November 2021 is all about. Young professionals (YPs),</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/yp-summit-2021/" aria-label="Read more about YP Summit 2021" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> November 1, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-13521 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-2021-thursday-recap/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/10/AMS21-RECAP-DAY4.jpg?w=300" title="AMS21-RECAP-DAY4" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-2021-thursday-recap/" > EAGE 2021 &#8211; Thursday Recap </a> </h3> <div class="elementor-post__excerpt"> <p>After last night’s conference evening we’re already nearing the end of the 82nd EAGE Conference &amp; Exhibition. Thursday’s programme looked ahead not only to the</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-2021-thursday-recap/" aria-label="Read more about EAGE 2021 &#8211; Thursday Recap" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 22, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-13503 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-2021-wednesday-recap/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/10/AMS21-RECAP-DAY3.jpg?w=300" title="AMS21-RECAP-DAY3" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-2021-wednesday-recap/" > EAGE 2021 &#8211; Wednesday Recap </a> </h3> <div class="elementor-post__excerpt"> <p>Wednesdays at the EAGE Annual are always a much anticipated day at the event. With the majority of community events, dedicated sessions and the conference</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-2021-wednesday-recap/" aria-label="Read more about EAGE 2021 &#8211; Wednesday Recap" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 21, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-13461 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-2021-tuesday-recap/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/10/AMS21-RECAP-DAY2.jpg?w=300" title="AMS21-RECAP-DAY2" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-2021-tuesday-recap/" > EAGE 2021 &#8211; Tuesday Recap </a> </h3> <div class="elementor-post__excerpt"> <p>Day two of the 82nd EAGE Annual Conference &amp; Exhibition brought the live launch of the Technical Programme. We are thrilled to see so many</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-2021-tuesday-recap/" aria-label="Read more about EAGE 2021 &#8211; Tuesday Recap" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 20, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-13426 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-2021-monday-recap/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/10/AMS21-RECAP-DAY1.jpg?w=300" title="AMS21-RECAP-DAY1" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-2021-monday-recap/" > EAGE 2021 &#8211; Monday recap </a> </h3> <div class="elementor-post__excerpt"> <p>The 82nd EAGE conference &amp; exhibition is currently taking place in Amsterdam, the Netherlands. We are bringing you a daily recap to keep you in</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-2021-monday-recap/" aria-label="Read more about EAGE 2021 &#8211; Monday recap" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 19, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-13345 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/2022-membership-renewal-window-open/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/LaunchWebsite.jpg?w=300" title="LaunchWebsite" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/2022-membership-renewal-window-open/" > 2022 Membership Renewal Window Open </a> </h3> <div class="elementor-post__excerpt"> <p>The 2022 membership renewal window is now open. Regular, retired and student members of EAGE can now secure their membership for next year &#8211; as</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/2022-membership-renewal-window-open/" aria-label="Read more about 2022 Membership Renewal Window Open" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 4, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-13249 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/2021-2022-uni/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/06/student-chapter-geoquiz.jpeg?w=300" title="student-chapter-geoquiz" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/2021-2022-uni/" > Student activities during the 21/22 Academic Year </a> </h3> <div class="elementor-post__excerpt"> <p>Returning to university? Make sure to connect to EAGE to help you gain those essential skills and network needed to get ahead of the curve!</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/2021-2022-uni/" aria-label="Read more about Student activities during the 21/22 Academic Year" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 28, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-13308 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/return-of-eage-in-person-meetings/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/09/NSG21-return-to-conferences-01.jpeg?w=300" title="NSG21 return to conferences 01" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/return-of-eage-in-person-meetings/" > Return of EAGE in person meetings </a> </h3> <div class="elementor-post__excerpt"> <p>Never has the expression a picture is worth a thousand words been more accurate. Just take a look at these great photos and you’ll see</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/return-of-eage-in-person-meetings/" aria-label="Read more about Return of EAGE in person meetings" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 21, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-12935 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-students_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/first-meeting-of-eage-latin-america-student-chapters/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/08/Amazon_River.jpg?w=300" title="Aerial,View,Of,Green,Mangrove,Forest.,Nature,Landscape.,Amazon,River." alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/first-meeting-of-eage-latin-america-student-chapters/" > First Meeting of EAGE Latin America Student Chapters </a> </h3> <div class="elementor-post__excerpt"> <p>The First Meeting of EAGE Latin America Student Chapters (Primer Encuentro de Capítulos EAGE &#8211; 1st ECE Latinoamérica) is an international online event organized by</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/first-meeting-of-eage-latin-america-student-chapters/" aria-label="Read more about First Meeting of EAGE Latin America Student Chapters" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> August 12, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-12672 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-gp-special-issue-on-machine-learning-applications-in-geophysical-exploration-and-monitoring/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/07/Digitalization-of-Oil-Gas-and-Fuel-Transport-Pipeline.jpeg?w=300" title="A.I. to monitor well drilling" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-gp-special-issue-on-machine-learning-applications-in-geophysical-exploration-and-monitoring/" > Papers invited for GP special issue on machine learning applications in geophysical exploration and monitoring </a> </h3> <div class="elementor-post__excerpt"> <p>A special issue of Geophysical Prospecting is being planned on machine learning applications in geophysical exploration and monitoring. Artificial intelligence, and in particular its subdomain</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-gp-special-issue-on-machine-learning-applications-in-geophysical-exploration-and-monitoring/" aria-label="Read more about Papers invited for GP special issue on machine learning applications in geophysical exploration and monitoring" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> August 2, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-12654 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-students_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/energy-transition-stories-smart-skills-to-navigate-your-future-career/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/07/SIC-Decarbonization-Energy-Transition.jpeg?w=300" title="SIC-Decarbonization-Energy-Transition" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/energy-transition-stories-smart-skills-to-navigate-your-future-career/" > Energy Transition Stories: Smart Skills to Navigate Your Future Career </a> </h3> <div class="elementor-post__excerpt"> <p>Has your story encountered the energy transition yet? Or are you wondering how to future-proof your career in geosciences? If so, the EAGE Decarbonization &amp;</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/energy-transition-stories-smart-skills-to-navigate-your-future-career/" aria-label="Read more about Energy Transition Stories: Smart Skills to Navigate Your Future Career" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 28, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-12557 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/membership-fees-2022-announcement/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/LaunchWebsite.jpg?w=300" title="LaunchWebsite" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/membership-fees-2022-announcement/" > Membership Fees 2022 Announcement </a> </h3> <div class="elementor-post__excerpt"> <p>From 1 October onwards, our membership fee structure will be updated. Why this increase It’s been over 20 years since our last increase in membership</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/membership-fees-2022-announcement/" aria-label="Read more about Membership Fees 2022 Announcement" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 20, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-12178 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-students_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/2021-award-winners-unveiled/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/07/2021-award-winners-announced.png?w=300" title="2021-award-winners-announced" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/2021-award-winners-unveiled/" > 2021 Award Winners Unveiled </a> </h3> <div class="elementor-post__excerpt"> <p>A year has passed and we are all looking forward to discovering the winners of the 2021 EAGE Awards! Don’t worry, you will not have</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/2021-award-winners-unveiled/" aria-label="Read more about 2021 Award Winners Unveiled" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 6, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-12038 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-students_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/2021_minus_co2_announcement/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/06/student-chapter-geoquiz.jpeg?w=300" title="student-chapter-geoquiz" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/2021_minus_co2_announcement/" > 2021 Minus CO2 Challenge </a> </h3> <div class="elementor-post__excerpt"> <p>The application window for the 2021 EAGE Minus CO2 Challenge has just been opened. The prestigious challenge, in which teams from around the globe compete</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/2021_minus_co2_announcement/" aria-label="Read more about 2021 Minus CO2 Challenge" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> July 2, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-11125 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-board-announces-climate-statement/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/LaunchWebsite.jpg?w=300" title="LaunchWebsite" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-board-announces-climate-statement/" > EAGE Board Announces Climate Statement </a> </h3> <div class="elementor-post__excerpt"> <p>Following its recent adoption by the EAGE Board, we are herewith sharing EAGE Board&#8217;s Statement on Climate Change. Statement Climate change is of great significance</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-board-announces-climate-statement/" aria-label="Read more about EAGE Board Announces Climate Statement" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 30, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-8630 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/international-women-in-engineering-day-2021/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/woman-scientist.jpg?w=300" title="Woman,Scientist,Vector,Illustration.,Professional,Flat,Tiny,Persons,Concept.,Female" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/international-women-in-engineering-day-2021/" > International Women in Engineering Day 2021 </a> </h3> <div class="elementor-post__excerpt"> <p>The International Women in Engineering Day &#8211; 23 June &#8211; means a lot to our community: it provides an important opportunity to highlight women engineers</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/international-women-in-engineering-day-2021/" aria-label="Read more about International Women in Engineering Day 2021" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 22, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-11080 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-student tag-students news_categories-students_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/two-new-student-webinars-on-near-surface-topics/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/06/monitoring-water-distribution.jpg?w=300" title="" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/two-new-student-webinars-on-near-surface-topics/" > Two new student webinars on near surface topics </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE student webinars allow us to easily connect students and lecturers online, opening up a wealth of knowledge to students around the globe. On 23</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/two-new-student-webinars-on-near-surface-topics/" aria-label="Read more about Two new student webinars on near surface topics" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 11, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-11380 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/world-environment-day-2021/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/06/ecology.jpg?w=300" title="Ecology,Concept,With,Green,City,On,Earth,,World,Environment,And" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/world-environment-day-2021/" > World Environment Day 2021 </a> </h3> <div class="elementor-post__excerpt"> <p>Geoscience and engineering have a front row seat in studying and understanding our living environment. To stress the importance of this process, 5 June has</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/world-environment-day-2021/" aria-label="Read more about World Environment Day 2021" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 5, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-11411 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-on-integrating-different-survey-techniques-and-data/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/06/integrated-geophysic.jpg?w=300" title="Well,Drilling,And,Geophysical,Surveys,For,The,Search,And,Production" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-on-integrating-different-survey-techniques-and-data/" > Papers invited for Geophysical Prospecting special issue on integrating different survey techniques and data </a> </h3> <div class="elementor-post__excerpt"> <p>Guest Editors: Raffaele Persico (University of Calabria) – Managing Guest Editor Sebastiano D’Amico (University of Malta) Francesco Panzera (Swiss Seismological Service) Erica Utsi (EMCradar Consulting)</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/papers-invited-for-geophysical-prospecting-special-issue-on-integrating-different-survey-techniques-and-data/" aria-label="Read more about Papers invited for Geophysical Prospecting special issue on integrating different survey techniques and data" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 24, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-11072 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-education_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/education-packages-now-available-for-all-eage-online-courses/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/02/Education_Package_FeaturedImage.png?w=300" title="Education_Package_FeaturedImage" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/education-packages-now-available-for-all-eage-online-courses/" > Education Packages Now Available for All EAGE Online Courses </a> </h3> <div class="elementor-post__excerpt"> <p>Our Education Packages now allow you to combine&nbsp;multiple courses in multiple formats&nbsp;and&nbsp;save up to 50% on your total registration compared to individual courses. Packages are</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/education-packages-now-available-for-all-eage-online-courses/" aria-label="Read more about Education Packages Now Available for All EAGE Online Courses" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 14, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-11399 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-student tag-students news_categories-homehighlight news_categories-students_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/student-chapter-geoquiz-winners-announced/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/06/student-chapter-geoquiz.jpeg?w=300" title="student-chapter-geoquiz" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/student-chapter-geoquiz-winners-announced/" > Student chapter geoquiz winners announced </a> </h3> <div class="elementor-post__excerpt"> <p>In the recent EAGE Online Geoquiz for student chapters, students from 15 chapters worldwide participated in a chance to gain registration fee waivers for our</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/student-chapter-geoquiz-winners-announced/" aria-label="Read more about Student chapter geoquiz winners announced" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 6, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9553 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/explore-the-future-of-geoscience-engineering-in-energy-transition-with-the-get2021-co-chairs/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/05/GET2021-background.png?w=300" title="GET2021 background" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/explore-the-future-of-geoscience-engineering-in-energy-transition-with-the-get2021-co-chairs/" > Explore the Future of Geoscience &amp; Engineering in Energy Transition with the GET2021 Co-chairs </a> </h3> <div class="elementor-post__excerpt"> <p>Energy transition technologies have demonstrated remarkable degrees of maturity and a great potential to change the energy mix. All sustainable scenarios to meet the climate</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/explore-the-future-of-geoscience-engineering-in-energy-transition-with-the-get2021-co-chairs/" aria-label="Read more about Explore the Future of Geoscience &amp; Engineering in Energy Transition with the GET2021 Co-chairs" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 5, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9369 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-media_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-board-ballot-2021/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/05/shutterstock_-1746099788.jpg?w=300" title="Ballot 2021" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-board-ballot-2021/" > EAGE Board Ballot 2021 </a> </h3> <div class="elementor-post__excerpt"> <p>The annual EAGE Board elections are due to take place, with voting online beginning from 1 May to 1 June 2021. The Board is responsible</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-board-ballot-2021/" aria-label="Read more about EAGE Board Ballot 2021" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> May 4, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9536 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/invitation-to-join-the-2021-annual-general-meeting-for-members/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/04/conference_remote_working_on_laptop_computer.png?w=300" title="conference_remote_working_on_laptop_computer" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/invitation-to-join-the-2021-annual-general-meeting-for-members/" > Invitation to join the 2021 Annual General Meeting for Members </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE’s Annual General Meeting for Members (AGMM) is normally held during our Annual Conference and before 1 July of the business year. As members already</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/invitation-to-join-the-2021-annual-general-meeting-for-members/" aria-label="Read more about Invitation to join the 2021 Annual General Meeting for Members" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> April 28, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-10626 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/earth-day-2021/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/ricefields_vietnam.jpg?w=300" title="ricefields_vietnam" alt="alt text" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/earth-day-2021/" > Earth Day 2021 </a> </h3> <div class="elementor-post__excerpt"> <p>Restore our Earth &#8211; this year&#8217;s Earth Day theme resonates well within the EAGE community. After all, our community plays a key role solving challenges</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/earth-day-2021/" aria-label="Read more about Earth Day 2021" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> April 22, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-11343 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-seismic"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-announces-two-new-technical-communities-focus-on-seismic/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/06/seismic-communities.jpg?w=300" title="seismic communities" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-announces-two-new-technical-communities-focus-on-seismic/" > EAGE Announces Two New Technical Communities Focus on Seismic </a> </h3> <div class="elementor-post__excerpt"> <p>The network of EAGE is expanding through two new special interest communities (SICs) dedicated to Seismic Acquisition and Seismic Interpretation. Both SICs intend to share</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-announces-two-new-technical-communities-focus-on-seismic/" aria-label="Read more about EAGE Announces Two New Technical Communities Focus on Seismic" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> April 12, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9709 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/world-water-day-2021/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/Demo_Scenery-5.jpg?w=300" title="Demo_Scenery-5" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/world-water-day-2021/" > World Water Day 2021 </a> </h3> <div class="elementor-post__excerpt"> <p>22 March is World Water Day, the dedicated UN observance day on the importance of (fresh) water. Our community plays a key role in providing</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/world-water-day-2021/" aria-label="Read more about World Water Day 2021" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 22, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9706 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/new-electures/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/EAGE-online-changes-announced-1.jpg?w=300" title="EAGE online changes announced" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/new-electures/" > New e-lectures released on Learning Geoscience </a> </h3> <div class="elementor-post__excerpt"> <p>Since the launch of our renewed Learning Geoscience platform almost 100 EAGE E-Lectures have been made available for our community to view &#8211; free of</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/new-electures/" aria-label="Read more about New e-lectures released on Learning Geoscience" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 20, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9563 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/photo-contest-2021/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/03/Photocontest_2021.jpg?w=300" title="Photocontest_2021" alt="photo contest" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/photo-contest-2021/" > Photo Contest final announcement </a> </h3> <div class="elementor-post__excerpt"> <p>Got a keen eye and a camera? We&#8217;re currently welcoming submissions for our 2021 EAGE / EFG Photo Contest. This year&#8217;s theme is &#8216;Legends of</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/photo-contest-2021/" aria-label="Read more about Photo Contest final announcement" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 11, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9554 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/geochemistry-announcement/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/03/shutterstock_1046352697.jpg?w=300" title="Geochemistry" alt="Geochemistry" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/geochemistry-announcement/" > EAGE &amp; EAG start collaboration on new Community on Geochemistry </a> </h3> <div class="elementor-post__excerpt"> <p>EAGE is, in collaboration with EAG (the European Association of Geochemists), opening a new special interest community on Geochemistry. As a central topic featured in EAGE</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/geochemistry-announcement/" aria-label="Read more about EAGE &amp; EAG start collaboration on new Community on Geochemistry" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 11, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9539 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/did-you-secure-your-2021-eage-membership-already/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/LaunchWebsite.jpg?w=300" title="LaunchWebsite" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/did-you-secure-your-2021-eage-membership-already/" > Did you secure your 2021 EAGE membership already? </a> </h3> <div class="elementor-post__excerpt"> <p>With many of us working from home, personal connection is more important than ever. EAGE is here to help you stay in touch with the</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/did-you-secure-your-2021-eage-membership-already/" aria-label="Read more about Did you secure your 2021 EAGE membership already?" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> March 9, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9359 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-education_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/education-packages/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/02/WorldGlobe.jpeg?w=300" title="WorldGlobe_FeaturedImage" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/education-packages/" > Education Packages </a> </h3> <div class="elementor-post__excerpt"> <p>We have seen a growing interest in our education offerings, with members attending multiple courses throughout a year. To help you save on registration fees</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/education-packages/" aria-label="Read more about Education Packages" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 25, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9293 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-members-to-represent-european-research-at-kegs-symposium/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/02/Northern-lights-aurora-borealis-over-planet-Earth-northern-hemisphere.jpg?w=300" title="North European Research presented at KEGS Symposium" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-members-to-represent-european-research-at-kegs-symposium/" > NSG presenters provide European perspective at Canadian Symposium </a> </h3> <div class="elementor-post__excerpt"> <p>The 2021 Canadian Exploration Geophysical Society (KEGS) Symposium includes a dedicated &#8216;Best of EAGE&#8217; session as part of their conference. Four speakers will present their</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-members-to-represent-european-research-at-kegs-symposium/" aria-label="Read more about NSG presenters provide European perspective at Canadian Symposium" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 19, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-9146 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/annual-oct-dates/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/02/Amsterdam_Fall.jpg?w=300" title="Beautiful,Canals,In,Amsterdam,In,Autum,,Holland" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/annual-oct-dates/" > New Dates EAGE Annual Conference &amp; Exhibition 2021 </a> </h3> <div class="elementor-post__excerpt"> <p>Due to the ongoing COVID-19 restrictions, the 82nd EAGE Conference &amp; Exhibition is rescheduled to 18-21 October 2021.  We believe the move to autumn will</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/annual-oct-dates/" aria-label="Read more about New Dates EAGE Annual Conference &amp; Exhibition 2021" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 8, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-8752 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-students_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/students-membership-chapters-applications-now-open/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/06/Students.jpg?w=300" title="Students" alt="Group of students having fun" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/students-membership-chapters-applications-now-open/" > Student membership &amp; chapters applications now open! </a> </h3> <div class="elementor-post__excerpt"> <p>With EAGE membership 2021 running up to 31 December, now is the time to get the best value out of your association benefits. We are</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/students-membership-chapters-applications-now-open/" aria-label="Read more about Student membership &amp; chapters applications now open!" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> February 5, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-8610 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-launches-new-website/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/LaunchWebsite.jpg?w=300" title="LaunchWebsite" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-launches-new-website/" > EAGE launches new website </a> </h3> <div class="elementor-post__excerpt"> <p>Welcome to our Triple A website! 2021 is here, and with it a brand new EAGE website. Our updated platform aims to make access and</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-launches-new-website/" aria-label="Read more about EAGE launches new website" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 26, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-8040 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/next-hotspots-series-place-the-spotlight-on-africa/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/GlobalHotspot-Africa_news.jpg?w=300" title="GlobalHotspot-Africa_news" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/next-hotspots-series-place-the-spotlight-on-africa/" > Global hotspots workshops place the spotlight on Africa </a> </h3> <div class="elementor-post__excerpt"> <p>Volcanic hotspots may be well known and mapped, but are you up to speed on the latest exploration hotspots globally? Our EAGE Online Event series</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/next-hotspots-series-place-the-spotlight-on-africa/" aria-label="Read more about Global hotspots workshops place the spotlight on Africa" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 26, 2021 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-5794 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-homehighlight news_categories-events_news news_categories-homehighlight"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/optimising-project-turnaround/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/10/pgs02299.jpg?w=300" title="pgs02299" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/optimising-project-turnaround/" > New workshop to focus on optimising subsurface data delivery </a> </h3> <div class="elementor-post__excerpt"> <p>New workshop to focus on optimising subsurface data delivery EAGE introduces a new workshop with the unique aim of discussing and demonstrating how the industry</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/optimising-project-turnaround/" aria-label="Read more about New workshop to focus on optimising subsurface data delivery" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> October 8, 2020 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-5212 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/eage-membership-2021-five-things-to-look-out-for/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/ricefields_vietnam.jpg?w=300" title="ricefields_vietnam" alt="alt text" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/eage-membership-2021-five-things-to-look-out-for/" > EAGE Membership &#8211; what to look out for in 2021 </a> </h3> <div class="elementor-post__excerpt"> <p>From 1 October, it is possible to renew your EAGE membership for 2021. This past year has been a tough one for many within our</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/eage-membership-2021-five-things-to-look-out-for/" aria-label="Read more about EAGE Membership &#8211; what to look out for in 2021" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 23, 2020 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-5201 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/wge-latam/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/LATAM-EAGE-workshops-and-conferences.jpg?w=300" title="LATAM EAGE workshops and conferences" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/wge-latam/" > Workshop on Latin America highlights role of women in industry </a> </h3> <div class="elementor-post__excerpt"> <p>On 7-8 September, EAGE delegates had the chance to participate in a new workshop concept. A report on our 1st multidisciplinary workshop on Latin America.</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/wge-latam/" aria-label="Read more about Workshop on Latin America highlights role of women in industry" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 21, 2020 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-4361 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-communities_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/communities/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/communities-background.png?w=300" title="communities-background" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/communities/" > Communities </a> </h3> <div class="elementor-post__excerpt"> <p>&nbsp; EAGE Communities operate within the Association with the mission of empowering members in knowledge and experience exchange, as well as offering mutual support in</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/communities/" aria-label="Read more about Communities" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 1, 2020 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-4348 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-media_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/learning-geoscience/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/Learning-Geoscience_homenews.jpg?w=300" title="Learning-Geoscience_homenews" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/learning-geoscience/" > Learning Geoscience </a> </h3> <div class="elementor-post__excerpt"> <p>Education is key to EAGE’s mission to promote the development and application of geosciences and engineering. Online education has seen enormous growth and hundreds of</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/learning-geoscience/" aria-label="Read more about Learning Geoscience" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> September 1, 2020 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-8352 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry news_categories-about-eage_news"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/changes-to-the-constitution-june-2020/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2021/01/EAGEbuilding.jpg?w=300" title="EAGE building" alt="Eage Head office" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/changes-to-the-constitution-june-2020/" > Changes to the Constitution (June 2020) </a> </h3> <div class="elementor-post__excerpt"> <p>Throughout May 2020 a ballot was held among our Members about a number of proposals for changes to the Constitution of the EAGE. The ballot</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/changes-to-the-constitution-june-2020/" aria-label="Read more about Changes to the Constitution (June 2020)" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> June 25, 2020 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-5152 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry tag-homehighlight news_categories-homehighlight"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/5152-2/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/EAGE-online-changes-announced-1.jpg?w=300" title="EAGE online changes announced" alt="" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/5152-2/" > Working from home with EarthDoc </a> </h3> <div class="elementor-post__excerpt"> <p>Are you making the best of EAGE’s products and services whilst working from home? Make sure to tap into the online wealth of geoscientific knowledge</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/5152-2/" aria-label="Read more about Working from home with EarthDoc" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 25, 2020 </span> </div> </div> </article> <article class="elementor-post elementor-grid-item post-5196 eage_news type-eage_news status-publish format-standard has-post-thumbnail hentry"> <div class="elementor-post__card"> <a class="elementor-post__thumbnail__link" href="https://eage.org/eage_news/hpc-workshop/" tabindex="-1" ><div class="elementor-post__thumbnail"><img src="https://eage.org/wp-content/uploads/2020/09/EAGE-HPC-workshop-Milan.jpg?w=300" title="EAGE HPC workshop Milan" alt="Milan will provide the backdrop for our 5th EAGE HPC workshop" loading="lazy" /></div></a> <div class="elementor-post__text"> <h3 class="elementor-post__title"> <a href="https://eage.org/eage_news/hpc-workshop/" > High Performance Computing workshop </a> </h3> <div class="elementor-post__excerpt"> <p>Until 1 March, we are looking for cutting-edge research for our upcoming High Performance Computing workshop. Be part of the programme and submit your work</p> </div> <a class="elementor-post__read-more" href="https://eage.org/eage_news/hpc-workshop/" aria-label="Read more about High Performance Computing workshop" tabindex="-1" > Read More » </a> </div> <div class="elementor-post__meta-data"> <span class="elementor-post-date"> January 21, 2020 </span> </div> </div> </article> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-764b0662" data-id="764b0662" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-147d74f8 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="147d74f8" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-3b99cc60 ad_skyscraper_column" data-id="3b99cc60" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-1c946501 elementor-section-full_width elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-phone elementor-section-height-default elementor-section-height-default" data-id="1c946501" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-637ec2a" data-id="637ec2a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-45fe40bf elementor-position-left elementor-widget__width-inherit elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="45fe40bf" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <i aria-hidden="true" class="fas fa-tag"></i> </span> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <span > Tags </span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-3c1f7f49 elementor-widget elementor-widget-wp-widget-tag_cloud" data-id="3c1f7f49" data-element_type="widget" data-widget_type="wp-widget-tag_cloud.default"> <div class="elementor-widget-container"> <h5>Tags</h5><div class="tagcloud"><a href="https://eage.org/tag/annual/" class="tag-cloud-link tag-link-211 tag-link-position-1" style="font-size: 8pt;" aria-label="annual (1 item)">annual<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/basin-research/" class="tag-cloud-link tag-link-224 tag-link-position-2" style="font-size: 8pt;" aria-label="Basin Research (1 item)">Basin Research<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/challenge/" class="tag-cloud-link tag-link-209 tag-link-position-3" style="font-size: 8pt;" aria-label="challenge (1 item)">challenge<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/co2-storage/" class="tag-cloud-link tag-link-206 tag-link-position-4" style="font-size: 8pt;" aria-label="CO2 storage (1 item)">CO2 storage<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/education/" class="tag-cloud-link tag-link-203 tag-link-position-5" style="font-size: 8pt;" aria-label="education (1 item)">education<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/energy-transition/" class="tag-cloud-link tag-link-205 tag-link-position-6" style="font-size: 14.3pt;" aria-label="energy transition (2 items)">energy transition<span class="tag-link-count"> (2)</span></a> <a href="https://eage.org/tag/geoenergy/" class="tag-cloud-link tag-link-225 tag-link-position-7" style="font-size: 14.3pt;" aria-label="Geoenergy (2 items)">Geoenergy<span class="tag-link-count"> (2)</span></a> <a href="https://eage.org/tag/geophysical-prospecting/" class="tag-cloud-link tag-link-226 tag-link-position-8" style="font-size: 8pt;" aria-label="Geophysical Prospecting (1 item)">Geophysical Prospecting<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/homehighlight/" class="tag-cloud-link tag-link-177 tag-link-position-9" style="font-size: 18.5pt;" aria-label="homehighlight (3 items)">homehighlight<span class="tag-link-count"> (3)</span></a> <a href="https://eage.org/tag/journal/" class="tag-cloud-link tag-link-223 tag-link-position-10" style="font-size: 14.3pt;" aria-label="journal (2 items)">journal<span class="tag-link-count"> (2)</span></a> <a href="https://eage.org/tag/laurie-dake/" class="tag-cloud-link tag-link-210 tag-link-position-11" style="font-size: 8pt;" aria-label="Laurie Dake (1 item)">Laurie Dake<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/learning-geoscience/" class="tag-cloud-link tag-link-204 tag-link-position-12" style="font-size: 8pt;" aria-label="learning geoscience (1 item)">learning geoscience<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/near-surface-geoscience/" class="tag-cloud-link tag-link-207 tag-link-position-13" style="font-size: 8pt;" aria-label="near surface geoscience (1 item)">near surface geoscience<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/non-seismic-methods/" class="tag-cloud-link tag-link-208 tag-link-position-14" style="font-size: 8pt;" aria-label="non-seismic methods (1 item)">non-seismic methods<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/publications/" class="tag-cloud-link tag-link-222 tag-link-position-15" style="font-size: 22pt;" aria-label="publications (4 items)">publications<span class="tag-link-count"> (4)</span></a> <a href="https://eage.org/tag/seismic/" class="tag-cloud-link tag-link-187 tag-link-position-16" style="font-size: 8pt;" aria-label="seismic (1 item)">seismic<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/special-issue/" class="tag-cloud-link tag-link-227 tag-link-position-17" style="font-size: 8pt;" aria-label="special issue (1 item)">special issue<span class="tag-link-count"> (1)</span></a> <a href="https://eage.org/tag/student/" class="tag-cloud-link tag-link-188 tag-link-position-18" style="font-size: 14.3pt;" aria-label="student (2 items)">student<span class="tag-link-count"> (2)</span></a> <a href="https://eage.org/tag/students/" class="tag-cloud-link tag-link-185 tag-link-position-19" style="font-size: 18.5pt;" aria-label="students (3 items)">students<span class="tag-link-count"> (3)</span></a></div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-17659f80 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="17659f80" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-385d4fdf" data-id="385d4fdf" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3732fff5 elementor-position-left elementor-widget__width-inherit elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="3732fff5" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-"> <i aria-hidden="true" class="fas fa-share-alt"></i> </span> </div> <div class="elementor-icon-box-content"> <div class="elementor-icon-box-title"> <span > Stay connected </span> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-4b7fe4c7 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="4b7fe4c7" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-ce9306a" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-2284b44" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-google-plus-square elementor-repeater-item-5d63df5" target="_blank"> <span class="elementor-screen-only">Google-plus-square</span> <i class="fab fa-google-plus-square"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-03f4c7d" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-pinterest elementor-repeater-item-33645f9" target="_blank"> <span class="elementor-screen-only">Pinterest</span> <i class="fab fa-pinterest"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="footer" data-elementor-id="174" class="elementor elementor-174 elementor-location-footer" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-8de936b footer_green_line elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8de936b" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fa94818" data-id="fa94818" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-81dfce2 elementor-widget__width-auto elementor-fixed elementor-hidden-phone elementor-view-default elementor-widget elementor-widget-icon" data-id="81dfce2" data-element_type="widget" id="backupthepage" data-settings="{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_effect&quot;:&quot;yes&quot;,&quot;motion_fx_opacity_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:&quot;21&quot;,&quot;end&quot;:&quot;42&quot;}},&quot;motion_fx_range&quot;:&quot;viewport&quot;,&quot;_position&quot;:&quot;fixed&quot;,&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;],&quot;_animation&quot;:&quot;none&quot;,&quot;motion_fx_opacity_direction&quot;:&quot;out-in&quot;,&quot;motion_fx_opacity_level&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]}}" data-widget_type="icon.default"> <div class="elementor-widget-container"> <div class="elementor-icon-wrapper"> <a class="elementor-icon" href="#"> <i aria-hidden="true" class="far fa-arrow-alt-circle-up"></i> </a> </div> </div> </div> </div> </div> </div> </section> <footer class="elementor-section elementor-top-section elementor-element elementor-element-8bc4f38 elementor-section-height-min-height elementor-section-content-middle elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="8bc4f38" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-65982f09" data-id="65982f09" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f251e86 elementor-widget elementor-widget-image" data-id="f251e86" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/03/EAGE_logo_diap_bijschrift.svg?w=768" title="EAGE_logo_diap_bijschrift" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-66e431cc" data-id="66e431cc" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ca43308 elementor-widget elementor-widget-text-editor" data-id="ca43308" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <span class="footer_item"> <a href="https://eage.org/corporate-calendar/">Corporate Calendar</a></span><span class="footer_item"><a href="https://support.eage.org" target="_blank" rel="noopener">Support</a> </span> <span class="footer_item"><a href="https://eage.org/about_eage/eage-privacy-and-cookie-statement/">Privacy &amp; Cookie Statement</a></span> <span class="footer_item"><a href="https://eage.org/membership/membership-terms-and-conditions/">Membership Terms and Conditions </a></span><span class="footer_item"><a href="https://eage.org/about_eage/3957-2/">Health and safety policy</a></span> </div> </div> <div class="elementor-element elementor-element-551c95e9 e-grid-align-right e-grid-align-mobile-center elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="551c95e9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-animation-pop elementor-repeater-item-993ef04" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <i class="fab fa-facebook-f"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-pop elementor-repeater-item-a1c64d4" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-animation-pop elementor-repeater-item-20757a3" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon- elementor-animation-pop elementor-repeater-item-a229ff5" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only"></span> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="Layer_1" x="0px" y="0px" viewBox="0 0 1200 1227" style="enable-background:new 0 0 1200 1227;" xml:space="preserve"><path d="M714.16302,519.284L1160.89001,0h-105.85999L667.13702,450.88699L357.328,0H0l468.492,681.82098L0,1226.37h105.866 l409.62503-476.15198L842.672,1226.37H1200L714.13702,519.284H714.16302z M569.16498,687.828l-47.46796-67.89398L144.011,79.6944 h162.60399l304.797,435.9906L658.88,583.57898l396.19995,566.72107H892.47601L569.16498,687.854V687.828z"></path></svg> </a> </span> </div> </div> </div> </div> </div> </div> </footer> <footer class="elementor-section elementor-top-section elementor-element elementor-element-422826b elementor-section-height-min-height elementor-section-content-middle elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="422826b" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-27a96d1" data-id="27a96d1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-34f85cc elementor-widget elementor-widget-text-editor" data-id="34f85cc" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <span class="footer_item"> &lt;!&#8211; <a href="https://eage.org/blog/membership/membership-terms-and-conditions/">Membership Terms and Conditions</a></span> <span class="footer_item"><a href="https://eage.org/about_eage/3957-2/">Health and safety policy</a> &#8211;&gt; </span> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-0784a8e" data-id="0784a8e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-576ff26 elementor-widget elementor-widget-image" data-id="576ff26" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/03/EAGE_logo_diap_bijschrift.svg?w=768" title="EAGE_logo_diap_bijschrift" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-965482f" data-id="965482f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7e03b63 e-grid-align-right e-grid-align-mobile-center elementor-grid-mobile-3 elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="7e03b63" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-animation-pop elementor-repeater-item-993ef04" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <i class="fab fa-facebook-f"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-animation-pop elementor-repeater-item-a1c64d4" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-animation-pop elementor-repeater-item-20757a3" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-animation-pop elementor-repeater-item-a229ff5" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </footer> </div> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <div data-elementor-type="popup" data-elementor-id="15640" class="elementor elementor-15640 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeIn&quot;,&quot;classes&quot;:&quot;award-popup&quot;,&quot;open_selector&quot;:&quot;popup-arie-2021&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-2c210806 award-popup_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2c210806" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6246df59 award-popup_maincolumn " data-id="6246df59" data-element_type="column" data-settings="{&quot;animation&quot;:&quot;none&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-760f3ac0 elementor-section-content-middle animated-slow award-popup_inner_section elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="760f3ac0" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-123d3b58 award-popup_first_col" data-id="123d3b58" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3922dfe8 award-popup_year_title elementor-widget elementor-widget-heading" data-id="3922dfe8" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h3 class="elementor-heading-title elementor-size-default">2021</h3> </div> </div> <div class="elementor-element elementor-element-79e7a1f0 award-popup_bioname elementor-widget elementor-widget-heading" data-id="79e7a1f0" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h2 class="elementor-heading-title elementor-size-default">Siddharth Misra</h2> </div> </div> <div class="elementor-element elementor-element-48cad6ca award-popup_spinning_coin elementor-widget elementor-widget-image" data-id="48cad6ca" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2021/01/Award-Spinning-coin-.gif?w=150" title="Award-Spinning-coin-" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3d27bea2 award-popup_second_col" data-id="3d27bea2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-322bc7bc elementor-widget elementor-widget-text-editor" data-id="322bc7bc" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p>Prof Dr Siddharth Misra’s research focuses on improving subsurface characterization and prospect evaluation for the exploration of hydrocarbons, minerals and water resources.</p><p>His major contribution is in the theory of electromagnetic responses of geological formations to various charge polarization phenomena. The theory has enabled him to introduce a multi-frequency electromagnetic log-inversion technique to remove dielectric effects for improved estimation of hydrocarbon pore volume.</p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="14898" class="elementor elementor-14898 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.5,&quot;sizes&quot;:[]},&quot;open_selector&quot;:&quot;.pop_media2&quot;,&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-fdd7028 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="fdd7028" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-8c48882" data-id="8c48882" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b5b1fab" data-id="b5b1fab" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5dc7b23 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="5dc7b23" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-media-container"><ul id="menu-menu-media" class="menu"><li id="menu-item-2595" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2595"><a href="#">First Break</a> <ul class="sub-menu"> <li id="menu-item-2602" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2602"><a href="https://eage.org/media/about-firstbreak/">About First Break</a></li> </ul> </li> <li id="menu-item-2596" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2596"><a href="#">Earthdoc</a> <ul class="sub-menu"> <li id="menu-item-2605" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2605"><a href="https://eage.org/media/earthdoc/">EarthDoc</a></li> </ul> </li> <li id="menu-item-2597" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2597"><a href="#">Journals</a> <ul class="sub-menu"> <li id="menu-item-5534" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5534"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics">Near Surface Geophysics</a></li> <li id="menu-item-5535" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5535"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience">Petroleum Geoscience</a></li> <li id="menu-item-5536" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5536"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting">Geophysical Prospecting</a></li> <li id="menu-item-5537" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5537"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research">Basin Research</a></li> <li id="menu-item-17866" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17866"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy">Geoenergy</a></li> </ul> </li> <li id="menu-item-2598" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2598"><a href="#">Books</a> <ul class="sub-menu"> <li id="menu-item-2610" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2610"><a href="https://eage.org/media/online-bookshop/">Online Bookshop</a></li> <li id="menu-item-5527" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5527"><a href="https://eage.org/media/publishing-with-eage/">Publishing with EAGE</a></li> </ul> </li> <li id="menu-item-2599" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2599"><a href="#">Newsletters</a> <ul class="sub-menu"> <li id="menu-item-4051" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-4051"><a href="https://eage.org/media/newsletters_stay-connected/">Stay Connected</a></li> <li id="menu-item-5528" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5528"><a href="https://eage.org/media/digital-newsletters/">Digital Newsletters</a></li> <li id="menu-item-9740" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9740"><a href="https://eage.org/media/nsg-newsletters/">NSG Newsletters</a></li> </ul> </li> <li id="menu-item-2601" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2601"><a href="#">Media Partners</a> <ul class="sub-menu"> <li id="menu-item-2608" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2608"><a href="https://eage.org/media/media-partners/">Media Partners</a></li> <li id="menu-item-9659" class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9659"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-b95cc03" data-id="b95cc03" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-82fac38 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="82fac38" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="4198" class="elementor elementor-4198 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInLeft&quot;,&quot;exit_animation&quot;:&quot;fadeInLeft&quot;,&quot;open_selector&quot;:&quot;.tablet_overlay_menu&quot;,&quot;classes&quot;:&quot;tablet_overlay&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-6d75e2e4 elementor-section-height-full elementor-section-items-top elementor-section-full_width tablet_overlay_popup elementor-section-height-default" data-id="6d75e2e4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-c590aba" data-id="c590aba" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6b5d2638 elementor-nav-menu--dropdown-none elementor-nav-menu__align-start elementor-widget elementor-widget-nav-menu" data-id="6b5d2638" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-none"> <ul id="menu-1-6b5d2638" class="elementor-nav-menu sm-vertical"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" class="elementor-sub-item">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item">EAGE Event Terms &amp; Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item">Women in Geoscience &amp; Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item">Young Professionals</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item">Basin &amp; Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item">Scholarships &amp; Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item">EAGE Membership &amp; Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" class="elementor-sub-item">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8520"><a href="https://eage.org/media/digital-newsletters/" class="elementor-sub-item">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9742"><a href="https://eage.org/media/nsg-newsletters/" class="elementor-sub-item">NSG Newsletters</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-6b5d2638" class="elementor-nav-menu sm-vertical"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item" tabindex="-1">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item" tabindex="-1">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item" tabindex="-1">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item" tabindex="-1">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item" tabindex="-1">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item" tabindex="-1">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item" tabindex="-1">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item" tabindex="-1">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item" tabindex="-1">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item" tabindex="-1">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item" tabindex="-1">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item" tabindex="-1">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" class="elementor-sub-item" tabindex="-1">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item" tabindex="-1">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item" tabindex="-1">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item" tabindex="-1">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item" tabindex="-1">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item" tabindex="-1">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item" tabindex="-1">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item" tabindex="-1">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item" tabindex="-1">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item" tabindex="-1">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item" tabindex="-1">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item" tabindex="-1">EAGE Event Terms &amp; Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item" tabindex="-1">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item" tabindex="-1">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item" tabindex="-1">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item" tabindex="-1">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item" tabindex="-1">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item" tabindex="-1">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item" tabindex="-1">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item" tabindex="-1">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item" tabindex="-1">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item" tabindex="-1">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item" tabindex="-1">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item" tabindex="-1">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item" tabindex="-1">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item" tabindex="-1">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item" tabindex="-1">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item" tabindex="-1">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item" tabindex="-1">Women in Geoscience &amp; Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item" tabindex="-1">Young Professionals</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item" tabindex="-1">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item" tabindex="-1">Basin &amp; Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item" tabindex="-1">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item" tabindex="-1">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item" tabindex="-1">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item" tabindex="-1">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item" tabindex="-1">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item" tabindex="-1">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item" tabindex="-1">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item" tabindex="-1">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item" tabindex="-1">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item" tabindex="-1">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item" tabindex="-1">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item" tabindex="-1">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item" tabindex="-1">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item" tabindex="-1">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item" tabindex="-1">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item" tabindex="-1">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item" tabindex="-1">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item" tabindex="-1">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item" tabindex="-1">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item" tabindex="-1">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item" tabindex="-1">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item" tabindex="-1">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item" tabindex="-1">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item" tabindex="-1">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item" tabindex="-1">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item" tabindex="-1">Scholarships &amp; Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item" tabindex="-1">EAGE Membership &amp; Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item" tabindex="-1">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item" tabindex="-1">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item" tabindex="-1">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item" tabindex="-1">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item" tabindex="-1">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item" tabindex="-1">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item" tabindex="-1">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item" tabindex="-1">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item" tabindex="-1">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item" tabindex="-1">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item" tabindex="-1">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item" tabindex="-1">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item" tabindex="-1">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item" tabindex="-1">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" class="elementor-sub-item" tabindex="-1">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item" tabindex="-1">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item" tabindex="-1">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item" tabindex="-1">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item" tabindex="-1">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item" tabindex="-1">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8520"><a href="https://eage.org/media/digital-newsletters/" class="elementor-sub-item" tabindex="-1">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9742"><a href="https://eage.org/media/nsg-newsletters/" class="elementor-sub-item" tabindex="-1">NSG Newsletters</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item" tabindex="-1">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item" tabindex="-1">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-017d646" data-id="017d646" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3613d17 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3613d17" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-921c94e" data-id="921c94e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-59b1439 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="59b1439" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-1577a46" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-7e3fc8d" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-32325cb" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-c950098" target="_blank"> <span class="elementor-screen-only">Instagram</span> <i class="fab fa-instagram"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-358e98a" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1653" class="elementor elementor-1653 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_media&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5640d53f elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="5640d53f" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-6d5f1c71" data-id="6d5f1c71" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1d09e456" data-id="1d09e456" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7ee34a70 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="7ee34a70" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-media-container"><ul id="menu-menu-media-1" class="menu"><li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2595"><a href="#">First Break</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2602"><a href="https://eage.org/media/about-firstbreak/">About First Break</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2596"><a href="#">Earthdoc</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2605"><a href="https://eage.org/media/earthdoc/">EarthDoc</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2597"><a href="#">Journals</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5534"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5535"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5536"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5537"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17866"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy">Geoenergy</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2598"><a href="#">Books</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2610"><a href="https://eage.org/media/online-bookshop/">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5527"><a href="https://eage.org/media/publishing-with-eage/">Publishing with EAGE</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2599"><a href="#">Newsletters</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-4051"><a href="https://eage.org/media/newsletters_stay-connected/">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-5528"><a href="https://eage.org/media/digital-newsletters/">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9740"><a href="https://eage.org/media/nsg-newsletters/">NSG Newsletters</a></li> </ul> </li> <li class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2601"><a href="#">Media Partners</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-2608"><a href="https://eage.org/media/media-partners/">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9659"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-24633947" data-id="24633947" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9614c8a elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="9614c8a" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1650" class="elementor elementor-1650 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_education&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-3141df06 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="3141df06" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-62ffc1ec" data-id="62ffc1ec" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-617cb706" data-id="617cb706" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-71692381 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="71692381" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-education-container"><ul id="menu-menu-education" class="menu"><li id="menu-item-1620" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1620"><a href="#">Highlights</a> <ul class="sub-menu"> <li id="menu-item-7940" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-7940"><a href="https://eage.org/education/highlights/">EAGE Education</a></li> <li id="menu-item-21601" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21601"><a href="https://eage.org/education/energy-transition-skills/">Energy Transition Skills</a></li> </ul> </li> <li id="menu-item-1621" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1621"><a href="#">Learning Geoscience</a> <ul class="sub-menu"> <li id="menu-item-3417" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3417"><a href="https://eage.org/education/learning-geoscience/">About Learning Geoscience</a></li> <li id="menu-item-3415" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3415"><a href="https://eage.org/education/electures/">E-Lectures</a></li> <li id="menu-item-3419" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3419"><a href="https://eage.org/education/webinars/">Webinars</a></li> <li id="menu-item-5524" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5524"><a href="https://eage.org/education/how-to-videos/">How-to Videos</a></li> </ul> </li> <li id="menu-item-3412" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3412"><a href="#">Short Courses</a> <ul class="sub-menu"> <li id="menu-item-5989" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5989"><a href="https://eage.org/education/education-tours/">Education Tours</a></li> <li id="menu-item-5525" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5525"><a href="https://eage.org/education/interactive-online-short-courses/">Interactive Online Short Courses</a></li> <li id="menu-item-5526" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-5526"><a href="https://eage.org/education/in-house-training/">In-House Training</a></li> <li id="menu-item-6209" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-6209"><a href="https://eage.org/education/classroom-training/">Classroom Training</a></li> </ul> </li> <li id="menu-item-7944" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-7944"><a href="#">Eurgeol title</a> <ul class="sub-menu"> <li id="menu-item-3416" class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3416"><a href="https://eage.org/education/eurgeol-title/">Accreditation</a></li> </ul> </li> <li id="menu-item-14706" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14706"><a href="#">Overview</a> <ul class="sub-menu"> <li id="menu-item-14708" class="menu-button menu-item menu-item-type-post_type menu-item-object-education menu-item-14708"><a href="https://eage.org/education/education-calendar/">Education Calendar</a></li> <li id="menu-item-6210" class="menu-button menu-item menu-item-type-post_type menu-item-object-education menu-item-6210"><a href="https://eage.org/education/short-course-catalogue/">Short Course Catalogue</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-55e52e7b" data-id="55e52e7b" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7e0500d0 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="7e0500d0" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1647" class="elementor elementor-1647 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_students&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4a63d3e6 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="4a63d3e6" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-39fe2b25" data-id="39fe2b25" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-2a95800e" data-id="2a95800e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-103792c3 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="103792c3" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-students-container"><ul id="menu-menu-students" class="menu"><li id="menu-item-1617" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1617"><a href="#">Student Chapters</a> <ul class="sub-menu"> <li id="menu-item-2583" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2583"><a href="https://eage.org/students/about-student-chapter/">About Student Chapters</a></li> <li id="menu-item-2584" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2584"><a href="https://eage.org/students/establish-your-student-chapter/">Establish a Student Chapter</a></li> <li id="menu-item-5988" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-5988"><a href="https://eage.org/students/your-student-chapter/">Your Student Chapter</a></li> </ul> </li> <li id="menu-item-1619" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1619"><a href="#">Online Activities</a> <ul class="sub-menu"> <li id="menu-item-2593" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2593"><a href="https://eage.org/students/webinars/">Student Webinars</a></li> <li id="menu-item-5523" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-5523"><a href="https://eage.org/students/e-summits/">Student E-Summits</a></li> </ul> </li> <li id="menu-item-1618" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1618"><a href="#">Geo Quiz</a> <ul class="sub-menu"> <li id="menu-item-2580" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2580"><a href="https://eage.org/students/about-geo-quiz/">About the Geo Quiz</a></li> <li id="menu-item-2586" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2586"><a href="https://eage.org/students/join-the-geoquiz/">Join the Geo Quiz</a></li> <li id="menu-item-2585" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2585"><a href="https://eage.org/students/geo-quiz/">Geo Quiz Hall of Fame</a></li> </ul> </li> <li id="menu-item-2575" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2575"><a href="#">Laurie Dake Challenge</a> <ul class="sub-menu"> <li id="menu-item-2581" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2581"><a href="https://eage.org/students/about-laurie-dake-challenge/">About the Laurie Dake Challenge</a></li> <li id="menu-item-2587" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2587"><a href="https://eage.org/students/join-the-laurie-dake-challenge/">Join the Laurie Dake Challenge</a></li> <li id="menu-item-6203" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-6203"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li id="menu-item-2576" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2576"><a href="#">Minus co2 Challenge</a> <ul class="sub-menu"> <li id="menu-item-2582" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2582"><a href="https://eage.org/students/about-minus-co2-challenge/">About Minus CO2 Challenge</a></li> <li id="menu-item-2588" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2588"><a href="https://eage.org/students/minus-co2-challenge/">Join the Minus CO2 Challenge</a></li> <li id="menu-item-2589" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2589"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li id="menu-item-2577" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2577"><a href="#">Support</a> <ul class="sub-menu"> <li id="menu-item-2590" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2590"><a href="https://eage.org/students/scholarship-support/">Scholarships &amp; Awards</a></li> <li id="menu-item-2594" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2594"><a href="https://eage.org/students/awards-support/">EAGE Membership &amp; Grants</a></li> <li id="menu-item-16377" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-16377"><a href="https://eage.org/students/support-ukraine-professional-development-fund/">Ukraine Professional Development Fund</a></li> </ul> </li> <li id="menu-item-2578" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2578"><a href="#">EAGE Student Fund</a> <ul class="sub-menu"> <li id="menu-item-2579" class="menu-item menu-item-type-post_type menu-item-object-students menu-item-2579"><a href="https://eage.org/students/about-eage-student-fund/">About the EAGE Student Fund</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-1d9764b6" data-id="1d9764b6" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e7ceaed elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="e7ceaed" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1644" class="elementor elementor-1644 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_communities&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5ac0563c elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="5ac0563c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4101717a" data-id="4101717a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-14ea76b4 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="14ea76b4" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-communities-container"><ul id="menu-menu-communities" class="menu"><li id="menu-item-1601" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1601"><a href="#">Local Chapters</a> <ul class="sub-menu"> <li id="menu-item-2554" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2554"><a href="https://eage.org/communities/eage-local-chapters/">Local Chapters</a></li> <li id="menu-item-2555" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2555"><a href="https://eage.org/communities/find-your-local-chapter/">Find your Local Chapter</a></li> <li id="menu-item-2556" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2556"><a href="https://eage.org/communities/local-chapter-prizes/">Local Chapter Prizes</a></li> </ul> </li> <li id="menu-item-1602" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1602"><a href="#">Special Interest Communities</a> <ul class="sub-menu"> <li id="menu-item-2557" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2557"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/">Women in Geoscience &amp; Engineering</a></li> <li id="menu-item-2560" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2560"><a href="https://eage.org/communities/young-professionals/">Young Professionals</a></li> </ul> </li> <li id="menu-item-2562" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2562"><a href="#">Technical Communities</a> <ul class="sub-menu"> <li id="menu-item-2563" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2563"><a href="https://eage.org/communities/artificial-intelligence-community/">Artificial Intelligence</a></li> <li id="menu-item-7945" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-7945"><a href="https://eage.org/communities/basinpetroleumsystems/">Basin &amp; Petroleum Systems Analysis</a></li> <li id="menu-item-2566" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2566"><a href="https://eage.org/communities/decabonization-and-energy-transition/">Decarbonization and Energy Transition</a></li> <li id="menu-item-9545" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9545"><a href="https://eage.org/communities/geochemistry/">Geochemistry</a></li> <li id="menu-item-17136" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-17136"><a href="https://eage.org/communities/geohazards/">Geohazards</a></li> <li id="menu-item-4035" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4035"><a href="https://eage.org/communities/hydrogeophysics/">Hydrogeophysics</a></li> <li id="menu-item-4036" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4036"><a href="https://eage.org/communities/critical-minerals/">Critical Minerals</a></li> <li id="menu-item-10326" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10326"><a href="https://eage.org/communities/seismic-acquisition/">Seismic Acquisition</a></li> <li id="menu-item-10327" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10327"><a href="https://eage.org/communities/seismic-interpretation/">Seismic Interpretation</a></li> <li id="menu-item-16853" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-16853"><a href="https://eage.org/communities/uav/">Uncrewed Aerial Vehicles</a></li> <li id="menu-item-23789" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23789"><a href="https://eage.org/communities/ccs/">CCS</a></li> <li id="menu-item-23786" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23786"><a href="https://eage.org/communities/geothermal-energy/">Geothermal Energy</a></li> <li id="menu-item-23787" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23787"><a href="https://eage.org/communities/wind-energy/">Wind Energy</a></li> <li id="menu-item-23788" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23788"><a href="https://eage.org/communities/hydrogen-and-energy-storage/">Hydrogen and Energy Storage</a></li> <li id="menu-item-25654" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25654"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li id="menu-item-2570" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2570"><a href="#">EU Affairs</a> <ul class="sub-menu"> <li id="menu-item-2572" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-2572"><a href="https://eage.org/communities/eu-affairs/">About EU Affairs</a></li> </ul> </li> <li id="menu-item-2573" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2573"><a href="#">Community Activities</a> <ul class="sub-menu"> <li id="menu-item-9782" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9782"><a href="https://eage.org/events/calendar-of-events/">Calendar of Events</a></li> <li id="menu-item-4058" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-4058"><a href="https://eage.org/communities/mentoring-programme/">Mentoring Programme</a></li> <li id="menu-item-6208" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-6208"><a href="https://eage.org/communities/pace-event-support/">PACE Event Support</a></li> <li id="menu-item-19318" class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19318"><a href="https://eage.org/communities/resources/">Resources</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-587493b3" data-id="587493b3" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f7ab452 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="f7ab452" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1641" class="elementor elementor-1641 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_membership&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-52fc1a12 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="52fc1a12" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-4be13bf3" data-id="4be13bf3" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7e797f79" data-id="7e797f79" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-336a75d elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="336a75d" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-membership-container"><ul id="menu-menu-membership" class="menu"><li id="menu-item-1591" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1591"><a href="#">Membership</a> <ul class="sub-menu"> <li id="menu-item-12859" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12859"><a href="https://eage.org/membership/welcome/">Welcome to EAGE</a></li> <li id="menu-item-2553" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2553"><a href="https://eage.org/membership/benefits/">Benefits</a></li> <li id="menu-item-9121" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9121"><a href="https://eage.org/membership/membershiptypes/">Types of Membership</a></li> <li id="menu-item-2552" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2552"><a href="https://eage.org/membership/recognition-programme/">Recognition Programme</a></li> <li id="menu-item-6197" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-6197"><a href="https://eage.org/membership/membership-terms-and-conditions/">Membership Terms and Conditions</a></li> </ul> </li> <li id="menu-item-1592" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1592"><a href="#">Support</a> <ul class="sub-menu"> <li id="menu-item-2551" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2551"><a href="https://eage.org/membership/hardship-programme/">Hardship Programme</a></li> <li id="menu-item-2550" class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-2550"><a href="https://eage.org/membership/travel-grant/">Individual Support – PACE</a></li> </ul> </li> <li id="menu-item-1593" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1593"><a href="#">Join or Renew</a> <ul class="sub-menu"> <li id="menu-item-4328" class="menu-button menu-item menu-item-type-custom menu-item-object-custom menu-item-4328"><a href="https://eage.eventsair.com/eage-membership-module/membership-application">Join EAGE</a></li> <li id="menu-item-4329" class="menu-button menu-item menu-item-type-custom menu-item-object-custom menu-item-4329"><a href="https://eage.eventsair.com/eage-membership-module/membership-application">Renew your Membership</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-271e2f07" data-id="271e2f07" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-01d6f3c elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="01d6f3c" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1588" class="elementor elementor-1588 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_events&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-b00dac6 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="b00dac6" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e9a80bb" data-id="e9a80bb" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-10d41b7c" data-id="10d41b7c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-267581f6 elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="267581f6" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-events-container"><ul id="menu-menu-events" class="menu"><li id="menu-item-1583" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1583"><a href="#">About Events</a> <ul class="sub-menu"> <li id="menu-item-2547" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-2547"><a href="https://eage.org/events/conferences/">Conferences</a></li> <li id="menu-item-2548" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-2548"><a href="https://eage.org/events/workshops/">Workshops</a></li> <li id="menu-item-9798" class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9798"><a href="https://eage.org/events/eage-event-terms-conditions/">EAGE Event Terms &amp; Conditions</a></li> </ul> </li> <li id="menu-item-1584" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1584"><a href="#">Highlights</a> <ul class="sub-menu"> <li id="menu-item-4006" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4006"><a target="_blank" href="https://eagedigital.org/">EAGE Digital 2024</a></li> <li id="menu-item-16494" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16494"><a target="_blank" href="https://eageannual.org/">EAGE Annual 2024</a></li> <li id="menu-item-19103" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19103"><a target="_blank" href="https://eagensg.org/">EAGE Near Surface Geoscience 2024</a></li> <li id="menu-item-21877" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21877"><a target="_blank" href="https://eageget.org/">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li id="menu-item-1585" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1585"><a href="#">Overview</a> <ul class="sub-menu"> <li id="menu-item-9426" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9426"><a href="https://eage.org/events/calendar-of-events/">Calendar of Events</a></li> <li id="menu-item-9424" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9424"><a href="https://eage.org/events/calendar-of-online-events/">Calendar of Online Events</a></li> <li id="menu-item-9425" class="menu-button menu-item menu-item-type-post_type menu-item-object-events menu-item-9425"><a href="https://eage.org/events/calendar-of-past-events/">Calendar of Past Events</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-36d6f532" data-id="36d6f532" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-ce9dfa9 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="ce9dfa9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1566" class="elementor elementor-1566 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_mobile&quot;,&quot;entrance_animation_mobile&quot;:&quot;none&quot;,&quot;exit_animation_mobile&quot;:&quot;none&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-27a275b4 elementor-section-full_width elementor-section-content-top mobile_menu_container_popup elementor-section-height-default elementor-section-height-default" data-id="27a275b4" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dc0edff" data-id="dc0edff" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-77cd725 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="77cd725" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-33d9293" data-id="33d9293" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-00db6a8 elementor-widget elementor-widget-image" data-id="00db6a8" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/EAGE_logo_header.svg?w=800" title="EAGE_logo" alt="" loading="lazy" /> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d7ee7bc" data-id="d7ee7bc" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f04bbc4 elementor-widget elementor-widget-image" data-id="f04bbc4" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img src="https://eage.org/wp-content/uploads/2020/05/Mobile_MenuIcon_closing.svg?w=150&#038;h=150&#038;crop=1" title="Mobile_MenuIcon_closing" alt="" loading="lazy" /> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-444c9ec elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="444c9ec" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-624d41a" data-id="624d41a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-afad4b1 mobile_top_menu elementor-widget elementor-widget-text-editor" data-id="afad4b1" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <p style="text-align: center;">           <a href="https://www.firstbreak.org/">First Break</a>           <a href="https://www.earthdoc.org/">EarthDoc</a></p> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-d22a331 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="d22a331" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1220ef8" data-id="1220ef8" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-background-overlay"></div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-df7c7e4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="df7c7e4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-4315d2c" data-id="4315d2c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d0dba09 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="d0dba09" data-element_type="widget" data-settings="{&quot;skin&quot;:&quot;classic&quot;}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://eage.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-d0dba09">Search</label> <input id="elementor-search-form-d0dba09" placeholder="Search..." class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> <span class="elementor-screen-only">Search</span> </button> </div> </form> </search> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3752fb4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3752fb4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-025f73c" data-id="025f73c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1a7ce65 elementor-nav-menu__text-align-aside elementor-widget elementor-widget-nav-menu" data-id="1a7ce65" data-element_type="widget" data-settings="{&quot;layout&quot;:&quot;dropdown&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-1a7ce65" class="elementor-nav-menu"><li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1349"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About EAGE</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1328"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">General</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3501"><a href="https://eage.org/about_eage/mission-and-objectives/" class="elementor-sub-item" tabindex="-1">Mission and Objectives</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-9309"><a href="https://eage.org/about_eage/eage-history/" class="elementor-sub-item" tabindex="-1">History</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3498"><a href="https://eage.org/about_eage/agmm/" class="elementor-sub-item" tabindex="-1">AGMM</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3499"><a href="https://eage.org/about_eage/circles/" class="elementor-sub-item" tabindex="-1">Circles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25434"><a href="https://eage.org/about_eage/code-of-conduct/" class="elementor-sub-item" tabindex="-1">Code of Conduct</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1329"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Organization</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-20411"><a href="https://eage.org/about_eage/ballot/" class="elementor-sub-item" tabindex="-1">Ballot</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3502"><a href="https://eage.org/about_eage/board-and-bod/" class="elementor-sub-item" tabindex="-1">Board and BoD</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3504"><a href="https://eage.org/about_eage/committees/" class="elementor-sub-item" tabindex="-1">Committees</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3505"><a href="https://eage.org/about_eage/constitution/" class="elementor-sub-item" tabindex="-1">Constitution</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3503"><a href="https://eage.org/about_eage/by-laws/" class="elementor-sub-item" tabindex="-1">By-Laws</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1330"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Funds</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3508"><a href="https://eage.org/about_eage/student-fund/" class="elementor-sub-item" tabindex="-1">Student Fund</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3506"><a href="https://eage.org/about_eage/green-fund/" class="elementor-sub-item" tabindex="-1">Green Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1331"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Cooperations</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3509"><a href="https://eage.org/about_eage/associated-societies/" class="elementor-sub-item" tabindex="-1">Associated Societies</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3511"><a href="https://eage.org/about_eage/joint-events/" class="elementor-sub-item" tabindex="-1">Joint Events</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1332"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Global Offices</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8453"><a href="/about_eage/global-offices" class="elementor-sub-item" tabindex="-1">Europe Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8455"><a href="/about_eage/global-offices#middle-east_africa_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Middle East / Africa Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8458"><a href="/about_eage/global-offices#asia-pacific_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Asia Pacific Office</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8459"><a href="/about_eage/global-offices#latin-americas_office" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Latin America Office</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1333"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Careers</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3515"><a href="https://eage.org/about_eage/careers/" class="elementor-sub-item" tabindex="-1">Work with EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3513"><a href="https://eage.org/about_eage/careers-in-the-industry/" class="elementor-sub-item" tabindex="-1">Careers in the Industry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-3514"><a href="https://eage.org/about_eage/volunteer/" class="elementor-sub-item" tabindex="-1">Volunteering Opportunities</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8492"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Awards</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8494"><a href="https://eage.org/about_eage/nominations/" class="elementor-sub-item" tabindex="-1">Nominations</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8495"><a href="https://eage.org/about_eage/overview-awards/" class="elementor-sub-item" tabindex="-1">Overview Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-8493"><a href="https://eage.org/about_eage/award-winners/" class="elementor-sub-item" tabindex="-1">Award Winners</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1350"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3518"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">About Events</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3516"><a href="https://eage.org/events/conferences/" class="elementor-sub-item" tabindex="-1">Conferences</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-3517"><a href="https://eage.org/events/workshops/" class="elementor-sub-item" tabindex="-1">Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-20412"><a href="https://eage.org/events/eage-event-terms-conditions/" class="elementor-sub-item" tabindex="-1">EAGE Event Terms &amp; Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3519"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20413"><a href="https://eagedigital.org/" class="elementor-sub-item" tabindex="-1">EAGE Digital 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16612"><a target="_blank" href="https://eageannual.org/" class="elementor-sub-item" tabindex="-1">EAGE Annual 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8497"><a target="_blank" href="https://eagensg.org/" class="elementor-sub-item" tabindex="-1">EAGE Near Surface Geoscience 2024</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21878"><a href="https://eageget.org/" class="elementor-sub-item" tabindex="-1">EAGE Global Energy Transition 2024</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3520"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9429"><a href="https://eage.org/events/calendar-of-events/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9427"><a href="https://eage.org/events/calendar-of-online-events/" class="elementor-sub-item" tabindex="-1">Calendar of Online Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-events menu-item-9428"><a href="https://eage.org/events/calendar-of-past-events/" class="elementor-sub-item" tabindex="-1">Calendar of Past Events</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1351"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3522"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Membership</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-12860"><a href="https://eage.org/membership/welcome/" class="elementor-sub-item" tabindex="-1">Welcome to EAGE</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3525"><a href="https://eage.org/membership/benefits/" class="elementor-sub-item" tabindex="-1">Benefits</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-9123"><a href="https://eage.org/membership/membershiptypes/" class="elementor-sub-item" tabindex="-1">Types of Membership</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3527"><a href="https://eage.org/membership/recognition-programme/" class="elementor-sub-item" tabindex="-1">Recognition Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-8498"><a href="https://eage.org/membership/membership-terms-and-conditions/" class="elementor-sub-item" tabindex="-1">Membership Terms and Conditions</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3523"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3526"><a href="https://eage.org/membership/hardship-programme/" class="elementor-sub-item" tabindex="-1">Hardship Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-membership menu-item-3528"><a href="https://eage.org/membership/travel-grant/" class="elementor-sub-item" tabindex="-1">Individual Support – PACE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3524"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Join or Renew</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Join EAGE</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8500"><a href="https://eage.eventsair.com/eage-membership-module/membership-application" class="elementor-sub-item" tabindex="-1">Renew your Membership</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1352"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3529"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Local Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3539"><a href="https://eage.org/communities/eage-local-chapters/" class="elementor-sub-item" tabindex="-1">EAGE Local Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3544"><a href="https://eage.org/communities/find-your-local-chapter/" class="elementor-sub-item" tabindex="-1">Find your Local Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3546"><a href="https://eage.org/communities/local-chapter-prizes/" class="elementor-sub-item" tabindex="-1">Local Chapter Prizes</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3530"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Special Interest Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3540"><a href="https://eage.org/communities/women-in-geoscience-and-engineering/" class="elementor-sub-item" tabindex="-1">Women in Geoscience &amp; Engineering</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3541"><a href="https://eage.org/communities/young-professionals/" class="elementor-sub-item" tabindex="-1">Young Professionals</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3532"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Technical Communities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3536"><a href="https://eage.org/communities/artificial-intelligence-community/" class="elementor-sub-item" tabindex="-1">Artificial Intelligence</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8502"><a href="https://eage.org/communities/basinpetroleumsystems/" class="elementor-sub-item" tabindex="-1">Basin &amp; Petroleum Systems Analysis</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3537"><a href="https://eage.org/communities/decabonization-and-energy-transition/" class="elementor-sub-item" tabindex="-1">Decarbonization and Energy Transition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-9548"><a href="https://eage.org/communities/geochemistry/" class="elementor-sub-item" tabindex="-1">Geochemistry</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20409"><a href="https://eage.org/communities/geohazards/" class="elementor-sub-item" tabindex="-1">Geohazards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8503"><a href="https://eage.org/communities/hydrogeophysics/" class="elementor-sub-item" tabindex="-1">Hydrogeophysics</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8504"><a href="https://eage.org/communities/critical-minerals/" class="elementor-sub-item" tabindex="-1">Critical Minerals</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10328"><a href="https://eage.org/communities/seismic-acquisition/" class="elementor-sub-item" tabindex="-1">Seismic Acquisition</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-10329"><a href="https://eage.org/communities/seismic-interpretation/" class="elementor-sub-item" tabindex="-1">Seismic Interpretation</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-20410"><a href="https://eage.org/communities/uav/" class="elementor-sub-item" tabindex="-1">Uncrewed Aerial Vehicles</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23793"><a href="https://eage.org/communities/ccs/" class="elementor-sub-item" tabindex="-1">CCS</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23790"><a href="https://eage.org/communities/geothermal-energy/" class="elementor-sub-item" tabindex="-1">Geothermal Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23791"><a href="https://eage.org/communities/wind-energy/" class="elementor-sub-item" tabindex="-1">Wind Energy</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-23792"><a href="https://eage.org/communities/hydrogen-and-energy-storage/" class="elementor-sub-item" tabindex="-1">Hydrogen and Energy Storage</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-25655"><a href="https://eage.org/communities/enhancing-hydrocarbon-recovery-for-sustainability/" class="elementor-sub-item" tabindex="-1">Enhancing Hydrocarbon Recovery for Sustainability</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3534"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EU Affairs</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-3538"><a href="https://eage.org/communities/eu-affairs/" class="elementor-sub-item" tabindex="-1">About EU Affairs</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3535"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Community Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3550"><a href="https://events.eage.org/" class="elementor-sub-item" tabindex="-1">Calendar of Events</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8505"><a href="https://eage.org/communities/mentoring-programme/" class="elementor-sub-item" tabindex="-1">Mentoring Programme</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-8506"><a href="https://eage.org/communities/pace-event-support/" class="elementor-sub-item" tabindex="-1">PACE Event Support</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-communities menu-item-19319"><a href="https://eage.org/communities/resources/" class="elementor-sub-item" tabindex="-1">Resources</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1353"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Students</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3551"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Student Chapters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3563"><a href="https://eage.org/students/about-student-chapter/" class="elementor-sub-item" tabindex="-1">About Student Chapters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3564"><a href="https://eage.org/students/establish-your-student-chapter/" class="elementor-sub-item" tabindex="-1">Establish a Student Chapter</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8508"><a href="https://eage.org/students/your-student-chapter/" class="elementor-sub-item" tabindex="-1">Your Student Chapter</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3552"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Online Activities</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3573"><a href="https://eage.org/students/webinars/" class="elementor-sub-item" tabindex="-1">Student Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8509"><a href="https://eage.org/students/e-summits/" class="elementor-sub-item" tabindex="-1">Student E-Summits</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3553"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">GEO Quiz</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3560"><a href="https://eage.org/students/about-geo-quiz/" class="elementor-sub-item" tabindex="-1">About the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3566"><a href="https://eage.org/students/join-the-geoquiz/" class="elementor-sub-item" tabindex="-1">Join the Geo Quiz</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3565"><a href="https://eage.org/students/geo-quiz/" class="elementor-sub-item" tabindex="-1">Geo Quiz Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3554"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Laurie Dake Challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3561"><a href="https://eage.org/students/about-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">About the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3567"><a href="https://eage.org/students/join-the-laurie-dake-challenge/" class="elementor-sub-item" tabindex="-1">Join the Laurie Dake Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-8507"><a href="https://eage.org/students/laurie-dake-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Laurie Dake Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3555"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Minus CO2 challenge</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3562"><a href="https://eage.org/students/about-minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">About Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3568"><a href="https://eage.org/students/minus-co2-challenge/" class="elementor-sub-item" tabindex="-1">Join the Minus CO2 Challenge</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3569"><a href="https://eage.org/students/minus-co2-challenge-hall-of-fame/" class="elementor-sub-item" tabindex="-1">Minus CO2 Challenge Hall of Fame</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3556"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Support</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3570"><a href="https://eage.org/students/scholarship-support/" class="elementor-sub-item" tabindex="-1">Scholarships &amp; Awards</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3574"><a href="https://eage.org/students/awards-support/" class="elementor-sub-item" tabindex="-1">EAGE Membership &amp; Grants</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-20414"><a href="https://eage.org/students/support-ukraine-professional-development-fund/" class="elementor-sub-item" tabindex="-1">Ukraine Professional Development Fund</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3557"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EAGE Student Fund</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-students menu-item-3559"><a href="https://eage.org/students/about-eage-student-fund/" class="elementor-sub-item" tabindex="-1">About the EAGE Student Fund</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1354"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Education</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3575"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Highlights</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8511"><a href="https://eage.org/education/highlights/" class="elementor-sub-item" tabindex="-1">EAGE Education</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-21602"><a href="https://eage.org/education/energy-transition-skills/" class="elementor-sub-item" tabindex="-1">Energy Transition Skills</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3576"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Learning Geoscience</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8519"><a href="https://eage.org/education/learning-geoscience/" class="elementor-sub-item" tabindex="-1">About Learning Geoscience</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8510"><a href="https://eage.org/education/electures/" class="elementor-sub-item" tabindex="-1">E-Lectures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8517"><a href="https://eage.org/education/webinars/" class="elementor-sub-item" tabindex="-1">Webinars</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8513"><a href="https://eage.org/education/how-to-videos/" class="elementor-sub-item" tabindex="-1">How-to Videos</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3579"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Short Courses</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8512"><a href="https://eage.org/education/education-tours/" class="elementor-sub-item" tabindex="-1">Education Tours</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8515"><a href="https://eage.org/education/interactive-online-short-courses/" class="elementor-sub-item" tabindex="-1">Interactive Online Short Courses</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8514"><a href="https://eage.org/education/in-house-training/" class="elementor-sub-item" tabindex="-1">In-House Training</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8518"><a href="https://eage.org/education/classroom-training/" class="elementor-sub-item" tabindex="-1">Classroom Training</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3581"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Eurgeol Title</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-3584"><a href="https://eage.org/education/eurgeol-title/" class="elementor-sub-item" tabindex="-1">Accreditation</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-14709"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Overview</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-14710"><a href="https://eage.org/education/education-calendar/" class="elementor-sub-item" tabindex="-1">Education Calendar</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-education menu-item-8516"><a href="https://eage.org/education/short-course-catalogue/" class="elementor-sub-item" tabindex="-1">Short Course Catalogue</a></li> </ul> </li> </ul> </li> <li class="mobile_main_menu_item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1355"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Media</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3589"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">First Break</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3596"><a href="https://eage.org/media/about-firstbreak/" class="elementor-sub-item" tabindex="-1">About First Break</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3590"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">EarthDoc</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3599"><a href="https://eage.org/media/earthdoc/" class="elementor-sub-item" tabindex="-1">EarthDoc</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3591"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Journals</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3588"><a href="https://eage.org/media/nearsurfacegeophysics#near_surface_geophysics" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Near Surface Geophysics</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3594"><a href="https://eage.org/media/nearsurfacegeophysics#petroleum_geoscience" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Petroleum Geoscience</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8522"><a href="https://eage.org/media/nearsurfacegeophysics#geophysical_prospecting" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geophysical Prospecting</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8523"><a href="https://eage.org/media/nearsurfacegeophysics#basin_research" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Basin Research</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17867"><a href="https://eage.org/media/nearsurfacegeophysics#geoenergy" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Geoenergy</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3592"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Books</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3604"><a href="https://eage.org/media/online-bookshop/" class="elementor-sub-item" tabindex="-1">Online Bookshop</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3597"><a href="https://eage.org/media/publishing-with-eage/" class="elementor-sub-item" tabindex="-1">Publishing with EAGE</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3593"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Newsletters</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8521"><a href="https://eage.org/media/newsletters_stay-connected/" class="elementor-sub-item" tabindex="-1">Stay Connected</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-8520"><a href="https://eage.org/media/digital-newsletters/" class="elementor-sub-item" tabindex="-1">Digital Newsletters</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9742"><a href="https://eage.org/media/nsg-newsletters/" class="elementor-sub-item" tabindex="-1">NSG Newsletters</a></li> </ul> </li> <li class="mobile_main_subtitle menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3595"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Media Partners</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-3602"><a href="https://eage.org/media/media-partners/" class="elementor-sub-item" tabindex="-1">Media Partners</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-media menu-item-9661"><a href="https://eage.org/media/copyrights-and-use-of-eage-materials/" class="elementor-sub-item" tabindex="-1">Copyrights and use of EAGE materials</a></li> </ul> </li> </ul> </li> </ul> </nav> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3b3b8a4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="3b3b8a4" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a4b9c70" data-id="a4b9c70" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3cbbfb4 elementor-align-center elementor-widget elementor-widget-button" data-id="3cbbfb4" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a class="elementor-button elementor-button-link elementor-size-sm" href="#"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-icon"> <i aria-hidden="true" class="fas fa-phone-alt"></i> </span> <span class="elementor-button-text">Call Us</span> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-50455d9 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="50455d9" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-1577a46" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-358e98a" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-32325cb" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-7e3fc8d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1137" class="elementor elementor-1137 elementor-location-popup" data-elementor-settings="{&quot;entrance_animation&quot;:&quot;fadeInDown&quot;,&quot;exit_animation&quot;:&quot;fadeInDown&quot;,&quot;open_selector&quot;:&quot;.pop_abouteage&quot;,&quot;entrance_animation_duration&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;0.5&quot;,&quot;sizes&quot;:[]},&quot;a11y_navigation&quot;:&quot;yes&quot;,&quot;triggers&quot;:[],&quot;timing&quot;:[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-54464432 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="54464432" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a784336" data-id="a784336" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-5af8966f" data-id="5af8966f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-85623ab elementor-widget__width-inherit elementor-widget elementor-widget-wp-widget-nav_menu" data-id="85623ab" data-element_type="widget" data-widget_type="wp-widget-nav_menu.default"> <div class="elementor-widget-container"> <div class="menu-menu-about-eage-container"><ul id="menu-menu-about-eage" class="menu"><li id="menu-item-1124" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1124"><a href="#">General</a> <ul class="sub-menu"> <li id="menu-item-2337" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2337"><a href="https://eage.org/about_eage/mission-and-objectives/">Mission and Objectives</a></li> <li id="menu-item-6973" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-6973"><a href="https://eage.org/about_eage/eage-history/">History</a></li> <li id="menu-item-2336" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2336"><a href="https://eage.org/about_eage/agmm/">AGMM</a></li> <li id="menu-item-2318" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2318"><a href="https://eage.org/about_eage/circles/">Circles</a></li> <li id="menu-item-25432" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-25432"><a href="https://eage.org/about_eage/code-of-conduct/">Code of Conduct</a></li> </ul> </li> <li id="menu-item-1125" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1125"><a href="#">Organization</a> <ul class="sub-menu"> <li id="menu-item-19501" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-19501"><a href="https://eage.org/about_eage/ballot/">Ballot</a></li> <li id="menu-item-2339" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2339"><a href="https://eage.org/about_eage/board-and-bod/">Board and BoD</a></li> <li id="menu-item-2340" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2340"><a href="https://eage.org/about_eage/committees/">Committees</a></li> <li id="menu-item-2319" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2319"><a href="https://eage.org/about_eage/constitution/">Constitution</a></li> <li id="menu-item-2342" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2342"><a href="https://eage.org/about_eage/by-laws/">By-Laws</a></li> </ul> </li> <li id="menu-item-1126" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1126"><a href="#">Funds</a> <ul class="sub-menu"> <li id="menu-item-2322" class="hide_menu_item menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2322"><a href="https://eage.org/?post_type=about_eage&#038;p=2108">Structural Funds</a></li> <li id="menu-item-5224" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5224"><a href="https://eage.org/about_eage/funds">Student Fund</a></li> <li id="menu-item-4378" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4378"><a href="https://eage.org/about_eage/funds#green_fund">Green Fund</a></li> </ul> </li> <li id="menu-item-1150" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1150"><a href="#">Cooperations</a> <ul class="sub-menu"> <li id="menu-item-2324" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2324"><a href="https://eage.org/about_eage/associated-societies/">Associated Societies</a></li> <li id="menu-item-2325" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2325"><a href="https://eage.org/about_eage/joint-events/">Joint Events</a></li> <li id="menu-item-2323" class="hide_menu_item menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2323"><a href="https://eage.org/?post_type=about_eage&#038;p=2136">Corporate Partners</a></li> </ul> </li> <li id="menu-item-1151" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1151"><a href="#">Global Offices</a> <ul class="sub-menu"> <li id="menu-item-5576" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5576"><a href="/about_eage/global-offices">Europe Office</a></li> <li id="menu-item-5577" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5577"><a href="/about_eage/global-offices#middle-east_africa_office">Middle East / Africa Office</a></li> <li id="menu-item-5579" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5579"><a href="/about_eage/global-offices#asia-pacific_office">Asia Pacific Office</a></li> <li id="menu-item-5580" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5580"><a href="/about_eage/global-offices#latin-americas_office">Latin America Office</a></li> </ul> </li> <li id="menu-item-1152" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1152"><a href="#">Careers</a> <ul class="sub-menu"> <li id="menu-item-2329" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2329"><a href="https://eage.org/about_eage/careers/">Work with EAGE</a></li> <li id="menu-item-2328" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2328"><a href="https://eage.org/about_eage/careers-in-the-industry/">Careers in the Industry</a></li> <li id="menu-item-2327" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2327"><a href="https://eage.org/about_eage/volunteer/">Volunteering Opportunities</a></li> </ul> </li> <li id="menu-item-2331" class="eage-menu-block-item menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-2331"><a href="#">Awards</a> <ul class="sub-menu"> <li id="menu-item-2334" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2334"><a href="https://eage.org/about_eage/nominations/">Nominations</a></li> <li id="menu-item-2333" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2333"><a href="https://eage.org/about_eage/overview-awards/">Overview Awards</a></li> <li id="menu-item-2332" class="menu-item menu-item-type-post_type menu-item-object-about_eage menu-item-2332"><a href="https://eage.org/about_eage/award-winners/">Award Winners</a></li> </ul> </li> </ul></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-7cb713e" data-id="7cb713e" data-element_type="column" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-8ce403f elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="8ce403f" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-57fb79f" href="https://www.facebook.com/EAGEglobal" target="_blank"> <span class="elementor-screen-only">Facebook</span> <i class="fab fa-facebook"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-a3355b7" href="https://www.linkedin.com/company/eagelinkedin/" target="_blank"> <span class="elementor-screen-only">Linkedin</span> <i class="fab fa-linkedin"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-70c7d92" href="http://youtube.com/user/EAGEchannel" target="_blank"> <span class="elementor-screen-only">Youtube</span> <i class="fab fa-youtube"></i> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-b11320d" href="https://twitter.com/EAGE_Global" target="_blank"> <span class="elementor-screen-only">Twitter</span> <i class="fab fa-twitter"></i> </a> </span> </div> </div> </div> </div> </div> </div> </section> </div> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link rel='stylesheet' id='elementor-post-3293-css' href='https://eage.org/wp-content/uploads/elementor/css/post-3293.css?ver=1731931368' media='all' /> <link rel='stylesheet' id='all-css-2' href='https://eage.org/wp-content/plugins/elementor/assets/css/widget-divider.min.css?m=1730132665g' type='text/css' media='all' /> <style id='core-block-supports-inline-css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='all-css-6' href='https://eage.org/wp-content/plugins/revslider/public/assets/css/rs6.css?m=1712303167g' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css'> #rs-demo-id {} </style> <script type="text/javascript" src="https://eage.org/_static/??-eJyVyzEOwjAMQNEL0bqkUpkQZ2kTCxwSO8QxqLenYmIAJOb/PjxK54UbcoOS7EysUPGuiQJWKLYk8jCrYlOIW1qaSNI+E/dRd/DnrdP7SeyTBXyleDOsKxiBl4q/RUa2TyKQNgiSu4pzWL+Ki8hVt3rKx/1hdG6YBjfGJweZYXg=" ></script><script type="text/javascript" src="https://eage.org/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-includes/js/dist/a11y.js?ver=55ca8e5ef2be0319312c" id="wp-a11y-js"></script> <script type="text/javascript" id="_ning_global-js-extra"> /* <![CDATA[ */ var _adn_ = {"ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","upload":{"dir":"vip:\/\/wp-content\/uploads\/angwp\/","src":"https:\/\/eage.org\/wp-content\/uploads\/angwp\/"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJytjUsOwjAMBS9E69JKsELcgi1KE4Mc5WPiRC23JyVsERskL6z3xmNYuKOgXTEoYOs8CqYnFAJVctTRs8OMvZUdVFLHkDFkYFfuFARUuC8MSgSzgCHJLennEoz7cfX5CrjWUijWQjhddXTFb1CT2pZSuBAuHFP+k5RVUs6ptfcUviq5a2snOhFnjHBLb8ZsillUr1WKRdBVxdmf9sdpHIfDME72BUiLgqc=" ></script><script type="text/javascript" src="https://eage.org/wp-includes/js/jquery/ui/datepicker.js?ver=1.13.3" id="jquery-ui-datepicker-js"></script> <script type="text/javascript" id="jquery-ui-datepicker-js-after"> /* <![CDATA[ */ jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":1,"isRTL":false});}); /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js,/wp-includes/js/imagesloaded.min.js?m=1732206023j" ></script><script type="text/javascript" src="https://stats.wp.com/e-202448.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script type="text/javascript" id="jetpack-stats-js-after"> /* <![CDATA[ */ _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"172520282\",\"post\":\"4945\",\"tz\":\"0\",\"srv\":\"eage.org\",\"hp\":\"vip\",\"j\":\"1:13.9.1\"}") ]); _stq.push([ "clickTrackerInit", "172520282", "4945" ]); /* ]]> */ </script> <script type="text/javascript" id="ivory-search-scripts-js-extra"> /* <![CDATA[ */ var IvorySearchVars = {"is_analytics_enabled":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJydzMEOwiAQBNAfkq61sZ6M30JhVRB2yS7Y+Pe2xpsmJl5n5g3MxTimilShpHYJpGC9N4pW3NVUNhmpQWlTCg6iQrizPN51lwN1UTfw5QQTLrKymCIMVhWrrn7GqVh3W9NOGtWQ8efFJ/+HnuU18iazbwl1sad87A/Dth9247iPT3C0ZGs=" ></script><script type="text/javascript" id="elementor-pro-frontend-js-before"> /* <![CDATA[ */ var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","nonce":"33f249eb44","urls":{"assets":"https:\/\/eage.org\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/eage.org\/wp-json\/"},"settings":{"lazy_load_background_images":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/eage.org\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver=3.24.4" id="elementor-pro-frontend-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":true},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":900,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":899,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":true},"version":"3.24.7","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"container":true,"container_grid":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"ai-layout":true,"landing-pages":true,"nested-elements":true,"link-in-bio":true,"floating-buttons":true,"display-conditions":true,"form-submissions":true,"mega-menu":true},"urls":{"assets":"https:\/\/eage.org\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/eage.org\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"38174a4f7d"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"viewport_tablet":899,"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":4945,"title":"EAGE%20News%20Archive%20-%20eage.org","excerpt":"","featuredImage":"https:\/\/eage.org\/wp-content\/uploads\/2020\/04\/Template_RevSlider_BG.jpg?w=800"}}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.24.7" id="elementor-frontend-js"></script> <script type="text/javascript" id="powerpack-frontend-js-extra"> /* <![CDATA[ */ var ppLogin = {"empty_username":"Enter a username or email address.","empty_password":"Enter password.","empty_password_1":"Enter a password.","empty_password_2":"Re-enter password.","empty_recaptcha":"Please check the captcha to verify you are not a robot.","email_sent":"A password reset email has been sent to the email address for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset.","reset_success":"Your password has been reset successfully.","ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php","show_password":"Show password","hide_password":"Hide password"}; var ppRegistration = {"invalid_username":"This username is invalid because it uses illegal characters. Please enter a valid username.","username_exists":"This username is already registered. Please choose another one.","empty_email":"Please type your email address.","invalid_email":"The email address isn\u2019t correct!","email_exists":"The email is already registered, please choose another one.","password":"Password must not contain the character \"\\\\\"","password_length":"Your password should be at least 8 characters long.","password_mismatch":"Password does not match.","invalid_url":"URL seems to be invalid.","recaptcha_php_ver":"reCAPTCHA API requires PHP version 5.3 or above.","recaptcha_missing_key":"Your reCAPTCHA Site or Secret Key is missing!","show_password":"Show password","hide_password":"Hide password","ajax_url":"https:\/\/eage.org\/wp-admin\/admin-ajax.php"}; var ppCoupons = {"copied_text":"Copied"}; /* ]]> */ </script> <script type="text/javascript" src="https://eage.org/_static/??-eJyVjMEOgkAMRH/ItSART8RvWaHiLmXbtDX8vsQEw8ELt5nJvAeLhJ6LY3EQeo+pGCDhvHbWIMoQzdAN8m+38IplIFQ7ZzvBH4Hwgiqxn8KG7CxP/b6H4zClBzgzeRJz1H1eZfe5q29NVTeXtr3mD1GDUes=" ></script><script type="text/javascript">var ang_tracker = "UA-6893078-30";var loaded_ang = [];var loaded_angzones = [];</script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10