Tag: machine learning

  • Evolution: Machine learning for station specific Ionosphere prediction in GNSS positioning

    Evolution: Machine learning for station specific Ionosphere prediction in GNSS positioning

    Ionospheric delay remains a significant error source in GNSS positioning, particularly for single-frequency users and during periods of enhanced space weather activity (Dabbakuti, 2021). While global and regional ionospheric models provide large-scale corrections, they often fail to represent localized ionospheric variability at individual receiver locations (Jee et al., 2010; Osanyin et al, 2025).

    Consequently, residual ionospheric errors persist in positioning solutions, degrading accuracy for applications including precise point positioning (PPP), real-time navigation, and single-frequency GPS users (Biswas et al., 2022). Hence, accurate modeling of the ionosphere is essential in tackling the principal challenges in high-precision GNSS positioning. 

    Vertical total electron content (VTEC), a key driver of ionospheric delay, exhibits strong nonlinear temporal variability controlled by solar radiation, geomagnetic activity, seasonal effects, and local electrodynamics (Osanyin et al., 2023; Seemala et al., 2023). Capturing this variability at individual GNSS stations poses a significant challenge. Advances in artificial intelligence (AI), i.e., machine learning (ML) techniques have emerged over the decades as powerful tools for approximating complex non-linear systems and deterministic geophysical processes, while significantly reducing computational cost (Sarker, 2021). As such, they have successfully replaced repeated full-scale numerical simulations by learning input-output relationships directly from data (Zhang et al., 2025). This paradigm shift is particularly relevant for ionospheric modeling, where long-term GNSS observations provide rich time series well suited for data-driven learning.

    Time series forecasting traditionally relies on statistical models such as autoregressive (AR), moving average (MA), autoregressive moving average (ARMA), and autoregressive integrated moving average (ARIMA), which model future values as linear functions of past observations (Kaselimi et al., 2020). They have been widely employed to predict VTEC by extrapolating historical observations. Nonetheless, the classical approaches are inherently limited by assumptions of linearity, stationarity and short-term memory, which restrict their ability to capture complex ionospheric dynamics, particularly during disturbed conditions and over longer prediction horizons. To address these limitations, this study adopts a deep learning-based framework using long short-term memory (LSTM) neural networks for station -pecific VTEC prediction. Unlike conventional statistical models, LSTM networks are specifically designed to learn non-linear temporal relationships and retain long-term memory in sequential data (Hochreiter and Schmidhuber, 1997).

    Essentials

    LSTM neural networks for prediction have emerged as a powerful tool for time-series prediction (Hochreiter and Schmidhuber, 1997). LSTM is a type of recurrent neural networks (RNNs) that takes sequences of information and uses recurrent mechanisms and gate techniques (see Figure 1). RNNs are well known for their ability to process single data points and entire data sequences (Gonzalez and Yu, 2018). The LSTM model has various forms for different types of data inputs. The basic condition of LSTM modeling is that all inputs and outputs are independent of each other. The key to the LSTMs is the cell state, which is protected and controlled by the forget, input and output gates, respectively (Gonzalez and Yu, 2018).


    FIGURE 1  Comparison of recurrent neural network (RNN) and long short-term memory (LSTM) structures.

    Training deep learning models remains computationally demanding despite their fast prediction capability. LSTM networks consist of interconnected layers with numerous trainable parameters that must be optimized iteratively to accurately capture temporal dependencies in the data. Training typically involves large historical datasets spanning multiple years, which is necessary to expose the model to varying ionospheric conditions, but also increases computational effort (Thompson et al., 2020). The optimization process relies on iterative algorithms such as stochastic gradient descent and variants, requiring repeated forward and backward passes through the network. As the depth of the model and the length of input sequences increase, so does the demand for memory and processing power. These challenges are particularly relevant when training is performed using graphics processing units (GPUs), where memory limitations and data transfer overhead must be carefully managed (Sarker, 2021).

    Like all neural networks, LSTM has trainable parameters (weights and biases). These parameters are optimized by minimizing a loss function using gradient-based optimization. Due to its ability to learn time sequences, gradients must be propagated across time steps, not only across layers. This process is accomplished using backpropagation through time, which computes gradients of the loss with respect to all parameters and accumulates gradients across the sequence. The major advantage of LSTM is the use of its gating mechanism in mitigating vanishing gradients, making backpropagation practical for long time series such as VTEC (Adekunle et al., 2025; Hochreiter and Schmidhuber, 1997; Noor and Ige, 2025).

    In recent years, LSTM networks have achieved impressive results in modeling complex physical systems characterized by strong non-linearity and long-term temporal dependencies. Notably, LSTM-based approaches have been successfully applied to atmospheric and geophysical time series, demonstrating superiority in predictive skill compared to traditional empirical and statistical models (see Reddybattula et al. (2022 and references therein). These research results show the capability of LSTM to capture diurnal, seasonal, and storm-time variations. By leveraging historical GNSS-derived VTEC time series, LSTM-based models can adaptively capture both regular ionospheric patterns and transient disturbances, enabling more accurate and robust VTEC forecasts. This data-driven approach directly supports improved ionospheric correction in GNSS positioning, offering a practical and scalable solution to overcome the shortcomings of traditional time series methods. 

    This study focuses a station-specific vertical total electron content (VTEC) prediction framework based on long short-term time series. The proposed framework treats VTEC prediction as a supervised regression problem. A sequence of past VTEC observations is used to predict future values over one or multiple forecast horizons. Also, emphasis is placed on methodology clarity, practical implementation, and positioning relevance.

    Elements: TEC estimation from GNSS measurements

    For the purpose of forecasting local VTEC using time series analysis, this study utilized the GPS dataset provided by the Brazilian Institute for Geography and Statistics (RBGE; www.ibge.gov.br/en/) over Santa Maria (SMAR; -20.72o, 306.28o), a station located in Brazil over the period of 10 years from January 2010 to December 2019.

    VTEC data were derived from dual-frequency GPS observations at the selected station using the standard ionospheric processing techniques, including slant TEC estimation, instrumental bias correction, and mapping to vertical TEC. For more details, readers can consult the GPS-TEC analysis software developed by Seemala and Valladares (2011), which has been employed in this study for TEC processing. The time resolution is selected to be 15 minutes following an average over a sampling interval of 30 seconds. The resulting VTEC time series provides a continuous record of ionospheric variability with a fixed temporal resolution.

    Station-specific LSTM modeling framework

    A structured deep learning workflow for station-specific VTEC prediction has been adopted using the LSTM framework. The overall methodology follows a sequential pipeline consisting of data collection, preprocessing, feature engineering, model training, evaluation, validation, and deployment. This workflow ensures reproducibility, minimizes information leakage, and facilitates integration into GPS positioning engines. The focus is on time series learning at a single station, where temporal dependencies dominate and spatial smoothing from regional or global models is undesirable.

    Data preparation and model training

    High-quality input data are essential for stable LSTM training. The extracted VTEC time series are preprocessed to remove cycle slips, mitigate differential code biases, and ensure consistent temporal sampling. As shown in Figure 2, for this model (as variations can be considered), the dataset has been divided into training (80%), validation (10%), and testing (10%). The validation is mostly required during training the LSTM deep learning model to ensure generalization and prevent overfitting. Furthermore, preprocessing aims at ensuring capability of the model in handling missing data and temporal consistency checks.


    FIGURE 2  Chronological splitting of VTEC dataset for machine learning.

    Feature engineering mainly converts raw VTEC observations into structured model inputs such as local time (LT) and day-of-year (DOY) features. These features are normalized prior to training, although normalization is applicable to only the training dataset to avoid future leakage. The model consists of an input layer whose dimension equals the number of input features, followed by a single LSTM layer with 64 memory cells to learn temporal dependencies in the input sequence. A dropout layer with a rate of 0.2 is applied to mitigate overfitting during training. The LSTM representation is then passed to a fully connected (Dense) regression head with nout neurons, where nout  equals the number of forecast lead times. Model training minimizes the Huber loss function using gradient-based optimization, while performance is evaluated using RMSE. The optimizer updates the network weights iteratively to reduce the forecast error across the training samples. Early stopping and regularization are applied to further prevent overfitting, particularly during periods of low ionospheric variability. The final outputs are the predicted VTEC at multiple lead times (in this experiment: 30, 60, 120 and 180 minutes). The trained model is suitable for deployment in near real-time ionospheric correction systems: once operational, it ingests the most recent VTEC observations and produces short-term forecasts that can be integrated into GNSS positioning workflows, particularly for single-frequency applications and PPP.

    Performance evaluation and baseline comparison

    For practical assessment, the LSTM-based predictions are evaluated against commonly used baseline models, including persistence (using the trained model with new data) and skill (the ability of the model to make predictions). These baselines represent the minimum performance expected in operational GNSS ionospheric modeling and serves as internal validation of the overall model’s performance. Evaluation metrics include, but are not limited to, root mean square error (RMSE), mean absolute error (MAE), and relative improvement over persistence (skill). Figure 3 compares the predictive performance of the proposed LSTM model against the persistence baseline on the independent dataset. RMSE increases over time, while persistence largely deviates from the LSTM model, showing the great strength and capability of the LSTM model for time series prediction over the Santa Maria station. For instance, the RMSE of the LSTM model increases from 0.24 TECU to 1.15 TECU from 30 minutes to 3 hours lead time, while that of persistence ranges from 0.41 TECU to 2.25 TECU, respectively.  


    FIGURE 3  Comparison between the RMSE of the LSTM model and persistence for single-station VTEC prediction.

    For further evaluation, day-to-day variation of VTEC at 60 minutes lead time is shown in FIGURE 4. GPS TEC (orange curves) shows a strong diurnal cycle with expected daily peaks, while forecast (blue curves) matches these peaks across months, indicating that the LSTM captures the key deterministic component of TEC variability. TABLE  1 or the embedded metrics in Figure 4 summarizes an overall accuracy of the LSTM model using the performance metrics: MAE, RMSE, Bias, R, and skill. MAE and RMSE values change with season — with the lowest reported in July.


    FIGURE 4  Day-to-day variation of VTEC at 60 minutes forecast during July to December 2019. The embedded metrics show the performance of the LSTM model for each month of the testing dataset.

    Error increases toward December with the largest RMSE in March (0.549 TECU). September shows moderate error levels. Also, correlation is consistent across all months, which confirms the model’s capability to capture TEC changes and day-to-day variability patterns. The model is nearly unbiased as the bias is consistently close to zero, meaning that the LSTM does not drift systematically and shows that the model underpredicts GPS VTEC. This characteristic is important for operational GNSS corrections, because biased VTEC forecasts would translate to persistence positioning errors. Going by the skill values, even at 60 minutes forecast, the model provides ~27%-52% improvement over persistence. This result implies a major indicator of real predictive ability, especially for GNSS applications.

    Statistical validation

    Figure 5 presents the diagnostic of the validation dataset for the SMAR station at a 60-minute forecast horizon. It combines the distribution of prediction residuals (left) and density-based scatter comparison between predicted and observed VTEC values. These analyses help explain the overall agreement of the LSTM model forecast during validation.


    FIGURE 5  Validation diagnostics at 60 minutes forecast horizon. (Left) Histogram of prediction residuals. (Right) Density scatter of predicted versus observed TEC.

    The residual distribution is mostly concentrated near zero, which implies that most predictions deviate only slightly from observations. The right plot shows the scatter density plot of predicted VTEC against observed GPS VTEC. The points are tightly clustered along the dashed line, indicating that the model corresponds very well (98.2%) to the TEC variance in the validation period. Also, a RMSE of 0.39 TECU reflects a relatively low magnitude error. These findings support the reliability of the proposed LSTM model for VTEC forecasting.

    Implications for GNSS Positioning

    The cumulative distribution function (CDF) of the absolute equivalent L1 error, denoted by |∆ρ|, for the Santa Maria station at a forecast horizon of 60 minutes is shown in Figure 6.


    FIGURE 6  CDF of residual VTEC equivalent L1 ranging error at the single station.

    The CDF provides a direct positioning-relevant interpretation of model performance. The steep rise at small error values indicates that most samples exhibit low residual range errors, demonstrating strong correlation performance.

    Evolutionary

    This study demonstrates that LSTM-based machine learning provides a practical and effective approach for station-specific GNSS VTEC prediction during low solar activity. The LSTM model accurately reproduces diurnal and seasonal VTEC variability at the station level. Forecast skill remains stable across increasing horizons, while significant RMSE reductions over persistence confirm the model’s predictive value, supporting the feasibility of LSTM-based station-specific VTEC forecasting for operational GNSS applications. By leveraging historical GPS-derived VTEC time series, LSTM neural networks capture complex temporal dependencies that are difficult to model using conventional techniques. This approach offers a valuable complement to existing ionospheric correction models and represents a promising direction for future GNSS positioning systems. The results presented in Table 1 confirm that the proposed LSTM algorithm can derive an accurate predictive model as far as a 3-hour forecast. The proposed approach improves long-term ionospheric prediction and enhances positioning accuracy.

    MonthMAE (TECU)RMSE (TECU)Bias (TECU)RSkill
    Mar0.390.55-0.340.99344.5
    June0.150.18-0.120.99425.8
    Sep0.260.35-0.200.98628.0
    Dec0.360.49-0.280.99452.8

    Table 1  Comparison of VTEC performance metrics of the LSTM model at 60 minutes forecast.

    While the results demonstrate the potential of AI-based modeling for station-specific VTEC prediction, further investigation is required to assess its limitations. Future research will investigate the sensitivity and robustness of the data-driven approach under extreme geomagnetic storm conditions and maximum solar activity considering multiple stations over the same region. These experiments will help evaluate the LSTM-based modeling reliance for a better positioning GPS accuracy. In addition, combining efficient training strategies with LSTM-based temporal learning offers a practical and scalable solution to station-specific VTEC prediction. The resulting models will bridge the gap between computationally expensive physics-based approaches and overly simplified empirical models, providing accurate, localized ionospheric corrections that directly enhance GPS positioning performance. Therefore, the Bayesian optimization technique would be integrated during model’s training to tune LSTM hyperparameters (Adekunle et al., 2025), with the aim of reducing computational cost and improving convergence and generalization in station-specific ionospheric modeling. It is very likely that machine learning will play a significant role in near-term ionospheric modeling/prediction for GNSS. 


    Dr. Taiwo Osanyin is a Ph.D. visitor at York University, Toronto, Canada.  Her research interests include space physics, atmospheric sciences, statistics, and modeling of the upper atmosphere. Osanyin  received a Ph.D. in space geophysics from the National Institute for Space Research, Brazil, an M.Sc. in nuclear science and engineering from Obafemi Awolow University, Nigeria, and a B.Sc. in engineering physics from Obafemi Awolow University, Nigeria.

    Sunil Bisnath is a full professor in the Department of Earth and Space Science and Engineering at York University in Toronto. For more than 25 years, he has been actively researching precise GNSS-focused positioning and navigation solutions and applications. He holds an Honors Bachelor of Science degree and master of science degree in surveying science from the University of Toronto and a Ph.D. in geodesy and geomtics engineering from the University of New Brunswick.

    • Adekunle AA, Fofana I, Picher P, Rodriguez-Celis EM, Arroyo-Fernandez OH, Zemouri R. (2025). Optimizing deep learning predictive models: A comprehensive review of RNN and its variant architectures. Applied Soft Computing. Oct 9:114015.

    • Biswas T, Banerjee P and Paul A (2022). Impact of low-latitude ionospheric effects on precise position determination. Radio Science, 57(4): 1-11.

    • Dabbakuti JK (2021). Modeling and optimization of ionospheric model coefficients based on adjusted spherical harmonics function. Acta Astronautica, 182: 286-294.

    • Gonzalez J and Yu W (2018). Non-linear system modeling using LSTM neural networks. IFAC-PapersOnLine, 51(13): 485-489.

    • Hochreiter S and Schmidhuber J (1997). Long short-term memory. Neural Computation, 9:1735-1780.

    • Jee G, Lee HB, Kim YH, Chung JK, Cho J (2010). Assessment of GPS global ionosphere maps (GIM) by comparison between CODE GIM and TOPEX/Jason TEC data: Ionospheric perspective. Journal of Geophysical Research: Space Physics. 115: A10.

    • Kaselimi M, Voulodimos A, Doulamis N, Doulamis A, Delikaraoglou D. (2020). A causal long short-term memory sequence to sequence model for TEC prediction using GNSS observations. Remote Sensing. 12(9): 1354.

    • Noor MH and Ige AO (2025). A survey on state-of-the-art deep learning applications and challenges. Engineering Applications of Artificial Intelligence. 159: 111225.

    • Osanyin TO, Candido CM, Becker-Guedes F, Migoya-Orue Y, Habarulema JB, Obafaye AA, Chingarandi FS, Moraes-Santos SP (2023). Performance of a locally adapted NeQuick-2 model during high solar activity over the Brazilian equatorial and low-latitude region. Advances in Space Research. 72(12): 5520-38.

    • Osanyin TO, Maria Nicoli Candido C, Becker-Guedes F, Migoya-Orue Y, Habarulema JB (2025). Ingestion of GNSS-Derived-TEC Into NeQuick 2 Model Over South America. Space Weather. 23(12): e2024SW004212.

    • Reddybattula KD, Nelapudi LS, Moses M, Devanaboyina VR, Ali MA, Jamjareegulgarn P, Panda SK (2022). Ionospheric TEC forecasting over an Indian low latitude location using long short-term memory (LSTM) deep learning network. Universe. 8(11): 562.

    • Sarker IH (2021). Deep learning: a comprehensive overview on techniques, taxonomy, applications and research directions. SN Computer Science. 2(6): 1-20.

    • Seemala GK, Katual I, Kapil C, Vichare G (2023). Seasonal and solar activity dependence of TEC over Bharati station, Antarctica. Polar Science. 38: 101001.

    • Seemala GK, Valladares CE. Statistics of total electron content depletions observed over the South American continent for the year 2008 (2011). Radio Science. 46(05): 1-4.

    • Thompson Neil C, Kristjan G, Keeheon L, Manso Gabriel F (202). The computational limits of deep learning. Cornell University, arXiv:2007.05558, 10: 2.

    • Zhang R, Li H, Shen Y, Yang J, Li W, Zhao D, Hu A (2025). Deep learning applications in ionospheric modeling: progress, challenges, and opportunities. Remote Sensing. 17(1): 124.

  • HERE and Precisely expand partnership to provide location data for businesses

    HERE and Precisely expand partnership to provide location data for businesses

    HERE Technologies has expanded its partnership with Precisely, a data integrity company, to provide accurate and reliable location intelligence for business use cases across industry sectors.

    The partnership builds upon location intelligence capabilities within the Precisely Data Integrity Suite, giving companies deeper analysis, validation, and governance of their location data.

    Through the partnership, HERE and Precisely use machine learning (ML) and artificial intelligence (AI) to collect and analyze location data, creating real-time updates that guide important business decisions like property management and analysis, among other business operations. The companies are working together to provide complete and accurate datasets to drive AI-powered intelligence for businesses.

    The Precisely Data Integrity Suite delivers the trusted location intelligence that organizations need to power critical business decisions. The suite verifies, standardizes, and geocodes address data with high levels of accuracy and enriches it with robust contextual datasets. This combination of accuracy, consistency, and context helps businesses understand where things happen and why, enabling smarter risk assessment, optimized service delivery, and more targeted customer engagement. With governance and transparency built in, the Data Integrity Suite ensures location data is AI-ready and reliable for even the most regulated industries.

    HERE’s Privacy Charter reinforces the company’s commitment to promote responsible privacy and security practices, including data minimization and anonymization. The company has a robust portfolio of certifications in security, privacy and cloud governance, including ISO 27001, SOC 2, TISAX, HITRUST r2, CSA STAR and ISO/IEC 42001, the first international standard specifically designed to guide organizations in managing AI systems responsibly.

  • ESA teams up with Leonardo against satnav jamming

    ESA teams up with Leonardo against satnav jamming

    The European Space Agency (ESA) and Leonardo are embarking on a joint project to explore smart antennas powered by machine learning to block unwanted signals.

    Representatives of ESA and Leonardo signed a contract at the Paris Air Show to research and develop machine learning techniques to steer antenna arrays to block out unwanted signals. The project will be developed under the umbrella of ESA’s Navigation Innovation Support Programme (NAVISP).

    Smarter antenna designs for resilience

    Conventional antennas catch signals from all directions. A controlled reception pattern antenna (CRPA) can focus on signals coming from specific satellites and ignore signals or interference coming from other directions. These types of antennas are used in satellite navigation receivers to block jamming and counterfeit signals. They rely on electronics that control how they adjust their patterns (beamforming).

    Under contract with NAVISP, Leonardo — together with ELT Group as subcontractor — will explore the reduction of the distance between the antenna elements to reduce the size and weight of the antenna array, and the use of machine learning to determine the best antenna setup and adjust the settings faster. This approach will lead to smaller, smarter and more effective antennas, especially useful in space-limited environments such as aircraft.

    The project covers identification of the smarter algorithm for signal blocking, building and testing a real-time receiver demonstrator based on the selected algorithm, and comparing it to conventional larger antennas. The aim is to reach a Technology Readiness Level (TRL) of 4, delivering a lab-tested technology by the end of the project, in two years.

  • Democratizing precision agriculture with GNSS and other tech

    Democratizing precision agriculture with GNSS and other tech

    By Nabeel Khan, Regional Application Marketing Manager, Americas, u-blox

    Once only accessible to large commercial farms, technological innovation is beginning to bring the benefits of precision agriculture to everyone else.

    Photo: artiemedvedev/iStock / Getty Images Plus/Getty Images
    Photo: artiemedvedev/iStock / Getty Images Plus/Getty Images

    Fuel and fertilizer prices are at all-time highs, as farmers the world over are scrambling to find ways to stay financially afloat. Large commercial farms have long had a leg up over smaller holdings. They already have access to artificial intelligence (AI) and cutting-edge hardware to plan their operations and automate tasks. They run broad sensor networks to monitor soil quality, operate vision-enabled drones to monitor crop health, and let autonomous tractors steer across their fields to vastly improve their productivity.

    These advanced systems have been prohibitively expensive, to the point that their costs are hard to justify for smaller holdings, less than two hectares in size, which make up the vast majority of the world’s more than 570 million farms. Many of these farmers simply don’t have access to sufficient capital to invest in new equipment, and continue to rely on older machines and human labor. For them, the vast promise of the digital revolution to increase the efficiency of agricultural operations — typically lumped together as smart farming or precision agriculture — has long remained just out of reach.

    But change is in the air. Over the past few years, the popularization of the internet of things (IoT) and its underlying technologies has led to the development of a new and more affordable generation of precision farming solutions. These solutions are giving smallholdings tools to increase the quantity and the quality of their production. Combining satellite-based positioning, wireless connectivity and visual sensing with advanced algorithms including machine learning (ML) and artificial intelligence, these solutions promise to help farmers produce more for less, putting them on more equal footing with their larger commercial competitors.

    In this article, we take stock of key trends driving the democratization of precision agriculture. We zoom in on some of the concrete applications transforming the operations of smaller farms the world over.  We start by exploring the core enabling technologies, the applications they enable, and where they are headed.

    Technological evolution on all fronts

    Sensor-fusion platforms

    At their heart, precision agriculture solutions are sensor fusion platforms, taking in data points from a variety of sensors, using algorithms to make sense of them, and extracting insights on which their users — machine or human — can act. As they mature, these sensor fusion platforms are becoming increasingly complex, crunching more and more types of sensor data with algorithms of growing sophistication to gain ever deeper and higher value insights.

    These insights are often generated using AI and ML models that run at the edge of the network near the sensors — on the tractors, sprayers, or other devices themselves — rather than in the cloud.

    Equipment manufacturers looking to integrate AI/ML at the edge are weighing their options in terms of adding application processors and hardware accelerators capable of running advanced ML models needed to fuse camera and sensor inputs to make real-time decisions. To simplify the adoption of AI/ML at the edge, many vendors are starting to integrate AI accelerators into their modules and systems-on-chip (SoCs), lowering the barrier to entry.

    Original equipment manufacturers (OEMs), for their part, are choosing to integrate these SoCs even if their software capabilities are still behind. For them, building solutions with future-proof hardware is a potentially lucrative strategy for generating recurring revenues through firmware updates that provide advanced functions down the road.

    Despite the abundance of evaluation kits from major vendors, scaling from prototypes to production with these solutions can be expensive. While integrated sensor fusion platforms with, for example, pre-loaded dynamic vehicle models for auto-steering or computer vision models for plant health can accelerate development for OEMs and reduce the need for software investment, they can be too generic and may not solve use-case-specific needs. More focused AI/ML may require more investment in data collection and training models, which, due to their proprietary nature could come at a higher price.

    Photo: SOPHIE-CARON/iStock Unreleased/Getty Images
    Photo: SOPHIE-CARON/iStock Unreleased/Getty Images

    Camera systems

    Camera systems are already widely relied on by autonomous tractors, visually monitoring the surrounding environment and feeding their data into computer-vision solutions where it is parsed. Context-rich, vision-based data can help optimize the distribution of agricultural inputs such as water, seeds, fertilizers and pesticides using real-time variable spray-rate control based on plant size and other metrics to significantly improve efficiencies and reduce overall costs.

    Camera systems come with a set of challenges that need to be carefully managed. Lenses can become contaminated with water, debris, dust, and snow. Even though these issues impact all vision-based applications, including mass-market applications such as automated and autonomous driving, there are still no reliable methods of keeping them clean, aside from water-spraying nozzles (that can cause buildup on the lenses) and old-fashioned manual maintenance.

    Additionally, the steep price of high-resolution cameras can drive up the cost of end solutions, as can data storage and communication when the visual data is processed in the cloud.

    Global navigation satellite systems

    Satellite-based positioning has also become a staple in precision agriculture solutions. Autonomous and guided tractors use the technology to drive vehicles along precise paths to increase pass-to-pass efficiency and reduce overlapping rows. Crop monitoring drones use GNSS technology to patrol predefined flight paths. And fully autonomous guided vehicles such as robotic lawnmowers use it to avoid restricted no-go zones. The latter three applications typically require centimeter-level positioning accuracies.

    Centimeter-level GNSS technology has been available for well over a decade, with farmers subscribing to relatively costly GNSS correction services tailored to each user. However, it was only with the advent of affordable RTK services with availability in rural areas, as well as the dramatic decrease in cost for farmers to deploy their own RTK base stations using low-cost modules, that the price point of high precision positioning has come down far enough to make the service affordable to all but the least lucrative operations.

    High precision GNSS technology brings the benefits of improved pass-to-pass efficiency – a general reduction of all agricultural inputs with all the financial, environmental, and health benefits that this entails. At the same time, it requires solutions to deal with signal delays and the resulting inaccuracies of multipath effects, caused when signals bounce off buildings, mountains, or other solid structures on their way to the GNSS receiver.

    When delivered via the internet, the GNSS augmentation data stream requires an IP connection to the provider’s server. This poses challenges for farms that lack infrastructures such as Wi-Fi base stations, sub-GHz RF systems, or cellular network coverage.

    Photo: Avalon_Studio/E+/Getty Images
    Photo: Avalon_Studio/E+/Getty Images

    Wireless connectivity

    In some way or another, all advanced precision ag use cases depend on wireless connectivity. Environmental sensors and inspection drones need it to relay data to the cloud backend. Additionally, tractors, drones, and other farm robots depend on it to upload telematics data, report their status, enable predictive maintenance tools to reduce downtime, and receive GNSS augmentation data for high precision positioning.

    While cellular connectivity is the easiest to use — all it takes to upload data straight to the cloud is a mobile data subscription and a SIM card — it has two key drawbacks. The first, mentioned earlier, is that the entire farm needs robust network coverage, which is not always a given in rural areas even in the United States and other developed countries. Also, when coverage is available, the cost of data transfers can quickly add up and become prohibitive for smaller, less profitable farms, as they may not be able to negotiate affordable connectivity plans as effectively as larger operations that have much higher data usage.

    One way to address the coverage issue is by choosing the right wireless communication technology. Low power wide area technologies, such as LTE-M, NB-IoT, and Cat-1 solutions offer similar coverage to traditional LTE in many countries and are available at a fraction of the cost. When higher bandwidths are required, LTE Cat 4 or higher modules offer 150 Mbps+ of throughput. 5G modules enabling gigabit connectivity are available today, but solutions may cost up to 10-times more.

    As an alternative, 5G Redcap – an upcoming 3GPP technology – seeks to provide a 5G compatible, affordable solution with medium bandwidth and lower complexity, enabling affordable hardware. We will likely start to see the first RedCap offerings from mobile network operators in 2025.

    Artificial intelligence and machine learning at the edge offer an additional tool to reduce bandwidth requirements, by processing sensed data near the sensors themselves. Rather than streaming vast amounts of raw sensor data to the cloud, devices leveraging edge intelligence can reduce their wireless communication bandwidth requirements and cost by uploading only relevant information.

    The trends driving democratization

    Progress in sensing and sensor fusion platforms, camera systems, GNSS technology, and wireless connectivity is but one of the drivers democratizing precision agriculture. The other is an ongoing ecosystem-wide transformation that is breaking down many of the barriers that have kept precision agriculture solutions the preserve of large, lucrative farming operations.

    Together, they are bringing down the cost of ownership of precision ag technology. Only just a few years ago, the only available solutions from major OEMs came with a hefty price tag, comprising expensive hardware and considerable recurring subscription fees, while requiring skilled labor to implement, operate, and maintain smart equipment.

    Vendor lock-in enforced by locking telematics interface ports prevented farms from adopting aftermarket solutions — justified as a way to improve safety and vehicle reliability. Ultimately, however, this limited farmers’ ability to maintain their equipment themselves and to piece together cost-optimized solutions tailored to their specific needs using components from competing solution providers.

    Today, all of this is changing. Hardware costs are down dramatically due, largely, to economies of scale unleashed by the Internet of Things’ explosive growth. Farmers now have access to affordable, user-friendly aftermarket solutions to upgrade tractors and other agricultural machines they already own that depend on a new generation of more cost-effective GNSS correction services. OEMs are introducing advanced functionality in their entry- to mid-range tractors in addition to their premium product line.

    At the same time, the abundance of open-source projects, module-based solutions, and pre-certified radio technologies are making the development of precision ag solutions cheaper, bringing down the cost of off-the-shelf hardware. Add to that lower subscription costs for GNSS correction services thanks to improved broadcast distribution with SSR-RTK (state space representation-real-time kinematic).

    The total cost of connectivity is dropping as well. Deploying connectivity infrastructure was long a non-negligible cost point, made up of wireless infrastructure and data subscription fees. Today, thanks to the increased availability of cost- and power-optimized wireless communication technologies with broader coverage (LTE-M, NB-IoT, LTE Cat 1), farmers can reap the benefits of the overall expansion of cellular network infrastructure.

    Arguably one of the most promising trends driving the democratization of precision agriculture technology comes from the farming community itself in the form of do-it-yourself solutions based on open-source hardware and software designs.

    Take AgOpenGPS, also referred to as AOG, an open-source auto-steering solution created by a Canadian farmer and software developer. AOG delivers all the hardware design files, the real-time microcontroller firmware, and software required to enable auto-steering on conventional tractors, regardless of their age. Thousands of hours invested by the AOG developer community have made the solution accessible to the masses, both financially — retrofitting tractors can cost less than USD $1,000 — and in terms of prerequisite knowledge.

    A growing variety of precision agriculture platforms, from high-end commercial solutions that cater to the most profitable farms to low-cost do-it-yourself solutions that can pay for themselves in a year and are accessible to smaller, less profitable operations, are transforming the impact that precision agriculture can deliver. With the global food supply under tremendous pressure, this democratization of smart farming technology could come to play an important role in feeding the world.

    To learn more about how u-blox enables high-precision autonomous vehicles and other smart farming applications, visit www.u-blox.com/precision-agriculture.

  • Editorial Advisory Board Q&A: The role of AI and ML

    What role do artificial intelligence (AI) and machine learning (ML) play in analyzing GNSS signals? How might that evolve?


    Ellen Hall
    Ellen Hall

    “ML is gaining adoption across many GNSS application areas due to its ability to extract data and classify signal information often within complex operational environments. By combining ML with AI, systems are now able to characterize receiver correlator outputs and ranging residuals, and then fuse this with identified environmental features — all potentially increasing GNSS accuracy, integrity and availability. As AI and ML mature, we can expect to see new novel methods to optimize PNT sensor-fusion engines. This will include the combination of GNSS signals with other sensor signals such as inertial and vision.”

    — Ellen Hall
    Spirent Federal Systems


    Bernard Gruber
    Bernard Gruber

    “AI will come to the battlefield and I would like to think that AI and ML will play a large part in GNSS solutions and specifically protection from adversaries in the future. As AI can ‘anticipate’ threats (i.e., spoofing, jamming, poor coverage) based upon what it sees and knows one should be able to reduce the cycle time to combat that threat (e.g., find/fix/identify and then target, change frequencies, evade). Seeing this data, ML can adapt to morphing threats as well as ‘fuse’ data from all different domains (air, space, sea and land) to provide solutions.”

    — Bernard Gruber
    Northrop Grumman


    Jules McNeff
    Jules McNeff

    “I would like to turn the question around and ask ‘How does GNSS contribute to enabling AI and ML to function in physical space?’ Many AI and ML experts don’t think about this aspect of the technologies. Of course, timing is essential to AI and ML operation, but both must be spatially oriented as well if they are to interact effectively with things in the ‘real world.’ The more complex the interactions, the higher the need for precise, continuous PNT information. Depending on the applications, the relationships can become synergistic.”

    — Jules McNeff
    Overlook Systems Technologies


    Greg Turetzky Principal Engineer Intel
    Greg Turetzky

    “AI and ML have a great opportunity to fundamentally change the way GNSS signals are used for positioning. In particular, the new modernized signals with wider bandwidths and higher chipping rates create a fundamentally richer data set than classic range/range rate measurements. By analyzing the channel response and using AI/ML techniques, the entire signal environment of LOS and NLOS signals can all be used to make more accurate measurements. In fact, in deep urban canyons with appropriate training, it is even possible to accurately position using only multipath signals such that more multipath makes the position more accurate, not less.”

    — Greg Turetzky
    oneNav

  • OneNav completes pureL5 field test using customer evaluation system

    OneNav completes pureL5 field test using customer evaluation system

    The commercially available L5-only GNSS solution includes machine-learning algorithms to leverage increased L5 signal-ranging precision in challenging signal conditions.

    oneNav logoOneNav has announced performance results from field testing its latest pureL5 customer evaluation system (CES) software in both open-sky and challenging signal environments.

    The patent-pending oneNav GNSS system, including a custom array processor and a library of machine-learning algorithms, demonstrated consistent sub-meter accuracy and rapid time-to-first-fix (<2 sec) in open-sky testing.

    In very challenging urban and deep urban canyon environments, the pureL5 CES field-test equipment outperformed the commercial precision L1 GNSS unit against which it was compared, demonstrating tracking of satellite signals as weak as –160 dBm.

    The oneNav system was able to acquire directly and track L5 signals in all environments with no L1 receiver present, greatly simplifying the RF front end and antenna subsystem and making the pureL5 solution suitable for space- and power-constrained mobile and internet of things (IoT) devices requiring reliable high performance.

    Results of a representative urban drive test route are shown below (the map describes the route driven). During this test, the CES and the commercial precision L1 receiver were both connected to a common antenna, fixes were taken once/second, and the results were compared to a common ground truth position. On average, the oneNav system demonstrated a 55% improvement in accuracy over the precision.

    Image: oneNav
    Image: oneNav

    OneNav’s family of  algorithms improves pureL5 system performance by predicting whether the received signal is line of sight (LOS) and correcting non-line-of-sight (NLOS) signals to increase the number of measurements available for accurate positioning.

    The pureL5 algorithms characterize signal and multipath environments. Accordingly, algorithms developed in one deep urban area can be used to mitigate multipath in areas geographically different, but that present similar multipath signatures. This obviates the need for field-test teams to collect data in thousands of urban areas around the globe.

  • Amateurs with smartphones help monitor GNSS signals in space

    Amateurs with smartphones help monitor GNSS signals in space

    This graphic represents measurements uploaded via the CAMALIOT app by thousands of volunteers. (Image: ESA)
    This graphic represents measurements uploaded via the CAMALIOT app by thousands of volunteers. (Image: ESA)

    More than 11,000 people around Europe and the world have turned their smartphones into GNSS monitoring tools by downloading the CAMALIOT app, so far delivering more than 53 billion measurements of meteorology and space weather patterns to researchers, according to the European Space Agency (ESA).

    ESA asks CAMALIOT volunteers to leave their smartphones by a window each night with GNSS on. The phones record small variations in satellite signals, gathering data for machine-learning analysis. More than 50 smartphone models with dual-frequency receivers can use the app.

    CAMALIOT was developed through ESA’s Navigation Innovation and Support Programme (NAVISP) with the support of the agency’s Navigation Science Office through its GNSS Science Support Centre. The combination of GNSS data, smartphone access and machine learning in support of science is a priority research line of ESA’s Navigation Science Office.

    GNSS signals undergo scintillation as they pass through irregular plasma patches in the ionosphere. This electrically charged upper atmospheric layer is continuously changing, influenced by solar activity, geomagnetic conditions and the local time of day. Dual-frequency GNSS receivers can compensate for this effect by comparing their two frequencies.

    As these signals head to Earth, they are also modified by the amount of water vapor in the lower atmosphere, helping to forecast rainfall in particular.

    “Fixed satnav stations already monitor these effects, but these smartphone-based measurements are boosting our coverage hugely. We’re very gratified by all the support we’ve received,” said Vicente Navarro, ESA navigation engineer. ”These results will then undergo a Big Data machine-learning analysis, seeking out previously unseen patterns in both Earth and space weather.”

    Formally known as the Application of Machine Learning Technology for GNSS IoT Data Fusion project, CAMALIOT is run by a consortium led by ETH Zurich in collaboration with the International Institute for Applied Systems Analysis.

  • DOD tasks Orbital Insight to help identify intentional GNSS disruptions

    DOD tasks Orbital Insight to help identify intentional GNSS disruptions

    A new platform will detect and characterize GNSS spoofing operations using artificial intelligence and commercially available data

    Geospatial intelligence company Orbital Insight has been awarded a contract from the U.S. Department of Defense (DoD) to deliver a technology platform for identifying intentional GNSS interference and manipulation operations across the world.

    The platform will leverage commercially available data to detect GNSS spoofing, where falsified or manipulated GNSS signals are used to confuse adversaries or obscure illicit activities, presenting risk to both government and commercial operations. Orbital Insight was selected through DoD’s Defense Innovation Unit (DIU) solicitation process seeking commercial solutions to counter the growing threat of GNSS disruptions to national security.


    Research suggests that Russia conducted nearly 10,000 spoofing operations from 2016 to 2018 alone.


    The new technology will significantly improve situational awareness for warfighters, intelligence analysts and safety-of-life applications. Orbital Insight’s platform will leverage its multisensor data stack, artificial intelligence and machine-learning capabilities to alert analysts and operators to potential jamming and spoofing events, techniques commonly used by adversarial actors to cover up activities or sabotage operations.

    The platform leverages a suite of geolocation data — satellites, AIS, ADS-B and internet-of-things devices — along with new advanced algorithms designed to automatically recognize anomalies linked to spoofing, complemented by research intelligence from the nonprofit partner Center for Advanced Defense Studies. Research suggests that Russia conducted nearly 10,000 spoofing operations from 2016 to 2018 alone.

    “Helping organizations understand what’s happening on and to the Earth is at the heart of what Orbital Insight does, and spoofing is a national security problem that has proven challenging to solve,” said Kevin O’Brien, CEO, Orbital Insight. “GNSS spoofing is essentially a data problem, and Orbital Insight’s AI and deep data stack can help identify spoofing, along with other major humanitarian and environmental challenges. This is a perfect example of private and public sectors uniting through technology.”


    Other areas that may be addressed: identifying drug trafficking, illegal fishing, sea-borne piracy and unintentional commercial aviation disruptions


    The technology has broad implications that extend beyond situational awareness of intentional GNSS interference. Other national security, humanitarian and environmental challenges may be addressed, such as identifying drug trafficking, illegal fishing, sea-borne piracy and unintentional commercial aviation disruptions.

    Federal agencies are increasingly complementing their systems with commercial technology and data sources that are unclassified, universally accessible, and shareable with allies. The National Air and Space Intelligence Center will be the first customer to utilize the technology. Upon successful integration, the goal will be to expand this platform widely across the defense, intelligence and civil communities.

    Orbital Insight received the DoD contract on the heels of announcing a Phase II Small Business Innovation Research contract from the National Geospatial-Intelligence Agency to deliver a computer-vision model that uses synthetic data to detect novel classes of objects.

    The company also recently launched a new class of multiclass object-detection algorithms within its flagship GO platform to help the intelligence community monitor and differentiate activity at thousands of areas of interest. Like all of Orbital Insight’s products, these algorithms are being developed within an ethics framework that shapes the company’s work and values privacy.

    Image: matejmo/iStock/Getty Images Plus/Getty Images
    Image: matejmo/iStock/Getty Images Plus/Getty Images

  • Hexagon acquires CADLM for smart manufacturing, digital twins

    Hexagon acquires CADLM for smart manufacturing, digital twins

    Logo: HexagonHexagon AB has acquired CADLM SAS, a company focused on computer-aided engineering (CAE) with artificial intelligence (AI) and machine learning. These technologies enable simulation in product-development processes and lifecycles.

    Founded in 1989, France-based CADLM develops computational design and optimization methods for industrial products and processes. Since 2014, CADLM has been developing AI and machine learning solutions. Its ODYSSEE software platform applies AI and machine learning to real-world sensor data and physics-based simulation data to produce accurate, predictive models of a product at efficient computing power levels.

    The combination enables faster, more efficient simulations of dynamic, multi-physics phenomena — such as automotive crash and safety — that fully characterize and understand real-world product behavior. This insight enables engineers to explore the design more extensively and interactively, and improve next-generation products without prohibitive computing cost or time.

    Ola Rollén, CEO, Hexagon
    Ola Rollén, CEO, Hexagon

    Use of the digital twin beyond the early design phase enables manufacturers to leverage image recognition, predictive simulation and fault prediction to address challenges such as downtime, throughput, quality and flexibility throughout the manufacturing process.

    “The convergence of CAE with advances in data management, AI, machine-learning and an increasingly connected manufacturing lifecycle is transforming the industry’s ability to address increasingly complex design challenges with rapid innovation and increased productivity,” said Hexagon President and CEO Ola Rollén. “CADLM’s AI knowledge and technology further strengthen our smart manufacturing solutions portfolio, putting data to work beyond the early design phase to improve product design innovation, manufacturing productivity, product quality and environmental sustainability through reductions in material waste.”

    CADLM will operate as part of Hexagon’s Manufacturing Intelligence division. The acquisition has no significant impact on Hexagon’s earnings. Completion of the transaction (closing) is subject to normal closing conditions.

  • Hexagon releases machine-learning GIS tool for smart cities

    Hexagon releases machine-learning GIS tool for smart cities

    Hexagon’s Geospatial division has launched M.App Enterprise 2021, a significant update to its platform for creating geospatial and location intelligence applications. The latest release features new browser-based 3D capabilities and enhanced visual effects, plus the ability to create and configure custom applications more easily.

    M.App Enterprise 2021 adds complete and seamless integration with Hexagon’s LuciadRIA. Now, users can access LuciadRIA’s 3D features, including support for panoramic imagery, shading, ambient occlusion and other visualization effects, to build browser-based solutions with no development necessary.

    The latest version also features a new browser app configurator that makes it even easier to create spatio-temporal dashboards, known as Smart M.Apps. Additionally, Feature Analyzer has been expanded to allow users to add and manage multiple datasets on the fly and set up workflows. These enhancements enable more dynamic configurations, allowing field workers to be alerted quickly when action is required.

    The city of Klagenfurt, Austria — a long-time Hexagon customer — has already begun using M.App Enterprise 2021 to create a city app platform that features a detailed 3D urban landscape of the entire city.

    “This opens up endless possibilities for applications to automate several manual processes within different departments of the city,” said Günter Koren, head of the department of surveying and GIS at the city of Klagenfurt. “We believe M. App Enterprise will be an essential step in our journey to become a smarter, safer city for our 100,000 citizens.”

    The latest release contains other new features and improvements, including an overhauled style editor, a new default dark theme, options for customized theming and full support for SAP HANA databases.

    “M.App Enterprise 2021 helps organizations achieve smart monitoring of their cities, infrastructure and services by seamlessly incorporating location intelligence into enterprise systems and workflows,” said Georg Hammerer, chief technology officer of Hexagon’s Geospatial division. “With augmented visuals and dynamic configurations, this new version of M.App Enterprise can help customers easily set up powerful applications, allowing them to be more productive and efficient.”

    Screenshot: Hexagon Geospatial
    Screenshot: Hexagon Geospatial

  • Autonomous lawn mower hits the market this year

    Autonomous lawn mower hits the market this year

    Photo: Graze
    Photo: Graze

    A new start-up has introduced an autonomous lawn mower to bring intelligence, automation and sustainable solutions to commercial landscaping. The first autonomous lawn mower by Graze is set to hit the market this year.

    The electric lawn mower is designed to increase efficiency and maintenance speed for mid- to large-sized commercial lawns, enhance cutting blades to perfect trim precision, add new sensor capabilities to increase safety, and improve GPS-based mapping and computer vision while optimizing intelligent and applicable insights through advanced machine-learning capabilities.

    Analyst reports have found landscaping services in the U.S. generated $101.7 billion in revenue in 2020, while commercial landscaping services (maintenance and general services) have been projected to range between 40 and 60 percent of the overall landscaping service industry in the U.S. Yet, despite the major opportunity to capitalize on an approximate $53B market, commercial lawn mowing has remained an undisrupted industry. Small margins, labor limitations and increasing scrutiny on environmental impact has been met with a lack of impactful solutions.

    Graze’s initial prototype attracted investors from major operators as well as individuals on crowdfunding platform SeedInvest.

    “We are living in new era of artificial intelligence that stands to transform age-old industries,” said John Vlay, Graze Mowing CEO. “Robotics and automation open up a world of efficiency, and when you apply intelligence, traditional models can be completely reimagined. I’ve been in commercial landscaping for more than 35 years, and can confidently say we built a lawn mower that will bring a new level of quality and safety to the market, and we are doing it sustainably. We are excited to unveil the future of commercial lawn-mowing with our new Graze commercial mower.”

    The new model optimizes features and incorporates in-the-field feedback. It has a longer battery life. It can consistently learn and apply data via an intuitive user experience, improving lawn care and creating new optimization opportunities for fleet operators.

    Machine learning, coupled with computer vision and a robust system of sensors, allows the new Graze commercial mower to map job sites, plan and execute mowing paths, and avoid obstacles and dangerous inclines while continuously collecting and apply data to further improve aesthetic quality and efficiency.

    Powered completely by electric and solar panel technology, the new model allows operators to maximize revenue by deploying mowers during evening hours. Fuel costs are drastically cut, as are carbon emissions. Current fleet operators manage 500 to 1,000 mowers.

    Graze is backed by lead investor Wavemaker Partners, a global venture capital fund with $400 million in assets under management including Wavemaker Labs, a robotics and automation focused venture studio.

  • L3Harris to help DOD with artificial intelligence, machine learning

    L3Harris to help DOD with artificial intelligence, machine learning

    Logo: L3HarrisL3Harris Technologies will help the U.S. Department of Defense (DOD) develop artificial intelligence and machine learning (AI/ML) systems to help reduce the amount of time it takes to decipher usable intelligence from increasing amounts of data collected from space and airborne assets.

    L3Harris will research, develop and demonstrate an AI/ML interface using data science techniques under a new multimillion-dollar contract to support DOD applications.

    “L3Harris’ work will allow the DOD to turn massive volumes of data into actionable intelligence,” said Ed Zoiss, president, Space and Airborne Systems, L3Harris. “The abundance of data collected by space and airborne assets is only increasing. The findings of this research will directly address the data processing challenges within the DOD and intelligence community.”

    Awarded by the U.S. Army Research Laboratory, the contract supports the DOD’s initiative to accelerate the integration of big data and AI/ML within the agency.

    L3Harris will perform the work in Rochester, New York; Melbourne, Florida; and Herndon, Virginia.