Abstract
With the deployment of global navigation systems such as GPS, GLONASS, GALILEO, and BeiDou, and the construction of the global observation network, global navigation satellite system (GNSS) data have greatly expanded. Traditional relational databases and file systems can no longer efficiently store and process GNSS data. In addition, multidimensional, in-depth visual analysis methods for such data are lacking. In this paper, we provide a solution and implement a GNSS data visualization system based on MapV and cesium running on the Hadoop platform, which can effectively solve the problems of the lack of storage and computing resources for these massive multisource heterogeneous data. The proposed system provides multidimensional presentations to show how the space and ground segments of the entire system are organized by analyzing GNSS data.
1 Introduction
Presently, four global navigation satellite systems (GNSS) provide three-dimensional (3D) location, velocity, and temporal services for military, civil, and commercial users all over the world, including BeiDou, GPS, GLONASS, and GALILEO (Lei 2020). With the exponential growth of navigation applications and users, a higher quality of services require higher processing precision and shorter processing times, bringing great challenges to the processing system of GNSS data analyzing centers. Navigation system data include observation data, meteorological data, and broadcast messages. The data have the characteristics of large volume and exhibit a high degree of being semi-structured and unstructured, which makes traditional file systems and relational databases unable to process and analyze such data efficiently. Hadoop, which is a big data platform that can implement real-time access and fast querying of massive quantities of data, can provide data mining and analysis capabilities. The presentation of data analysis results must rely on visualization technology, which extracts information in summary form to help users understand the transmission and analysis process of navigation data in a more intuitive way. Web-side products, such as cesium and MapV, provide an open-source and convenient visualization platform, which is suitable for secondary development in an interactive way even for nonprofessional users.
The Apache Foundation released the first version of the Hadoop framework in 2011. Since the system cannot work alone and requires cloud computing to provide data storage and processing capabilities (Abbasi et al. 2019), Hadoop is a collection of computing technologies, such as distributed computing, cloud computing (Mell and Grance 2011), and cluster computing. Research in the field of big data started relatively late in China. In 2013, the first academic conference on big data (CCF Big-Data 2013) was held in Beijing. Linyang et al. designed the distributed storage and solution architecture of a GNSS large network (Li et al. 2015), and Fu et al. proposed a distributed cooperative big data storage model for the Operation and Maintenance satellite network (Fu et al. 2018). Workers at Kunming University of Science and Technology and South China University of Technology jointly designed Bizard, a visual analysis framework based on Browser/Server (B/S) architecture to realize multidimensional visualization analysis of big data on Hadoop clusters (Yang et al. 2012). Chen et al. conducted extensive visualization technology research based on Google Earth (Chen et al. 2009), while Xing et al. used the STK software for visualization analysis of GPS navigation satellite attitude (Xing et al. 2013). Purohit et al. estimated and visualized the 2D orbits of GPS satellites based on GPS navigation data files and MATLAB (MathWorks, USA) (Purohit et al. 2018). Choudhary et al. adopted the Django web framework to process satellite data (Choudhary et al. 2019). EarthKAM Explorer displays satellite orbits using Cesium Digital Earth (Loston et al. 2005).
Today, the visualization analysis of GNSS data is mostly in the form of 2D charts, based on the processing of the data stored in traditional file systems or relational databases, which lacks an integrated platform for distributed management of large-scale GNSS data and multidimensional visual analysis. To keep pace with the increasing requirements of navigation applications, this paper builds a general platform for big data to study the key technologies of multidimensional visualization analysis of GNSS data based on previous researches. The big data platform is based on the Hadoop framework and HBase database to realize distributed processing of GNSS data. On this basis, the GNSS data visualization system was constructed. Using the Baidu map application programming interface (API) and MapV technology, the distribution and information of GNSS station network are displayed in a 2D module, and the status and subsatellite points of the satellite system in a 3D module through the Cesium framework.
The rest of this paper is organized as follows. In Section 2, we introduce the key techniques applied in this paper. In Section 3, we describe the system framework in detail, and in Section 4, we explain the experiments and results. Section 5 concludes the paper and describes the planned future work.
2 Key technology
2.1 Hadoop
Hadoop is an integration of distributed storage and computing framework used for big data development. The core of Hadoop 2.0 includes the Hadoop Distributed File System (HDFS), Yet Another Resource Negotiator (YARN), and MapReduce modules (Tao et al. 2019, Sontakke and Dayanand 2019). The HDFS stores and manages massive data in the distributed file system. YARN is responsible for managing and scheduling cluster resources in master/slave mode. MapReduce is a distributed data processing model under Hadoop. An aspect of database selection, HBase (Bhupathiraju and Ravuri 2014) can query and obtain data at different granularities through the three query and access methods (row key, row key range, and full table scan).
2.2 Estimation of site coordinates
In the processing of navigation data, clock differences of the ground receiver and satellite may have an effect on calculating the distance between the two, as do the blur phases. Thus, we must estimate clock differences in a sequence of observations for each satellite and station, as well as estimating the blur parameter, which results in the rank deficit of the normal equation for estimating the station coordinates, clock differences, and blur phases simultaneously. The smaller the geometric network, the simpler it is to compensate for the dip shift of the network by adjusting the clock differences and blur phases. Therefore, external constraints are introduced into the equation that applies the nondifference or double-difference method. Usually, several reference coordinates are used to correct the estimating values of the station coordinates of the reference system. This correction is called the geodetic datum definition.
The geodetic datum definition used in the calculation of GNSS global coordinates is usually the least-constrained solution, which defines a seven-parameter transformation between a prior value
and the matrix is
2.3 Visualization technology
Visualization is a mature technology nowadays. Determination of how to apply visualization technologies to analyze big data of navigation domains is the primary goal of this paper. The Baidu Map API (Wang et al. 2020) is an application interface based on the JavaScript language that supports HTML5. Its functions include map display, geographic analysis, region-based retrieval, and user-defined coverings. MapV is an open-source library for visualization of geographic information on a large scale. Cesium is an open-source platform for digital Earth developed by Analytical Graphics, Inc. (AGI) based on WebGL (Moser et al. 2010). The platform can render 2D, 3D, and 2.5D scenes of Earth without plug-ins, supporting a variety of data formats, e.g., GeoJSON and KML. Cesium repackages AJAX (Li and Peng 2012) functions to implement asynchronously requesting of large-scale geospatial data on the server side. Cesium also has proposed a visual language, CZML (Li and Yan 2021, Chaturvedi 2014), a subset of JSON, which uses key-value pairs to list the attributes and characteristics of objects such as the Earth or a satellite. In CZML, descriptions of different objects are separated by object id.
3 System design
Processing of big data involves data collection, data storage and management, data analysis and mining, and data display. Based on distributed storage and computing architecture, the platform must analyze the requirements of data storage and computing for specific applications, and service information is finally displayed. The overall architecture of the platform is shown in Figure 1.

Overall platform architecture.
3.1 Big data platform design
A Hadoop distributed storage and computing platform was built to process GNSS data. The underlying hardware devices of the platform include clusters of distributed storage servers, cache servers, and computing servers. The HDFS and HBase distributed databases are used for data storage, and the MapReduce is used for computing framework for data processing. In addition, the platform utilizes Zookeeper as a cluster management tool, and application development languages include Java, Python, Perl, and Fortran, among others.
GNSS data include downlink broadcast messages, observation data, meteorological data, time-difference measurement data, interference detection, and multipath detection data of the four major navigation satellite systems. As shown in Figure 2, the data come from global observation stations. The observation data and broadcast messages are stored in RINEX format files, and the file contents must be analyzed first. According to the time interval, the data are divided into day, hour, and 15-min ultra-fast data. In addition to eliminating invalid data, data preprocessing must splice the continuous measurement data within a day, filter out the data in overlapping periods, and make data corrections on a daily basis. Observation data and broadcast messages are stored in HDFS and HBase distributed database, respectively, after preliminary governance and statistics are completed. Satellite orbit files are generated after further calculation and analysis. The statistical results are finally presented in two dimensions in the visual system, and the satellite orbit is presented in three dimensions.

Data-processing architecture.
The structure of the satellite ephemeris is presented in Table 1; the row key is a string of date and time, and the value is the coordinate value under the Earth-Fixed (Guo et al. 2021) system. The structure of the navigation data table is shown in Table 2; the row key is the station name and date. The data may be unusable due to incomplete data, satellite failure, or other reasons. In the present work, for example, both received observations (R:R09=60 in the table) and valid observations (R:R09_v=0 in the table) were analyzed.
HBase data model of C24 satellite ephemeris
Rowkey | Column family |
---|---|
20210102000000000000 | O:x=
|
O:y=
|
|
O:z=22297.368213 | |
20210102000500000000 | O:x=
|
O:y=
|
|
O:z=22453.058722 | |
… | … |
GLONASS navigation data table
Rowkey | Column family |
---|---|
ZPRS_20161106 | R:R09=60 |
R:R09_v=0 | |
ZIM2_20210110 | R:R23=15 |
R:R23_v=15 |
3.2 Data visualization
The proposed GNSS data visualization system visualized GNSS data stored in the distributed storage system with the 2D map module and 3D space module. The 2D module shows the ground system including the distribution and status of station networks, while the 3D module shows the status and subsatellite points of the satellite system. The system adopts a three-layer architecture, i.e., data access, business logic, and presentation layer. The data access layer is used to interact with distributed storage systems, while the presentation layer provides a user interface. The business logic layer implements the logic operations of data, such as data merging or filtering.
3.2.1 Visualization analysis of station network for GNSS measurement based on Django
This module designs and implements a station management platform for a GNSS network by applying satellite positioning and web technologies, which integrates data processing, station management, map visualization, and so on. The platform, using the Baidu map API to build a 2D map for the navigation system, provides dynamic visualization analysis of the system information based on MapV. MapV is an open-source library for big data visualization that can be used to display a large quantity of point, line, and plane data, and each data type has different display types. It adopts B/S architecture and uses the high-performance Django (Li and Si 2016) framework for development.
When the web user interface is opened, a map instance is started with a predefined center point, zoom level, and rotation angle. Each ground station is deployed on the map according to its latitude and longitude, and forms the whole station network. Users can search for a specific station and show its working status and satellite tracking. The quantity and quality of GNSS data collected by the station also can be visualized in the form of a heat map. The track of the satellite subsatellite point can be shown on the map and explains the geographic relation between the satellite and station. Users also can filter the satellite or stations by specifying the navigation system, e.g., GPS, GLONASS, GALILEO, and BeiDou.
3.2.2 Visualization analysis of 3D navigation satellite based on Cesium
This module also adopts the B/S architecture and builds a 3D visualization environment on the browser side by Cesium and Node.js (Li et al. 2017). The Cesium API provides effective loading, visualization, and management of orbit data, which realizes the orbit simulation and visualization based on the digital Earth platform.
In Cesium, each day’s data are stored in the form of a CZML Packet identified by “id.” Since the satellite trajectory changes with time, the “interval” attribute provided by CZML is well suited for the time interval. The “interval” attribute is a string in ISO8601 format that needs a relatively fixed value. In addition to satellite trajectory, satellite icons and annotations are also needed for identification and observation. The “Billboard” and “Label” attributes are adopted to label satellites. The “Cartesian” subattribute provided by the “Position” attribute in CZML is the 3D Cartesian coordinates in meters. The “Cartesian” attribute stores time-position data according to [timestamp 1, X1, Y1, Z1, timestamp 2, X2, Y2, Z2] and specifies the coordinate system as inertial frame (Wang et al. 2020). In addition, the “Lagrange algorithm” attribute defines the interpolation algorithm.
4 Experimental results
The GNSS measurement network and 3D navigation satellite visualization system based on the big data platform architecture and visualization design proposed herein were realized by connecting six servers to form a cluster. This section describes the system functions and environment in detail.
4.1 System environment
The system environment mainly includes the software and hardware environments of the visual platform development, Hadoop cluster, and GNSS data database. The details are presented in Tables 3 and 4.
Hardware environment
Hardware | Count | Parameter | Configuration |
---|---|---|---|
Compute server | 2 | Operating system | Ubuntu 20.10 |
Memory | 512GB | ||
Hard disk | 32TB | ||
Storage server | 3 | Operating system | Ubuntu 20.10 |
Memory | 512GB | ||
Hard Disk | 60TB | ||
Cache server | 1 | Operating system | Ubuntu 20.10 |
Memory | 1TB | ||
Hard Disk | 8TB | ||
Client | 2 | Operating system | Ubuntu 20.10 |
Memory | 64GB | ||
Hard Disk | 3TB | ||
Processor | Intel®
|
Software environment
Software | Version |
---|---|
Hadoop | 3.2.2 |
Zookeeper | 3.4.9 |
HBase | 2.4.2 |
JDK | 1.8.0 |
Python | 3.8.6 |
4.2 System implementation
4.2.1 GNSS measurement network module display
Based on MapV, the homepage of the station network dynamically displays the data flow diagram from iGMAS stations into the data center. As shown in Figure 3, the flow graph includes iGMAS stations, the data center, and traces between them.

Flow graph.
The names of the four major navigation systems – GPS, GLONASS, GALILEO, and BeiDou – are labeled on the top of the map. The user selects the system to view the information of all stations that track the system. AJAX is used to refresh the view asynchronously, and the data are updated locally without refreshing the entire page. The data quantities of all stations are dynamically represented by a heat map, with red representing a large quantity of data and blue a small quantity. The darker the color, the larger the volume of data. When the mouse hovers over a station’s position, the name, coordinates, and some statistics of the station are displayed (Figures 4 and 5).

Stations contained in the GPS system.

Retrieval.
By adding a click-trigger event to the map layer, clicking a station’s position will display the station’s statistics page. As shown in Figure 6, the statistics page displays more working information for the selected station. Because the data collected by the station may contain some errors, such as unmatched dates, which make the data unusable, the usable and collected data are counted separately. The page organizes those statistics by days for comparison so that users can conveniently understand how the station contributes to the entire navigation system. This information is useful in helping to filter the data while performing orbit calculations, or in planning the navigation missions.

GRAS station statistics page.
4.2.2 3D visualization display
The layout of the display interface is divided into four parts: virtual Earth, function module, plug-in functions, and timeline display module. The virtual Earth is in the middle area, which is also the area for 3D scene display and function-module realization. Users can perform basic interactions, such as mouse flipping and zooming, based on the virtual Earth. The function module in the top area of the interface includes global options, satellite control, target center perspective, and equatorial perspective modules (Lian et al. 2021). The menus are all multilevel menus. The related plug-in functions based on the Cesium, including perspective replacement, and 2D and 3D switching, appear on the right-hand side of the display interface. The timeline display module is at the bottom of the interface. The overall layout of the interface is designed to put the functional module bar on the side of the page, around the visual interaction page in the middle, so that the area reserved for the visual scene display space is greater (Figure 7).

GPS satellite constellation.
Choosing and clicking a satellite on the main interface will show the satellite control panel on the left-hand side of the interface. Taking the BeiDou C08 satellite as an example, as shown in Figures 8 and 9, the satellite control panel lists all satellite operations. Clicking the “Track” option can draw the trajectory in the inertial coordinate system or the Earth-Fixed coordinates system. Cesium provides the computeIcrfToFixedMatrix() function to convert Inertial coordinates into Earth-Fixed coordinates, in which the parameter of time is set in an asynchronous manner. The SampledPositionProperty() function generates a pair of time and position that is set to the “Entity” function as the “position” property to generate an entity, which also includes properties such as “Path,” “Label,” “Ellipsoid,” “Billboard,” and “Model.” Dragging the “Trail Time” and “Lead Time” axes can set the time to show the trajectory animation, which changes the “Path” attribute. The “Track Lines” option selects the track as a dashed or solid line. Dragging the “Red,” “Green,” and “Blue” option axes can set the RGB values of the track color. The time axis is displayed at the bottom of the interface. Users can view the simulation animation of the satellite’s movement within a certain period.

Satellite control panel.

Earth-fixed coordinate system.
5 Conclusion
A big data application system for analyzing and processing GNSS data was designed in this work. The system not only provides efficient, reliable, and accessible data services but also develops a multidimensional visual analysis platform. To implement the system, requirements were put forward for GNSS data storage and processing, a study of data storage, data analysis, and multidimensional visualization technologies undertaken, and existing technologies and research integrated. In future work, we plan to introduce visual modeling of business processes to improve the intelligence of the system.
-
Funding information: The authors state no funding involved.
-
Author contributions: All authors have accepted responsibility for the entire content of this manuscript and approved its submission.
-
Conflict of interest: The authors state no conflict of interest.
References
Abbasi AA, Abbasi A, Shamshirband S, Chronopoulos AT. 2019. Software-defined cloud computing: A systematic review on latest trends and developments. IEEE Access. 7:93294–93314. 10.1109/ACCESS.2019.2927822Search in Google Scholar
Bhupathiraju V, Ravuri RP. 2014. The dawn of big data - Hbase. In: 2014 Conference on IT in Business, Industry and Government (CSIBIG). 2014 Mar 08–09; Indore, India. IEEE, 2014 p. 1–4. Search in Google Scholar
Chaturvedi K. 2014. Web based 3D analysis and visualization using HTML5 and WebGL, Master's Thesis, University of Twente, Enschede, Netherlands.Search in Google Scholar
Chen A, Leptoukh G, Kempler SJ. 2009. Visualization of NASA compaign mission vertical profiles using Google Earth. In: 2009 17th International Conference on Geoinformatics. 2009 Aug 12–14; Fairfax, (VA), USA. IEEE, 2009. p. 1–5. Search in Google Scholar
Choudhary B, Dani A, Gutte A, Pophale C. 2019. Architectural optimization of large scale astronomical data. In: International Conference on Computing, Communication and Networking Technologies (ICCCNT). 2019 Jul 06–08; Kanpur, India. IEEE, 2019. p. 1–6. Search in Google Scholar
Fu Y, Hou R, Jun X. 2018. Distributed cooperative storage management framework for big data in satellite network operation and maintenance. Space Information Networks; SINC 2017. Singapore: Springer; https://doi.org/10.1007/978-981-10-7877-4_8. Search in Google Scholar
Guo S, Zhou W, Zhang J, Sun F, Yu D. 2021. Integrated constellation design and deployment method for a regional augmented navigation satellite system using piggyback launches. Astrodynamics. 5(1):49–60. 10.1007/s42064-020-0091-8Search in Google Scholar
Lei H. 2020. Dynamical models for secular evolution of navigation satellites. Astrodynamics. 4(1):57–73. 10.1007/s42064-019-0064-ySearch in Google Scholar
Li J, Peng C. 2012. Query-based Ajax general interactive architecture. In: IEEE International Conference on Computer Science and Automation Engineering. 2012 Jun 22–24; Beijing, China. IEEE, 2012. p. 304–306. Search in Google Scholar
Li S, Si Z. 2016. Information publishing system based on the framework of Django. In: China Academic Conference on Printing & Packaging and Media Technology (PPMT). 2016 Nov 25–27; Beijing, China. Springer, 2016. p. 375–381. Search in Google Scholar
Li J, Yan T. 2021. The construction of wireless channel model visualization platform based on Cesium. In: 2021 3rd International Conference on Advances in Computer Technology, Information Science and Communication (CTISC). 2021 Apr 23–25; Shanghai, China. IEEE, 2021. p. 221–225. Search in Google Scholar
Li L, Lu Z, Fan L, Li J. 2015. Research on the architecture of cloud GNSS based on Hadoop. In: China Satellite Navigation Conference (CSNC) 2015 Proceedings. Berlin, Heidelberg: Springer; p. 717–728. 10.1007/978-3-662-46632-2_62Search in Google Scholar
Li L, Zhu L, Shang W, Feng D, Xiao Z. 2017. Express supervision system based on Node.JS and MongoDB. In: IEEE/ACIS International Conference on Computer and Information Science(ICIS). 2017 May 24–26; Wuhan, China. IEEE, 2017. p. 607–612. Search in Google Scholar
Lian Y, Huo Z, Cheng Y. 2021. On the dynamics and control of the Sun-?Earth L2 tetrahedral formation. Astrodynamics. 5(4):331–346. 10.1007/s42064-021-0111-3Search in Google Scholar
Loston AW, Steffen PL, McGee S. 2005. NASA education: using inquiry in the classroom so that students see learning in a whole new light. JOST. 14(2):147–156. 10.1007/s10956-005-4418-2Search in Google Scholar
Mell PM, Grance T. 2011. The NIST definition of cloud computing. Special Publication (NIST SP), National Institute of Standards and Technology, Gaithersburg, MD. https://doi.org/10.6028/NIST.SP.800-145. Search in Google Scholar
Moser J, Albrecht F, Kosar B. 2010. Beyond visualization-3D GIS analyses for virtual city models. ISPRS. 38(4):W15. Search in Google Scholar
Purohit ASR, PB HS, Shettigar A, Dattathreya A. 2018. Estimation and visualization of 2D orbits of GPS satellites using GPS navigation data file from Mangalore GNSS receiver. IJSRCSEIT. 4(6):255–258. 10.1109/iCATccT44854.2018.9001999Search in Google Scholar
Sontakke V, Dayanand RB. 2019. Optimization of hadoop mapreduce model in cloud computing environment. In: 2019 International Conference on Smart Systems and Inventive Technology (ICSSIT). 2019 Nov 27–29; Tirunelveli, India. IEEE, 2019. p. 510–515. Search in Google Scholar
Tao W, Zhai Y, Tchaye-Kondi J. 2019. LHF: A new archive based approach to accelerate massive small files access performance in HDFS. In: 2019 IEEE Fifth International Conference on Big Data Computing Service and Applications (Big Data Service). 2019 Apr 04–09; Newark (CA), USA. IEEE, 2019. p. 40–48. Search in Google Scholar
Wang Z, Tang Q, Yang Z. 2020. AR precision navigation system based on Baidu map API. In: 2020 IEEE 3rd International Conference on Computer and Communication Engineering Technology (CCET). 2020 Aug 14–16; Beijing, China. IEEE, 2020 p. 314–317. Search in Google Scholar
Wang Y, Chen X, Ran D, Zhao Y. 2020. Spacecraft formation reconfiguration with multiobstacle avoidance under navigation and control uncertainties using adaptive artificial potential function method. Astrodynamics. 4:41–56. 10.1007/s42064-019-0049-xSearch in Google Scholar
Xing X, Cai Y, Dang C, Cheng L. 2013. Design and simulation of on-orbit service for GPS based on STK. 2013 IEEE 11th International Conference on Electronic Measurement & Instruments (ICEMI). 2013 Aug 6–19; Harbin, China. IEEE, 2013. p. 626–630. Search in Google Scholar
Yang Z, You J, Wang J, Hu J. 2012. Bizard: An online multidimensional data analysis visualization tool. Web Technologies and Applications; APWeb 2012. Berlin, Heidelberg: Springer; https://doi.org/10.1007/978-3-642-29253-8_76. Search in Google Scholar
© 2024 Jingyan Wang et al., published by De Gruyter
This work is licensed under the Creative Commons Attribution 4.0 International License.
Articles in the same Issue
- Research Articles
- A generalized super-twisting algorithm-based adaptive fixed-time controller for spacecraft pose tracking
- Retrograde infall of the intergalactic gas onto S-galaxy and activity of galactic nuclei
- Application of SDN-IP hybrid network multicast architecture in Commercial Aerospace Data Center
- Observations of comet C/1652 Y1 recorded in Korean histories
- Computing N-dimensional polytrope via power series
- Stability of granular media impacts morphological characteristics under different impact conditions
- Intelligent collision avoidance strategy for all-electric propulsion GEO satellite orbit transfer control
- Asteroids discovered in the Baldone Observatory between 2017 and 2022: The orbits of asteroid 428694 Saule and 330836 Orius
- Light curve modeling of the eclipsing binary systems V0876 Lyr, V3660 Oph, and V0988 Mon
- Modified Jeans instability and Friedmann equation from generalized Maxwellian distribution
- Special Issue: New Progress in Astrodynamics Applications - Part II
- Multidimensional visualization analysis based on large-scale GNSS data
- Parallel observations process of Tianwen-1 orbit determination
- A novel autonomous navigation constellation in the Earth–Moon system
Articles in the same Issue
- Research Articles
- A generalized super-twisting algorithm-based adaptive fixed-time controller for spacecraft pose tracking
- Retrograde infall of the intergalactic gas onto S-galaxy and activity of galactic nuclei
- Application of SDN-IP hybrid network multicast architecture in Commercial Aerospace Data Center
- Observations of comet C/1652 Y1 recorded in Korean histories
- Computing N-dimensional polytrope via power series
- Stability of granular media impacts morphological characteristics under different impact conditions
- Intelligent collision avoidance strategy for all-electric propulsion GEO satellite orbit transfer control
- Asteroids discovered in the Baldone Observatory between 2017 and 2022: The orbits of asteroid 428694 Saule and 330836 Orius
- Light curve modeling of the eclipsing binary systems V0876 Lyr, V3660 Oph, and V0988 Mon
- Modified Jeans instability and Friedmann equation from generalized Maxwellian distribution
- Special Issue: New Progress in Astrodynamics Applications - Part II
- Multidimensional visualization analysis based on large-scale GNSS data
- Parallel observations process of Tianwen-1 orbit determination
- A novel autonomous navigation constellation in the Earth–Moon system