如何可视化和动画化(地球物理)模型。显示原始数据

另请参阅“如何可视化和动画化(地球物理)模型”系列中的其他文章:



根据项目和数据规模,我们可以选择不同的可视化选项-但是,对于任何数据规模,重要的是允许我们直观地评估该规模。例如,在区域级别,在地球仪上显示可以轻松了解研究区域的规模和位置。因此,我们将处理全球数据的显示。


地球上的地球观测数据


从左至右:EMAG2地球磁异常,Sandwell和Smith自由空气重力网格,GEBCO网格测深数据。


问题的提法


- , . , . — , , ( ? ? ?), ( ? ? ?). , , .



.


, (, ). () . " " — ParaView , .


( ) NetCDF. GDAL ( ):


gdal_translate -of NetCDF -r average -tr .25 0.25 EMAG2_V2.tif EMAG2_V2.15min.nc
gdal_translate -of NetCDF -r average -tr .25 0.25 grav_28.1.nc grav_28.1.15min.nc
gdal_translate -of NetCDF -r average -tr .25 0.25 GEBCO_2019.nc GEBCO_2019.15min.nc 

Planet texture maps web site, 8081_earthmap4k.jpg:


8081_earthmap4k.jpg


ParaView ImageMagick:


convert -flip -crop 50%x100% 8081_earthmap4k.jpg _converted.png
convert _converted-1.png _converted-0.png +append 8081_earthmap4k.fixed.jpg

, ParaView.


ParaView


NetCDF ParaView, "Spherical Coordinates" ( , NetCDF , , ) "Calculator"


( 1 + (elevation/6370000)*40)*(cos(coordsY/180*3.141592) * cos(coordsX/180*3.141592) * iHat + cos(coordsY/180*3.141592) * sin(coordsX/180*3.141592) * jHat + sin(coordsY/180*3.141592) * kHat)

"6370000" ( , ), "40" . , "Coordinate Results" (elevation). GEBCO 2019 Gridded Bathymetry Data :


地图GEBCO 2019全球测深仪


, "TextureMaptoSphere" "Texture" 8081_earthmap4k.fixed.jpg:


地球上的地图纹理


( ), , :


映射地球上的地震


, . — , !


, :


印度尼西亚地区地球重力反演模型


, .



Download the global GEBCO_2019 Grid in netCDF format (11 Gbytes, 12 Gbytes uncompressed) — The GEBCO_2019 Grid is the latest global bathymetric product released by the General Bathymetric Chart of the Oceans (GEBCO) and has been developed through the Nippon Foundation-GEBCO Seabed 2030 Project.


WGM2012 Earth's Gravity Anomalies (2-arc-minute resolution) — WGM2012 is the first release of a high resolution grids and maps of the Earth's gravity anomalies (Bouguer, isostatic and surface free-air), computed at global scale in spherical geometry.


EMAG2: Earth Magnetic Anomaly Grid (2-arc-minute resolution) — Magnetic anomaly maps provide insight into the subsurface structure and composition of the Earth's crust. Anomalies trending parallel to the isochrons (lines of equal age) in the oceans reveal the temporal evolution of oceanic crust.


Planet texture maps web site


GDAL -GDAL是栅格和矢量地理空间数据格式的转换器库,开源地理空间基金会根据X / MIT样式的开源许可证发布


ImageMagick -ImageMagick是免费软件,可以即用型二进制分发形式提供,也可以作为源代码提供,您可以在开放和专有应用程序中使用,复制,修改和分发它们。


HOWTO:地球上的可视化是在LinkedIn上用英语撰写的更具技术性的文章。


All Articles