使用GDAL将立体投影转换为epsg 28992

问题描述

我正在尝试使用gdalwarp将极地立体图像投影到墨卡托投影epsg 28992(用于传单)

gdalinfo "HDF5:\"RAD_NL25_PCP_NA_202010271205.h5\"://image1/image_data"

Driver: HDF5Image/HDF5 Dataset
Files: RAD_NL25_PCP_NA_202010271205.h5
Size is 700,765
Metadata:
  geographic_geo_column_offset=0
  geographic_geo_dim_pixel=KM,KM
  geographic_geo_number_columns=700
  geographic_geo_number_rows=765
  geographic_geo_par_pixel=X,Y
  geographic_geo_pixel_def=LU
  geographic_geo_pixel_size_x=1.0000035
  geographic_geo_pixel_size_y=-1.0000048
  geographic_geo_product_corners=0 49.362064 0 55.973602 10.856453 55.388973 9.0093002 48.895302
  geographic_geo_row_offset=3649.9819
  geographic_map_projection_projection_indication=Y
  geographic_map_projection_projection_name=STEREOGRAPHIC
  geographic_map_projection_projection_proj4_params=+proj=stere +lat_0=90 +lon_0=0 +lat_ts=60 +a=6378.14 +b=6356.75 +x_0=0 y_0=0
  image1_calibration_calibration_flag=Y
  image1_calibration_calibration_formulas=GEO = 0.500000 * PV + -32.000000
  image1_calibration_calibration_missing_data=0
  image1_calibration_calibration_out_of_image=255
  image1_image_bytes_per_pixel=1
  image1_image_geo_parameter=REFLECTIVITY_[DBZ]
  image1_image_product_name=RAD_NL25_PCP_H1.5_NA
  image1_image_size=535500
  image1_statistics_stat_max_value=44.5
  image1_statistics_stat_min_value=-31.5
  overview_hdftag_version_number=3.6
  overview_number_image_groups=1
  overview_number_radar_groups=3
  overview_number_satellite_groups=0
  overview_number_station_groups=0
  overview_products_missing=NA
  overview_product_datetime_end=27-OCT-2020;12:05:00.000
  overview_product_datetime_start=27-OCT-2020;12:05:00.000
  overview_product_group_name=RAD_NL25_PCP_NA
  radar1_radar_location=5.17834 52.101681
  radar1_radar_name=DeBilt
  radar1_radar_operational=0
  radar2_radar_location=4.7999701 52.953339
  radar2_radar_name=DenHelder
  radar2_radar_operational=1
  radar3_radar_location=5.1381001 51.836899
  radar3_radar_name=Herwijnen
  radar3_radar_operational=1
Corner Coordinates:
Upper Left  (    0.0,0.0)
Lower Left  (    0.0,765.0)
Upper Right (  700.0,0.0)
Lower Right (  700.0,765.0)
Center      (  350.0,382.5)
Band 1 Block=700x765 Type=Byte,ColorInterp=Undefined
  Metadata:
    image1_image_data_CLASS=IMAGE
    image1_image_data_PALETTE=
    image1_image_data_VERSION=1.2
gdalwarp -s_srs "+proj=stere +lat_0=90 +lon_0=0 +lat_ts=60 +a=6378.14 +b=6356.75 +x_0=0 y_0=0" -t_srs "epsg:28992" "HDF5:\"RAD_NL25_PCP_NA_202010271205.h5\"://image1/image_data" output.tif

这将导致此错误消息:

Processing HDF5:"RAD_NL25_PCP_NA_202010271205.h5"://image1/image_data [1/1] : 0ERROR 1: The transformation is already "north up" or a transformation between pixel/line and georeferenced coordinates cannot be computed for HDF5:"RAD_NL25_PCP_NA_202010271205.h5"://image1/image_data. There is no affine transformation and no Gcps. Specify transformation option SRC_METHOD=NO_GEOTRANSFORM to bypass this check.

我想念什么?如果我设置标志SRC_METHOD = NO_GEOTRANSFORM我没有得到预期的结果

解决方法

对GDAL中的HDF5数据的地理参考支持非常有限(https://gdal.org/drivers/raster/hdf5.html)。因此,GDAL无法将您的HDF5文件识别为地理参考数据。

我的解决方案是将您的命令分为两个步骤:

  1. 使用gdal_translate对地理投影进行地理参照
  2. 使用gdalwarp转换为epsg:28992

首先,SRS的定义是地球的大小,应在m中表示如下。

+proj=stere +lat_0=90 +lon_0=0 +lat_ts=60 +a=6378140 +b=6356750 +x_0=0 +y_0=0

接下来,假设元数据geographic_geo_product_corners代表图像四个角的纬度和经度,我们找到了图像角的投影坐标。

LL (0,-4415002.84084825)
UL (0,-3649999.11191775)
UR (700002.437056242,-3649999.05174429)
LR (700002.440031711,-4415003.15918867)

我用gdaltransform找到了。

gdaltransform -s_srs "+proj=latlong" -t_srs "+proj=stere +lat_0=90 +lon_0=0 +lat_ts=60 +a=6378140 +b=6356750 +x_0=0 y_0=0"

因此,您的问题中的转换可以通过以下命令完成

gdal_translate -of VRT -a_srs "+proj=stere +lat_0=90 +lon_0=0 +lat_ts=60 +a=6378140 +b=6356750 +x_0=0 +y_0=0" -a_ullr 0 -3649999.05174429 700002.440031711 -4415003.15918867 "HDF5:\"RAD_NL25_PCP_NA_202010271205.h5\"://image1/image_data" /vsistdout/ | gdalwarp -of GTiff -t_srs epsg:28992 /vsistdin/ output.tif

有关如何将两个gdal命令与管道结合使用的信息,请参见How to convert projection of png tile from epsg:4326 to epsg:3857 by one command using gdal中的答案。

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...