early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

151
externals/vcpkg/ports/geotrans/CMakeLists.txt vendored Executable file
View File

@@ -0,0 +1,151 @@
cmake_minimum_required(VERSION 3.10)
project(geotrans CXX)
file(GLOB_RECURSE DTCC_CPP CCS/src/dtcc/*.cpp)
include_directories(
CCS/src/CoordinateConversion
CCS/src/dtcc
CCS/src/dtcc/CoordinateSystemParameters
CCS/src/dtcc/CoordinateSystems
CCS/src/dtcc/CoordinateSystems/albers
CCS/src/dtcc/CoordinateSystems/azeq
CCS/src/dtcc/CoordinateSystems/bng
CCS/src/dtcc/CoordinateSystems/bonne
CCS/src/dtcc/CoordinateSystems/cassini
CCS/src/dtcc/CoordinateSystems/cyleqa
CCS/src/dtcc/CoordinateSystems/datum
CCS/src/dtcc/CoordinateSystems/eckert4
CCS/src/dtcc/CoordinateSystems/eckert6
CCS/src/dtcc/CoordinateSystems/ellipse
CCS/src/dtcc/CoordinateSystems/eqdcyl
CCS/src/dtcc/CoordinateSystems/gars
CCS/src/dtcc/CoordinateSystems/geocent
CCS/src/dtcc/CoordinateSystems/georef
CCS/src/dtcc/CoordinateSystems/gnomonic
CCS/src/dtcc/CoordinateSystems/grinten
CCS/src/dtcc/CoordinateSystems/lambert
CCS/src/dtcc/CoordinateSystems/loccart
CCS/src/dtcc/CoordinateSystems/locspher
CCS/src/dtcc/CoordinateSystems/mercator
CCS/src/dtcc/CoordinateSystems/mgrs
CCS/src/dtcc/CoordinateSystems/miller
CCS/src/dtcc/CoordinateSystems/misc
CCS/src/dtcc/CoordinateSystems/mollweid
CCS/src/dtcc/CoordinateSystems/neys
CCS/src/dtcc/CoordinateSystems/nzmg
CCS/src/dtcc/CoordinateSystems/omerc
CCS/src/dtcc/CoordinateSystems/orthogr
CCS/src/dtcc/CoordinateSystems/polarst
CCS/src/dtcc/CoordinateSystems/polycon
CCS/src/dtcc/CoordinateSystems/sinusoid
CCS/src/dtcc/CoordinateSystems/spherical
CCS/src/dtcc/CoordinateSystems/stereogr
CCS/src/dtcc/CoordinateSystems/threads
CCS/src/dtcc/CoordinateSystems/tranmerc
CCS/src/dtcc/CoordinateSystems/trcyleqa
CCS/src/dtcc/CoordinateSystems/ups
CCS/src/dtcc/CoordinateSystems/usng
CCS/src/dtcc/CoordinateSystems/utm
CCS/src/dtcc/CoordinateSystems/webmerc
CCS/src/dtcc/CoordinateTuples
CCS/src/dtcc/Enumerations
CCS/src/dtcc/Exception
)
set(DTCC_INCLUDES
include/CoordinateConversion
include/dtcc/
include/dtcc/CoordinateSystemParameters
include/dtcc/CoordinateSystems
include/dtcc/CoordinateSystems/albers
include/dtcc/CoordinateSystems/azeq
include/dtcc/CoordinateSystems/bng
include/dtcc/CoordinateSystems/bonne
include/dtcc/CoordinateSystems/cassini
include/dtcc/CoordinateSystems/cyleqa
include/dtcc/CoordinateSystems/datum
include/dtcc/CoordinateSystems/eckert4
include/dtcc/CoordinateSystems/eckert6
include/dtcc/CoordinateSystems/ellipse
include/dtcc/CoordinateSystems/eqdcyl
include/dtcc/CoordinateSystems/gars
include/dtcc/CoordinateSystems/geocent
include/dtcc/CoordinateSystems/georef
include/dtcc/CoordinateSystems/gnomonic
include/dtcc/CoordinateSystems/grinten
include/dtcc/CoordinateSystems/lambert
include/dtcc/CoordinateSystems/loccart
include/dtcc/CoordinateSystems/locspher
include/dtcc/CoordinateSystems/mercator
include/dtcc/CoordinateSystems/mgrs
include/dtcc/CoordinateSystems/miller
include/dtcc/CoordinateSystems/misc
include/dtcc/CoordinateSystems/mollweid
include/dtcc/CoordinateSystems/neys
include/dtcc/CoordinateSystems/nzmg
include/dtcc/CoordinateSystems/omerc
include/dtcc/CoordinateSystems/orthogr
include/dtcc/CoordinateSystems/polarst
include/dtcc/CoordinateSystems/polycon
include/dtcc/CoordinateSystems/sinusoid
include/dtcc/CoordinateSystems/spherical
include/dtcc/CoordinateSystems/stereogr
include/dtcc/CoordinateSystems/threads
include/dtcc/CoordinateSystems/tranmerc
include/dtcc/CoordinateSystems/trcyleqa
include/dtcc/CoordinateSystems/ups
include/dtcc/CoordinateSystems/usng
include/dtcc/CoordinateSystems/utm
include/dtcc/CoordinateSystems/webmerc
include/dtcc/CoordinateTuples
include/dtcc/Enumerations
include/dtcc/Exception
)
if(WIN32)
add_definitions(-DLITTLE_ENDIAN)
endif()
add_library(MSPdtcc ${DTCC_CPP})
add_library(MSPCoordinateConversionService CCS/src/CoordinateConversion/CoordinateConversionService.cpp ${DTCC_CPP})
target_include_directories(MSPdtcc INTERFACE "$<INSTALL_INTERFACE:${DTCC_INCLUDES}>")
target_include_directories(MSPCoordinateConversionService INTERFACE $<INSTALL_INTERFACE:include/CoordinateConversion>)
if(WIN32)
if (BUILD_SHARED_LIBS)
add_definitions(
-DMSP_CCS_EXPORTS
-D_USRDLL
)
endif()
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
else()
find_package(Threads REQUIRED)
target_link_libraries(MSPdtcc PRIVATE Threads::Threads ${CMAKE_DL_LIBS})
endif()
install(
TARGETS MSPdtcc
EXPORT geotrans
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
install(
TARGETS MSPCoordinateConversionService
EXPORT geotrans
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
install(DIRECTORY "${CMAKE_SOURCE_DIR}/CCS/src/"
DESTINATION "include"
CONFIGURATIONS Release
FILES_MATCHING
PATTERN "*.h"
)
install(EXPORT geotrans NAMESPACE geotrans:: DESTINATION share/geotrans CONFIGURATIONS Release)

View File

@@ -0,0 +1,7 @@
if("@VCPKG_LIBRARY_LINKAGE@" STREQUAL "static" AND NOT WIN32)
include(CMakeFindDependencyMacro)
find_dependency(Threads)
endif()
include(${CMAKE_CURRENT_LIST_DIR}/geotrans.cmake)

37
externals/vcpkg/ports/geotrans/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,37 @@
set(VCPKG_LIBRARY_LINKAGE "dynamic")
# We specify the Linux URL, but the only difference between the Windows/Linux packages are the included libraries
# which we re-build anyway. There is no source only package provided or it would be preferred (and smaller).
vcpkg_download_distfile(ARCHIVE
URLS "https://earth-info.nga.mil/php/download.php?file=wgs-mastertgz"
FILENAME "geotrans-3.8-master.tgz"
SHA512 359704ee9700762111006d126872feab9f644af0cebd433a657473347ea48f4eb172681f5f564fbca171bbf58fe0e8fb0829597403958770b7d22ad380afeac3
)
vcpkg_extract_source_archive_ex(
OUT_SOURCE_PATH SOURCE_PATH
ARCHIVE ${ARCHIVE}
)
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH})
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
)
vcpkg_install_cmake()
configure_file(
${CMAKE_CURRENT_LIST_DIR}/geotrans-config.in.cmake
${CURRENT_PACKAGES_DIR}/share/${PORT}/geotrans-config.cmake
@ONLY
)
configure_file(${CMAKE_CURRENT_LIST_DIR}/usage ${CURRENT_PACKAGES_DIR}/share/${PORT} @ONLY)
# Handle copyright
file(INSTALL ${SOURCE_PATH}/GEOTRANS3/docs/MSP_Geotrans_Terms_Of_Use.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
# Install the geo model data
file(COPY ${SOURCE_PATH}/data DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})

11
externals/vcpkg/ports/geotrans/usage vendored Executable file
View File

@@ -0,0 +1,11 @@
The package geotrans provides CMake targets:
find_package(geotrans CONFIG REQUIRED)
target_link_libraries(main PRIVATE geotrans::MSPdtcc geotrans::MSPCoordinateConversionService)
The geotrans library depends on being able to read it's model data so you'll need to
set an environment variable to let geotrans know where the models are installed:
export MSPCCS_DATA=@CURRENT_INSTALLED_DIR@/share/@PORT@/data

8
externals/vcpkg/ports/geotrans/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,8 @@
{
"name": "geotrans",
"version": "3.8",
"port-version": 1,
"description": "GEOTRANS is an application that allows you to convert geographic coordinates among a wide variety of coordinate systems, map projections, grids, and datums. GEOTRANS runs in Microsoft Windows and LINUX environments.",
"homepage": "https://earth-info.nga.mil/GandG/update/index.php?action=home",
"supports": "!uwp"
}