PROJ 7.2.1的安裝與使用


一、簡介

Ubuntu18.04 和Ubuntu20.04自帶proj4庫,沒有的話也可以通過apt的方式安裝proj-bin庫,指令如下

sudo apt-get install proj-bin

ubunut18.04的proj4版本是4.9.3, ubuntu20.04的proj4的版本時候6.xxx。由於4.0到6.0版本api更新很大,所以我們從源碼安裝指定版本。

二、源碼安裝

1、下載

https://github.com/OSGeo/PROJ.git -b 7.2.1

2、編譯

Build requirements

  • C99 compiler

  • C++11 compiler

  • SQLite3 >= 3.11 (headers, library and executable)

  • libtiff >= 4.0 (headers and library)

  • optional (but recommended): curl >= 7.29.0

  • GNU make for autotools build or CMake >= 3.9

安裝依賴庫

sudo apt install sqlite3

編譯並安裝

cd PROJ
mkdir build
cd build
cmake ..
cmake --build .
sudo cmake --build . --target install

#卸載
sudo xargs rm < install_manifest.txt

三、使用

1、代碼調用

#include <stdio.h>
#include <proj.h>

int main (void) {
    PJ_CONTEXT *C;
    PJ *P;
    PJ *norm;
    PJ_COORD a, b;
  
    /* or you may set C=PJ_DEFAULT_CTX if you are sure you will     */
    /* use PJ objects from only one thread                          */
    C = proj_context_create();
    P = proj_create_crs_to_crs (C,
                                "EPSG:4326",
                                "+proj=utm +zone=32 +datum=WGS84", /* or EPSG:32632 */
                                NULL);
    if (0 == P) {
        fprintf(stderr, "Failed to create transformation object.\n");
        return 1;
    }


    /* This will ensure that the order of coordinates for the input CRS */
    /* will be longitude, latitude, whereas EPSG:4326 mandates latitude, */
    /* longitude */
    norm = proj_normalize_for_visualization(C, P);
    if (0 == norm) {
        fprintf(stderr, "Failed to normalize transformation object.\n");
        return 1;
    }
    proj_destroy(P);
    P = norm;
  
    /* a coordinate union representing Copenhagen: 55d N, 12d E    */
    /* Given that we have used proj_normalize_for_visualization(), the order of
    /* coordinates is longitude, latitude, and values are expressed in degrees. */
    a = proj_coord(12, 55, 0, 0);
  
    /* transform to UTM zone 32, then back to geographical */
    b = proj_trans(P, PJ_FWD, a);
    printf("easting: %.3f, northing: %.3f\n", b.enu.e, b.enu.n);
  
    b = proj_trans(P, PJ_INV, b);
    printf("longitude: %g, latitude: %g\n", b.lp.lam, b.lp.phi);

    /* Clean up */
    proj_destroy(P);
    proj_context_destroy(C); /* may be omitted in the single threaded case */

    return 0;

}

 

find_package(PROJ)

target_link_libraries(MyApp PRIVATE ${PROJ_LIBRARIES})

2、命令行使用

#EPSG:4326 (WGS84) 經度 維度      EPSG:4526(CGCS2000/3-degree Gauss-Kruger zone 38 中央經線114)
echo 114.0994496 30.4262139 | cs2cs +init=epsg:4326 +to +init=epsg:4526
結果:笛卡爾X 笛卡爾Y 38為代號,並笛卡爾X加了500公里
38509554.26	3367365.98

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM