Engineering Papers⌕ Search

SEARCH · Engineering Papers

Results for “Sentinel”

Search indexed NASA NTRS and DOE OSTI research on propulsion, heat transfer, battery materials and energy systems. Follow report and document links to the original sources.

Quote a phrase for an exact phrase match. Source license links do not imply unrestricted reuse.

At least 163 records · Page 9

The Lunar Transit Telescope (LTT) - An early lunar-based science and engineering mission

The Sentinel, the soft-landed lunar telescope of the LTT project, is described. The Sentinel is a two-meter telescope with virtually no moving parts which accomplishes an imaging survey of the sky over almost five octaves of the electromagnetic spectrum from the ultraviolet into the infrared, with an angular resolution better than 0.1 arsec/pixel. The Sentinel will incorporate innovative techniques of interest for future lunar-based telescopes and will return significant engineering data which can be incorporated into future lunar missions. The discussion covers thermal mapping of the Sentinel, measurement of the cosmic ray flux, lunar dust, micrometeoroid flux, the lunar atmosphere, and lunar regolith stability and seismic activity.

Mcgraw, John T.↗

Water Across Synthetic Aperture Radar Data (WASARD): SAR Water Body Classification for the Open Data Cube

The detection of inland water bodies from Synthetic Aperture Radar (SAR) data provides a great advantage over water detection with optical data, since SAR imaging is not impeded by cloud cover. Traditional methods of detecting water from SAR data involves using thresholding methods that can be labor intensive and imprecise. This paper describes Water Across Synthetic Aperture Radar Data (WASARD): a method of water detection from SAR data which automates and simplifies the thresholding process using machine learning on training data created from Geoscience Australia’s WOFS algorithm. Of the machine learning models tested, the Linear Support Vector Machine was determined to be optimal, with the option of training using solely the VH polarization or a combination of the VH and VV polarizations. WASARD was able to identify water in the target area with a correlation of 97% with WOFS. Sentinel-1, Open Data Cube, Earth Observations, Machine Learning, Water Detection 1. INTRODUCTION Water classification is an important function of Earth imaging satellites, as accurate remote classification of land and water can assist in land use analysis, flood prediction, climate change research, as well as a variety of agricultural applications [2]. The ability to identify bodies of water remotely via satellite is immensely cheaper than contracting surveys of the areas in question, meaning that an application that can accurately use satellite data towards this function can make valuable information available to nations which would not be able to afford it otherwise. Highly reliable applications for the remote detection of water currently exist for use with optical satellite data such as that provided by LANDSAT. One such application, Geoscience Australia’s Water Observations from Space (WOFS) has already been ported for use with the Open Data Cube [6]. However, water detection using optical data from Landsat is constrained by its relatively long revisit cycle of 16 days [5], and water detection using any optical data is constrained in that it lacks the ability to make accurate classifications through cloud cover [2]. The alternative solution which solves these problems is water detection using SAR data, which images the Earth using cloud-penetrating microwaves. Because of its advantages over optical data, much research has been done into water detection using SAR data. Traditionally, this has been done using the thresholding method, which involves picking a polarization band and labeling all pixels for which this band’s value is below a certain threshold as containing water. The thresholding method works since water tends to return a much lower backscatter value to the satellite than land [1]. However, this method can be flawed since estimating the proper threshold is often imprecise, complicated, and labor intensive for the end user. Thresholding also tends to use data from only one SAR polarization, when a combination of polarizations can provide insight into whether water is present. [2] In order to alleviate these problems, this paper presents an application for the Open Data Cube to detect water from SAR data using support vector machine (SVM) classification. 2. PLATFORM WASARD is an application for the Open Data Cube, a mechanism which provides a simple yet efficient means of ingesting, storing, and retrieving remote sensing data. Data can be ingested and made analysis ready according to whatever specifications the researcher chooses, and easily resampled to artificially alter a scene’s resolution. Currently WASARD supports water detection on scenes from ESA’s Sentinel-1 and JAXA’s ALOS. When testing WASARD, Sentinel-1 was most commonly used due to its relatively high spatial resolution and its rapid 6 day revisit cycle [5]. With minor alterations to the application's code, however, it could support data from other satellites. 3. METHODOLOGY Using supervised classification, WASARD compares SAR data to a dataset pre-classified by WOFS in order to train an SVM classifier. This classifier is then used to detect water in other SAR scenes outside the training set. Accuracy was measured according to the following metrics:  Precision: a measure of what percentage of the points WASARD labels as water are truly water  Recall: a measure of what percentage of the total water cover WASARD was able to identify.  F1 Score: a harmonic average of the precision and recall scores Both precision and recall are calculated at the end of the training phase, when the trained classifier is compared to a testing dataset. Because the WOFS algorithm’s classifications are used as the truth values when training a WASARD classifier, when precision and recall are mentioned in this paper, they are always with respect to the values produced by WOFS on a similar scene of Landsat data, which themselves have a classification accuracy of 97% [6]. Visual representations of water identified by WASARD in this paper were produced using the function wasard_plot(), which is included in WASARD. 3.1 Algorithm Selection The machine learning model used by WASARD is the Linear Support Vector Machine (SVM). This model uses a supervised learning algorithm to develop a classifier, meaning it creates a vector which can be multiplied by the vector formed by the relevant data bands to determine whether a pixel in a SAR scene contains water. This classifier is trained by comparing data points from selected bands in a SAR scene to their respective labels, which in this case are “water” or “not water” as given by the WOFS algorithm. The SVM was selected over the Random Forest model, which outperformed the SVM in training speed, but had a greater classification time and lower accuracy, and the Multilayer Perceptron Artificial Neural Network, which had a slightly higher average accuracy than the SVM, but much greater training and classification times. Figure 1: Visual representation of the SVM Classifier. Each white point represents a pixel in a SAR scene. In Figure 1, the diagonal line separating pixels determined to be water from those determined not to be water represents the actual classification vector produced by the SVM. It is worth noting that once the model has been trained, classification of pixels is done in a similar manner as in the thresholding method. This is especially true if only one band was used to train the model. 3.1 Feature Selection Sentinel-1 collects data from two bands: the Vertical/Vertical polarization (VV) and the Vertical/Horizontal polarization (VH). When 100 SVM classifiers were created for each polarization individually, and for the combination of the two, the following results were achieved: Figure 2: Accuracy of classifiers trained using different polarization bands. Precision and Recall were measured with respect to the values produced by WOFS. Figure 2 demonstrates that using both the VV and VH bands trades slightly lower recall for significantly greater precision when compared with the VH band alone, and that using the VV band alone is inferior in both metrics. WASARD therefore defaults to using both the VV and VH bands, and includes the option to use solely the VH band. The VV polarization’s lower precision compared to the VH polarization is in contrast to results from previous research and may merit further analysis [4]. 3.2 Training a Classifier The steps in training a classifier with WASARD are 1. Selecting two scenes (one SAR, one optical) with the same spatial extents, and acquired close to each other in time, with a preference that the scenes are taken on the same day. 2. Using the WOFS algorithm to produce an array of the detected water in the scene of optical data, to be used as the labels during supervised learning 3. Data points from the selected bands from the SAR acquisition are bundled together into an array with the corresponding labels gathered from WOFS. A random sample with an equal number of points labeled “Water” and “Not Water” is selected to be partitioned into a training and a testing dataset 4. Using Scikit-Learn’s LinearSVC object, the training dataset is used to produce a classifier, which is then tested against the testing dataset to determine its precision and recall The result is a wasard_classifier object, which has the following attributes: 1. f1, recall, and precision: 3 metrics used to determine the classifier’s accuracy 2. Coefficient: Vector which the SVM uses to make its predictions. The classifier detects water when the dot product of the coefficient and the vector formed by the SAR bands is positive 3. Save(): allows a user to save a classifier to the disk in order to use it without retraining 4. wasard_classify(): Classifies an entire xarray of SAR data using the SVM classifier All of the above steps are performed automatically when the user creates a wasard_classifier object. 3.3 Classifying a Dataset Once the classifier has been created, it can be used to detect water in an xarray of SAR data using wasard_classify(). By taking the dot product of the classifier’s coefficients and the vector formed by the selected bands of SAR data, an array of predictions is constructed. A classifier can effectively be used on the same spatial extents as the ones where it was trained, or on any area with a similar landscape. While

Kreiser, Zachary↗

Alaska Transportation & Infrastructure - Identifying Permafrost Subsidence Using NASA Earth Observations to Pinpoint Road & Infrastructure Vulnerability in Fairbanks, Alaska

A rapidly warming Arctic has compromised the structural integrity of critical infrastructure through accelerated permafrost thaw and thermokarst development underlying these areas. Infrastructure, including roads, bridges, and airports across the state of Alaska are particularly at risk, as permafrost underlies ~85% of the state. However, monitoring the impacts of permafrost thaw on infrastructure is largely limited to in situ observations and frequently identified after the damage is evident. In order to assist transportation and infrastructure decision-makers in Alaska, this project identified and quantified areas of surface subsidence near critical infrastructure. Seasonal interferograms were created using Sentinel-1 C-band Synthetic Aperture Radar (SAR) and L-band Uninhabited Aerial Vehicle SAR (UAVSAR) data to identify areas experiencing surface deformation. Additionally, Light Detection and Ranging (LiDAR) datasets were used to validate select interferograms created between 2017 and 2019. Validation of subsidence detection across platforms was performed over a 7x8 sq. kilometer field site for 2017. UAVSAR and Sentinel-1 seasonal deformation returns produced consistent spatial deformation patterns with residual root mean squared errors of 13 and 21 millimeters, respectively. These results suggest that both UAVSAR and Sentinel-1 platforms are capable of detecting surface subsidence. The higher resolution of UAVSAR is better able to resolve localized subsidence features of less than 80 meters, but is limited by temporal resolution.In conjunction, UAVSAR and Sentinel-1 can provide complementary spatial and temporal resolutions for subsidence analysis in the absence of in situ data.

Patrick Saylor↗

Alaska Transportation & Infrastructure Identifying Permafrost Subsidence Using NASA Earth Observations to Pinpoint Road and Infrastructure Vulnerability in Fairbanks, Alaska

A rapidly warming Arctic has compromised the structural integrity of critical infrastructure through accelerated permafrost thaw and thermokarst development underlying these areas. Infrastructure, including roads, bridges, and airports across the state of Alaska are particularly at risk, as permafrost underlies ~85% of the state. However, monitoring the impacts of permafrost thaw on infrastructure is largely limited to in situ observations and frequently identified after the damage is evident. In order to assist transportation and infrastructure decision-makers in Alaska, this project identified and quantified areas of surface subsidence near critical infrastructure. Seasonal interferograms were created using Sentinel-1 C-band Synthetic Aperture Radar (SAR) and L-band Uninhabited Aerial Vehicle SAR (UAVSAR) data to identify areas experiencing surface deformation. Additionally, Light Detection and Ranging (LiDAR) datasets were used to validate select interferograms created between 2017 and 2019. Validation of subsidence detection across platforms was performed over a 7x8 sq. kilometer field site for 2017. The strongest relationship in spatial deformation is observed between Sentinel-1 and UAVSAR with a residual root mean square error of 20 mm. These results suggest that both UAVSAR and Sentinel-1 platforms are capable of detecting surface subsidence. The higher resolution of UAVSAR is better able to resolve localized subsidence features of less than 80 meters, but is limited by temporal resolution. In conjunction, UAVSAR and Sentinel-1 can provide complementary spatial and temporal resolutions for subsidence analysis in the absence of in situ data.

DEVELOP Tech Paper↗

Coastal California Water Resources: Assessing Estuarine Ecosystems in California for Improved Wetland Monitoring and Management

Estuaries are vital ecosystems that serve important ecological functions. The Marine Life Protection Act aims to protect these ecosystems by establishing a network of marine protected areas (MPAs), in part by requiring regulatory agencies to monitor estuary extent and health. However, California has 23 estuarine MPAs (EMPAs) and approximately 440,000 total acres of estuarine habitat and, therefore, ground-based data collection can be time and resource intensive. This project used remotely sensed data to examine the health of California EMPAs in an effort to supplement ground-based field measurements. Specifically using Landsat 8 Operational Land Imager (OLI), Sentinel-2 MultiSpectral Instrument (MSI), and Sentinel-1 C-band Synthetic Aperture Radar (C-SAR), this project assessed mouth state, inundation extent, turbidity, Chlorophyll-a, and colored dissolved organic matter (CDOM) for estuaries observable with these sensors. The Normalized Water Difference Index (NDWI) from Sentinel-2 MSI was capable of capturing estuary mouth state and inundation extent. Meanwhile, Landsat 8 OLI and Sentinel-2 MSI indicated a capacity to capture differences in water quality metrics coinciding with changes to estuary mouth state using algorithms applied in Google Earth Engine (GEE). The GEE California Estuary Assessment (CEA) tools will allow project partners to better monitor and understand estuarine dynamics and health.

Karina Alvarez↗

Large-Scale High-Resolution Coastal Mangrove Forests Mapping Across West Africa With Machine Learning Ensemble and Satellite Big Data

Coastal mangrove forests provide important ecosystem goods and services, including carbon sequestration, biodiversity conservation, and hazard mitigation. However, they are being destroyed at an alarming rate by human activities. To characterize mangrove forest changes, evaluate their impacts, and support relevant protection and restoration decision making, accurate and up-to-date mangrove extent mapping at large spatial scales is essential. Available large-scale mangrove extent data products use a single machine learning method commonly with 30 m Landsat imagery, and significant inconsistencies remain among these data products. With huge amounts of satellite data involved and the heterogeneity of land surface characteristics across large geographic areas, finding the most suitable method for large-scale high-resolution mangrove mapping is a challenge. The objective of this study is to evaluate the performance of a machine learning ensemble for mangrove forest mapping at 20 m spatial resolution across West Africa using Sentinel-2 (optical) and Sentinel-1 (radar) imagery. The machine learning ensemble integrates three commonly used machine learning methods in land cover and land use mapping, including Random Forest (RF), Gradient Boosting Machine (GBM), and Neural Network (NN). The cloud-based big geospatial data processing platform Google Earth Engine (GEE) was used for pre-processing Sentinel-2 and Sentinel-1 data. Extensive validation has demonstrated that the machine learning ensemble can generate mangrove extent maps at high accuracies for all study regions in West Africa (92%–99% Producer’s Accuracy, 98%–100% User’s Accuracy, 95%–99% Overall Accuracy). This is the first-time that mangrove extent has been mapped at a 20 m spatial resolution across West Africa. The machine learning ensemble has the potential to be applied to other regions of the world and is therefore capable of producing high-resolution mangrove extent maps at global scales periodically.

coastal environment↗

Coastal California Water Resources II: Utilizing NASA Earth Observations to Detect and Assess the Impacts of Estuarine Breach Events for Improved Coastal Wetland Monitoring and Management

Estuaries are dynamic environments that provide a host of vital ecosystem services. California’s Marine Life Protection Act protects such ecosystems by creating Marine Protected Areas. California has approximately 440,000 acres of estuarine habitats as well as 23 Estuarine Marine Protected Areas (EMPAs); thus, in situ data collection is often difficult due to time and resource constraints. This project used remote sensing to gather data that examined the health and dynamics of California EMPAs in order to supplement ground-based field measurements. Through the use of Landsat 8 Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS), Sentinel-2 Multispectral Instrument (MSI) and Sentinel-1 C-band Synthetic Aperture Radar (C-SAR), this project assessed mouth state, inundation extent, turbidity, temperature, and tidal measurements for observable estuaries. The Normalized Water Difference Index from Sentinel-2 MSI captured estuary mouth state and inundation extent. Landsat 8 OLI and Sentinel-2 MSI detected differences in water quality metrics that correlated to changes in estuary mouth state (i.e., open or closed). The team’s California Estuary Assessment (CEA) tool in Google Earth Engine was successful in analyzing estuary mouth state, inundation, and water quality. It was most effective when breach events were larger than 10 meters in resolution, water surface was smooth, and imagery was unimpeded by algae or sun glint. The CEA tool will allow the partners, the Ocean Protection Council, Central Coast Wetlands Group, Southern California Coastal Water Research Project, and University of California Los Angeles (UCLA) and Davis (UCD), to better understand estuary dynamics and more effectively conduct in situ estuary monitoring.

Sarah Payne↗

Evaluating SAR Radiometric Terrain Correction products: Optimal products for applied users

Operational applications for Synthetic Aperture Radar (SAR) are under development around the world, driven by the free-and-open access of SAR C-band observations that Sentinel-1 of Copernicus has been providing since 2014. Groups like SERVIR, a joint initiative between NASA and USAID, are at the forefront of remote sensing applied uses, and have made many significant contributions to lower the barrier to access, process, and apply SAR for ecosystem services. A takeaway from the SERVIR experience in using SAR is the need to use the appropriate SAR polarimetric product. Radiometric Terrain Correction (RTC) is a key entry-level product for multiple applications that range from ecosystems to hazards. Many software packages exist to create RTC products from SLC or GRD-type Level-1 SAR data, some of which were released only recently, e.g. Interferometric SAR Computing Environment (ISCE) added an RTC module in April 2020. In addition, new versions of open source softwares are expected to address known issues from previous versions, such as Sentinel-1 Toolbox from the European Space Agency (SNAP-7). Despite the growing availability of RTC software solutions, little work has been done to identify differences between RTC products from different softwares. And to address the question, which open-source software produces the most accurate RTC product? This work evaluates Sentinel-1 RTC products created with three different softwares and approaches, including SNAP-7, ISCE-2, and a pseudo RTC product derived from GEE. The GAMMA-derived RTC product, a known optimal RTC and implemented by Alaska Satellite Facility (ASF), is used as a reference. Time series stacks over ten different sites representing varied terrain and ecosystems are evaluated. Products are evaluated for geolocation quality, absolute radiometric calibration, and for the fidelity of the radiometric terrain flattening. The results provide direct guidance and recommendations about the quality of the RTC products obtained from open source methods. This understanding is key to develop operational applications that rely on SAR Sentinel-1 data that need affordable and scalable solutions.

Africa Flores-Anderson↗

Senteniel-6 Radio Occultation Product Released by NASA GES DISC to Supplement Satellite Remote Sensing Datasets for PBL Study

The NASA Goddard Earth Sciences Data and Information Services Center (GES DISC) curates hyperspectral atmospheric sounder remote sensing and numerical model reanalysis datasets which have been utilized in the Planetary Boundary Layer (PBL) research and applications. The hyperspectral sounder remote-sensing datasets include the Atmospheric Infrared Sounder (AIRS) on the Aqua satellite to the Cross-track Infrared Sounder (CrIS) on Suomi--National Polar- orbiting Partnership (NPP) and National Oceanic and Atmospheric Administration -20 (N NOAA-20)/ Joint Polar-orbiting Satellite System -1 (JPSS-1). The Modern-Era Retrospective analysis for Research and Applications Version 2 (MERRA-2) global reanalysis product provides a data record commencing in 1980. The sounder remote sensing and reanalysis datasets include temperature, water vapor, and trace gas profile down to the PBL, and also have a derived PBL height as well. A nearly 10-year (June 2006 to December 2015) seasonal and annual PBL height climatology dataset from COSMIC Global Navigation Satellite System (GNSS) radio occultation (RO) measurement is also available from the GES DISC. In collaboration with Sentinel-6 Project, the GES DISC is implementing curation activities for GNSS RO products from the Sentinel-6A/Sentinel-6 Michael Freilich satellite launched on November 21, 2020. Sentinel-6A RO products provide refractivity, temperature, and humidity profile with finer vertical resolution, leveraging PBL research and application as a supplement to the hyperspectral sounder remote sensing and reanalysis products. The public release of Sentinel- 6A RO products is scheduled for mid-October of 2021. In this presentation, we will introduce all Senitnel-6A products and services, and demonstrate use cases studying the PBL by combining these products with other GES DISC archived data products.

Feng Ding↗

Invasion in the Niger Delta: Remote Sensing of Mangrove Conversion to Invasive Nypa fruticans from 2015-2020

Invasive species are a leading threat to biodiversity worldwide. Nypa palm ( Nypa fruticans ) has emerged as the predominant invasive species in the Niger Delta region of Nigeria. While endemic mangroves have high rates of carbon sequestration, stabilize coastlines, and protect biodiversity, Nypa does not provide these services outside its native region of Southeast Asia. Oil exploration and urbanization in this region also exacerbates mangrove loss and Nypa spread. As Nypa is difficult to distinguish from endemic mangrove species in remotely sensed data, estimates of mangrove and ecosystem services losses in Nigeria are highly uncertain. Here, we analyze multisensor satellite data with machine learning to quantify the rapid expansion of Nypa from 2015-2020 in Nigeria. Using Landsat imagery and random forest classification, we quantify total potential Nypa extent in Nigeria in 2019. We then produced a Nypa extent map using iterative combinations of Sentinel-1 SAR, Sentinel-2 MSI, and ALOS PALSAR. Random forest classifications using SAR data from ALOS and Sentinel-1 were best suited for mapping Nypa extent with similar accuracies (78% and 75% respectively). Based on data availability and accuracy, we focused our change analysis on Sentinel-1 SAR. Our results show ~28,000 ha of mangroves were converted to Nypa in Nigeria by 2020 and covered a larger extent than endemic mangroves, compounding the effect of the existing degradation and deforestation in the region. We also compared forest height and complexity estimates from GEDI (Global Ecosystem Dynamics Investigation) LiDAR to further distinguish between endemic mangroves and Nypa in three dimensions. Nypa structural variability, measured by top-of-canopy height, vegetation cover, plant area index, and foliage height diversity, was lower than that of mangroves. At current rates of Nypa expansion, the entire area of study would be invaded by Nypa by 2028, with potentially detrimental consequences to the ecosystem services provided by mangroves.

GEE↗

Utilizing Remote Sensing to Detect and Assess the Impacts of Estuarine Breach Events for Improved Coastal Wetland Monitoring and Management

Estuaries are extremely dynamic environments that provide a host of vital ecosystem services. California’s Marine Life Protection Act protects such ecosystems by creating Marine Protected Areas (MPAs). California has approximately 440,000 acres of estuarine habitat as well as 23 Estuarine Marine Protected Areas (EMPAs). Thus, in situ data collection is often difficult due to time and resource constraints. This project used remote sensing to gather data that examined the health and dynamics of California EMPAs to supplement ground-based field measurements. Through the use of Landsat 8 Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS), Sentinel-2 MultiSpectral Instrument (MSI), and Sentinel-1 C-band Synthetic Aperture Radar (C-SAR), this project assessed mouth state, inundation extent, turbidity, temperature, and tidal measurements for observable estuaries. The Normalized Difference Water Index (NDWI) from Sentinel-2 MSI captured estuary mouth state and inundation extent. Landsat 8 OLI and Sentinel-2 MSI detected differences in water quality metrics that correlated to changes in estuary mouth state (i.e., open or closed) through algorithms in Google Earth Engine (GEE). The GEE California Estuary Assessment (CEA) tool was created with partner input throughout development and culminated in a graphical user interface tailored to management needs. The CEA tool will allow the partners, the Ocean Protection Council, Moss Landing Marine Laboratories’ Central Coast Wetlands Group, the Southern California Coastal Water Research Project, and University of California Los Angeles (UCLA) and Davis (UCD), to better understand estuary dynamics and facilitate informed management decisions through satellite-based Earth observations.

Alex Gunnerson↗

Contributions of irrigation modeling, soil moisture and snow data assimilation to high-resolution water budget estimates over the Po basin: progress towards digital replicas

High-resolution water budget estimates benefit from modeling of human water management and satellite data assimilation (DA) in river basins with a large human footprint. Utilizing the Noah-MP land surface model with dynamic vegetation growth and river routing, in combination with an irrigation module, Sentinel-1 backscatter and snow depth retrievals, we produce a set of 0.7-km2 water budget estimates of the Po river basin (Italy) for 2015–2023. The results demonstrate that irrigation modeling improves the seasonal soil moisture variation and summer streamflow at all gauges in the valley after withdrawal of irrigation water from the streamflow in postprocessing (12% error reduction relative to observed low summer streamflow), even if the basin-wide irrigation amount is underestimated. Sentinel-1 backscatter DA for soil moisture updating strongly interacts with irrigation modeling: when both are activated, the soil moisture updates are limited, and the simulated irrigation amounts are reduced. Backscatter DA systematically reduces soil moisture in the spring, which improves downstream spring streamflow. Assimilating Sentinel-1 snow depth retrievals over the surrounding Alps and Apennines further improves spring streamflow in a complementary way (2% error reduction relative to observed high spring streamflow). Despite the seasonal improvements, irrigation modeling and Sentinel-1 backscatter DA cannot significantly improve short-term or interannual variations in soil moisture, irrigation modeling causes a systematically prolonged high vegetation productivity, and snow depth DA only impacts the deep snowpacks. This study helps advancing the design of digital water budget replicas for river basins.

Gabrielle J M De Lannoy↗

Improving coastal water level estimation by merging nadir-only satellite altimetry data into a hydrodynamic model

Providing robust real time flood warnings is of paramount importance to coastal communities. Although state-of-the-art hydrodynamic models are capable of robustly predicting Coastal Water Levels (CWL), unresolved drivers affecting level fluctuations are often not represented by the model governing equations. This work evaluates a novel method to improve the performance of the ADvanced CIRCulation (ADCIRC) hydrodynamic model by assimilating observations from four nadir-only satellite altimetry missions against a set of National Oceanic and Atmospheric Administration (NOAA) gauge stations located across the entire U.S. East Coast. Two different types of simulations were performed – Open Loop (OL) and Data Assimilation (DA). Five different simulations were performed where four different satellite altimetry observations were assimilated individually and combined with two different scenarios – with and without considering the data quality flags. Results indicate that, despite their limited spatial coverage, merging nadir-only observations into ADCIRC from the newly launched Surface Water and Ocean Topography (SWOT)’s nadir altimeter can improve the model performance at 76% of the gauge locations, whereas Sentinel-6 improves 73% of the total locations, Jason-3 74%, and SARAL 21%. Furthermore, combining observations from SWOT-nadir, Jason-3, and Sentinel-6 can improve the ADCIRC performance at more than 80% of the gauge locations for 107-day simulation. Nadir-only satellite altimetry observations can be useful for improving the model performance even if flagged as “poor quality” near the coast. When the flagged data are disregarded, SWOT can improve ADCIRC at 78%, Sentinel-6 at 73%, Jason-3 at 53%, and SARAL at 21% of the gauge locations. The ability to improve the model simulations largely depends on the availability of a satellite overpass nearby. Therefore, model performance can be further enhanced if satellite observations are available during a storm surge event, stressing the importance of frequent satellite overpasses.

Aafnan Bhuiyan, Soelem↗

Satellite Retrievals

Data from the SENTINEL-1 satellite constellation (SENTINEL-1a and SENTINEL-1b), from PNNL.

17 WIND ENERGY↗

Snow Depth Variability in the Northern Hemisphere Mountains Observed from Space

Accurate snow depth observations are critical to assess water resources. More than a billion people rely on water from snow, most of which originates in the Northern Hemisphere mountain ranges. Yet, remote sensing observations of mountain snow depth are still lacking at the large scale. Here, we show the ability of Sentinel-1 to map the snow depth in the Northern Hemisphere mountains at 1 km² resolution using an empirical change detection approach. An evaluation with measurements from ~4,000 sites and reanalysis data demonstrates that the Sentinel-1 retrievals capture the spatial variability between and within mountain ranges, as well as their inter-annual differences. This is showcased with the contrasting snow depths between 2017 and 2018 in the US Sierra Nevada and European Alps. With Sentinel-1 continuity ensured until 2030 and likely beyond, these findings lay a foundation for quantifying the long-term vulnerability of mountain snow-water resources to climate change.

Hans Lievens↗

Fusion Approach for Remotely-Sensed Mapping of Agriculture (FARMA): A Scalable Open Source Method for Land Cover Monitoring Using Data Fusion

The increasing availability of very-high resolution (VHR; <2 m) imagery has the potential to enable agricultural monitoring at increased resolution and cadence, particularly when used in combination with widely available moderate-resolution imagery. However, scaling limitations exist at the regional level due to big data volumes and processing constraints. Here, we demonstrate the Fusion Approach for Remotely-Sensed Mapping of Agriculture (FARMA), using a suite of open source software capable of efficiently characterizing time-series field-scale statistics across large geographical areas at VHR resolution. We provide distinct implementation examples in Vietnam and Senegal to demonstrate the approach using WorldView VHR optical, Sentinel-1 Synthetic Aperture Radar, and Sentinel-2 and Sentinel-3 optical imagery. This distributed software is open source and entirely scalable, enabling large area mapping even with modest computing power. FARMA provides the ability to extract and monitor sub-hectare fields with multisensor raster signals, which previously could only be achieved at scale with large computational resources. Implementing FARMA could enhance predictive yield models by delineating boundaries and tracking productivity of smallholder fields, enabling more precise food security observations in low and lower-middle income countries.

fusion↗

Southwest Water Resources: Monitoring Surface Water Extents of Remote Stock Ponds in the Southwestern United States Using Earth Observing Systems for Enhanced Water Resources Management

Due to increasingly frequent and severe drought conditions in the southwestern US, land managers and livestock producers need to monitor stock ponds with increasing regularity. The ability to assess stock pond water levels with Earth observing satellite systems would enhance monitoring efforts of partners at the US Forest Service, Arizona Department of Game and Fish, and the Diablo Trust. This study employed Landsat 8 Operational Land Imager (OLI), Sentinel-1 C-band Synthetic Aperture Radar (C-SAR), and Sentinel-2 Multispectral Instrument (MSI) to monitor surface water extent for hundreds of critical stock ponds in Arizona. Using methods adapted from previously developed image processing workflows, this project conducted a time-series analysis to capture seasonal and interannual variations in surface water area between 2013 to 2021. In addition, end users can monitor the surface water extent of stock ponds through the developed Google Earth Engine software tool called Surface Water Identification and Forecasting Tool (SWIFT). SWIFT incorporates the Automated Water Extraction Index, Modified Normalized Difference Water Index, and Tasseled Cap-Wetness Index for optical imagery and the incidence angle, VV and VH polarization bands for Sentinel-1 imagery to detect small water bodies in the study area with an overall accuracy range of 88-93%. These tools will empower our partners to monitor the extents of water in their stock ponds remotely, enabling them to develop data-informed and sustainable management solutions for decades to come.

Rainey Aberle↗

Estimation of Snow Mass Information via Assimilation of C-Band Synthetic Aperture Radar Backscatter Observations Into an Advanced and Surface Model

This study assimilated Sentinel-1 C-band backscatter observations over snow-covered terrain into the Noah-Multiparameterization land surface model using support vector machine (SVM) regression and an ensemble Kalman filter to improve the modeled terrestrial snow mass estimates. The data assimilation (DA) experiment was conducted across Western Colorado from September 2016 to August 2017. As part of the DA experiments, the impact of a rule-based update was evaluated by comparing snow water equivalent (SWE) estimates via DA (with [ DAv1 ] and without [ DAv2 ] the rule-based update) against SNOTEL SWE measurements. Results confirmed that rule-based update helped minimize SVM controllability issues, and in turn, improved the accuracy of SWE estimates relative to both open loop (OL) and DAv2 . Comparison of SWE estimates from Sentinel-1 DAv1 against SNOTEL SWE revealed that 75% of stations showed improvements in bias and correlation coefficient relative to the OL. Assimilated SWE estimates also showed statistical improvements during both the snow accumulation and snow ablation periods. However, unbiased root mean square error showed a slight increase during the snow ablation period due to the large variability in the electromagnetic response of C-band backscatter over deep and/or wet snow. Improvement of the SWE estimates also resulted in improving river discharge estimates compared to in situ measurements. River discharge using Sentinel-1 DAv1 improved the Nash–Sutcliffe efficiency at all available stations. These results suggest that physically constrained SVM can serve as an efficient observation operator for snow mass DA through explicit consideration of the first-order C-band scattering mechanisms over different terrestrial snow conditions.

Jongmin Park↗