在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例C/C++语言基础 → proj9.1.1源码,vs2017工程直接使用

proj9.1.1源码,vs2017工程直接使用

C/C++语言基础

下载此实例
  • 开发语言:C/C++
  • 实例大小:94.87M
  • 下载次数:3
  • 浏览次数:32
  • 发布时间:2023-09-14
  • 实例类别:C/C++语言基础
  • 发 布 人:example好
  • 文件格式:.rar
  • 所需积分:2
 相关标签: VS2017 Proj9.1.1

实例介绍

【实例简介】proj9.1.1源码,vs2017工程直接使用

【实例截图】

from clipboard

【核心代码】

.
├── proj9.1.1源码,vs2017工程直接使用_proj911.rar
└── proj911
    ├── PROJ.sln
    ├── bin
    │   ├── Debug
    │   │   ├── proj_9_1_d.dll
    │   │   ├── proj_9_1_d.ilk
    │   │   └── proj_9_1_d.pdb
    │   └── Release
    │       └── proj_9_1.dll
    ├── include
    │   └── proj
    │       ├── CMakeFiles
    │       │   ├── generate.stamp
    │       │   └── generate.stamp.depend
    │       ├── CMakeLists.txt
    │       ├── CTestTestfile.cmake
    │       ├── cmake_install.cmake
    │       ├── common.hpp
    │       ├── coordinateoperation.hpp
    │       ├── coordinatesystem.hpp
    │       ├── crs.hpp
    │       ├── datum.hpp
    │       ├── internal
    │       │   ├── coordinatesystem_internal.hpp
    │       │   ├── crs_internal.hpp
    │       │   ├── include_nlohmann_json.hpp
    │       │   ├── internal.hpp
    │       │   ├── io_internal.hpp
    │       │   ├── lru_cache.hpp
    │       │   ├── mutex.hpp
    │       │   ├── tracing.hpp
    │       │   └── vendor
    │       │       └── nlohmann
    │       │           └── json.hpp
    │       ├── io.hpp
    │       ├── metadata.hpp
    │       ├── nn.hpp
    │       └── util.hpp
    ├── lib
    │   ├── Debug
    │   │   ├── gtestd.exp
    │   │   ├── gtestd.lib
    │   │   ├── proj_d.exp
    │   │   └── proj_d.lib
    │   └── Release
    │       ├── gtest.exp
    │       ├── gtest.lib
    │       ├── proj.exp
    │       └── proj.lib
    ├── src
    │   ├── 4D_api.cpp
    │   ├── CMakeFiles
    │   │   ├── generate.stamp
    │   │   └── generate.stamp.depend
    │   ├── CMakeLists.txt
    │   ├── aasincos.cpp
    │   ├── adjlon.cpp
    │   ├── apps
    │   │   ├── CMakeLists.txt
    │   │   ├── bin_cct.cmake
    │   │   ├── bin_cs2cs.cmake
    │   │   ├── bin_geod.cmake
    │   │   ├── bin_gie.cmake
    │   │   ├── bin_proj.cmake
    │   │   ├── bin_projinfo.cmake
    │   │   ├── bin_projsync.cmake
    │   │   ├── cct.cpp
    │   │   ├── cs2cs.cpp
    │   │   ├── emess.cpp
    │   │   ├── emess.h
    │   │   ├── geod.cpp
    │   │   ├── geod_interface.cpp
    │   │   ├── geod_interface.h
    │   │   ├── geod_set.cpp
    │   │   ├── gie.cpp
    │   │   ├── optargpm.h
    │   │   ├── proj.cpp
    │   │   ├── proj_strtod.cpp
    │   │   ├── proj_strtod.h
    │   │   ├── projinfo.cpp
    │   │   ├── projsync.cpp
    │   │   ├── utils.cpp
    │   │   └── utils.h
    │   ├── auth.cpp
    │   ├── check_md5sum.cmake
    │   ├── conversions
    │   │   ├── axisswap.cpp
    │   │   ├── cart.cpp
    │   │   ├── geoc.cpp
    │   │   ├── geocent.cpp
    │   │   ├── noop.cpp
    │   │   ├── set.cpp
    │   │   ├── topocentric.cpp
    │   │   └── unitconvert.cpp
    │   ├── ctx.cpp
    │   ├── datum_set.cpp
    │   ├── datums.cpp
    │   ├── deriv.cpp
    │   ├── dmstor.cpp
    │   ├── ell_set.cpp
    │   ├── ellps.cpp
    │   ├── factors.cpp
    │   ├── filemanager.cpp
    │   ├── filemanager.hpp
    │   ├── fwd.cpp
    │   ├── gauss.cpp
    │   ├── general_doc.dox
    │   ├── generate_wkt_parser.cmake
    │   ├── generic_inverse.cpp
    │   ├── geodesic.c
    │   ├── geodesic.h
    │   ├── grids.cpp
    │   ├── grids.hpp
    │   ├── init.cpp
    │   ├── initcache.cpp
    │   ├── internal.cpp
    │   ├── inv.cpp
    │   ├── iso19111
    │   │   ├── c_api.cpp
    │   │   ├── common.cpp
    │   │   ├── coordinatesystem.cpp
    │   │   ├── crs.cpp
    │   │   ├── datum.cpp
    │   │   ├── factory.cpp
    │   │   ├── internal.cpp
    │   │   ├── io.cpp
    │   │   ├── metadata.cpp
    │   │   ├── operation
    │   │   │   ├── concatenatedoperation.cpp
    │   │   │   ├── conversion.cpp
    │   │   │   ├── coordinateoperation_internal.hpp
    │   │   │   ├── coordinateoperation_private.hpp
    │   │   │   ├── coordinateoperationfactory.cpp
    │   │   │   ├── esriparammappings.cpp
    │   │   │   ├── esriparammappings.hpp
    │   │   │   ├── operationmethod_private.hpp
    │   │   │   ├── oputils.cpp
    │   │   │   ├── oputils.hpp
    │   │   │   ├── parammappings.cpp
    │   │   │   ├── parammappings.hpp
    │   │   │   ├── projbasedoperation.cpp
    │   │   │   ├── singleoperation.cpp
    │   │   │   ├── transformation.cpp
    │   │   │   ├── vectorofvaluesparams.cpp
    │   │   │   └── vectorofvaluesparams.hpp
    │   │   ├── static.cpp
    │   │   └── util.cpp
    │   ├── lib_proj.cmake
    │   ├── list.cpp
    │   ├── log.cpp
    │   ├── malloc.cpp
    │   ├── mlfn.cpp
    │   ├── mlfn.hpp
    │   ├── msfn.cpp
    │   ├── mutex.cpp
    │   ├── networkfilemanager.cpp
    │   ├── param.cpp
    │   ├── phi2.cpp
    │   ├── pipeline.cpp
    │   ├── pj_list.h
    │   ├── pr_list.cpp
    │   ├── proj.dir
    │   │   ├── Debug
    │   │   │   ├── 4D_api.obj
    │   │   │   ├── aasincos.obj
    │   │   │   ├── adams.obj
    │   │   │   ├── adjlon.obj
    │   │   │   ├── aea.obj
    │   │   │   ├── aeqd.obj
    │   │   │   ├── affine.obj
    │   │   │   ├── airy.obj
    │   │   │   ├── aitoff.obj
    │   │   │   ├── august.obj
    │   │   │   ├── auth.obj
    │   │   │   ├── axisswap.obj
    │   │   │   ├── bacon.obj
    │   │   │   ├── bertin1953.obj
    │   │   │   ├── bipc.obj
    │   │   │   ├── boggs.obj
    │   │   │   ├── bonne.obj
    │   │   │   ├── c_api.obj
    │   │   │   ├── calcofi.obj
    │   │   │   ├── cart.obj
    │   │   │   ├── cass.obj
    │   │   │   ├── cc.obj
    │   │   │   ├── ccon.obj
    │   │   │   ├── cea.obj
    │   │   │   ├── chamb.obj
    │   │   │   ├── col_urban.obj
    │   │   │   ├── collg.obj
    │   │   │   ├── comill.obj
    │   │   │   ├── common.obj
    │   │   │   ├── concatenatedoperation.obj
    │   │   │   ├── conversion.obj
    │   │   │   ├── coordinateoperationfactory.obj
    │   │   │   ├── coordinatesystem.obj
    │   │   │   ├── crast.obj
    │   │   │   ├── crs.obj
    │   │   │   ├── ctx.obj
    │   │   │   ├── datum.obj
    │   │   │   ├── datum_set.obj
    │   │   │   ├── datums.obj
    │   │   │   ├── defmodel.obj
    │   │   │   ├── deformation.obj
    │   │   │   ├── denoy.obj
    │   │   │   ├── deriv.obj
    │   │   │   ├── dmstor.obj
    │   │   │   ├── eck1.obj
    │   │   │   ├── eck2.obj
    │   │   │   ├── eck3.obj
    │   │   │   ├── eck4.obj
    │   │   │   ├── eck5.obj
    │   │   │   ├── ell_set.obj
    │   │   │   ├── ellps.obj
    │   │   │   ├── eqc.obj
    │   │   │   ├── eqdc.obj
    │   │   │   ├── eqearth.obj
    │   │   │   ├── esriparammappings.obj
    │   │   │   ├── factors.obj
    │   │   │   ├── factory.obj
    │   │   │   ├── fahey.obj
    │   │   │   ├── filemanager.obj
    │   │   │   ├── fouc_s.obj
    │   │   │   ├── fwd.obj
    │   │   │   ├── gall.obj
    │   │   │   ├── gauss.obj
    │   │   │   ├── generic_inverse.obj
    │   │   │   ├── geoc.obj
    │   │   │   ├── geocent.obj
    │   │   │   ├── geodesic.obj
    │   │   │   ├── geos.obj
    │   │   │   ├── gins8.obj
    │   │   │   ├── gn_sinu.obj
    │   │   │   ├── gnom.obj
    │   │   │   ├── goode.obj
    │   │   │   ├── grids.obj
    │   │   │   ├── gstmerc.obj
    │   │   │   ├── hammer.obj
    │   │   │   ├── hatano.obj
    │   │   │   ├── healpix.obj
    │   │   │   ├── helmert.obj
    │   │   │   ├── hgridshift.obj
    │   │   │   ├── horner.obj
    │   │   │   ├── igh.obj
    │   │   │   ├── igh_o.obj
    │   │   │   ├── imoll.obj
    │   │   │   ├── imoll_o.obj
    │   │   │   ├── imw_p.obj
    │   │   │   ├── init.obj
    │   │   │   ├── initcache.obj
    │   │   │   ├── internal.cpp.obj
    │   │   │   ├── inv.obj
    │   │   │   ├── io.obj
    │   │   │   ├── isea.obj
    │   │   │   ├── iso19111
    │   │   │   │   └── internal.cpp.obj
    │   │   │   ├── krovak.obj
    │   │   │   ├── labrd.obj
    │   │   │   ├── laea.obj
    │   │   │   ├── lagrng.obj
    │   │   │   ├── larr.obj
    │   │   │   ├── lask.obj
    │   │   │   ├── latlong.obj
    │   │   │   ├── lcc.obj
    │   │   │   ├── lcca.obj
    │   │   │   ├── list.obj
    │   │   │   ├── log.obj
    │   │   │   ├── loxim.obj
    │   │   │   ├── lsat.obj
    │   │   │   ├── malloc.obj
    │   │   │   ├── mbt_fps.obj
    │   │   │   ├── mbtfpp.obj
    │   │   │   ├── mbtfpq.obj
    │   │   │   ├── merc.obj
    │   │   │   ├── metadata.obj
    │   │   │   ├── mill.obj
    │   │   │   ├── misrsom.obj
    │   │   │   ├── mlfn.obj
    │   │   │   ├── mod_ster.obj
    │   │   │   ├── moll.obj
    │   │   │   ├── molodensky.obj
    │   │   │   ├── msfn.obj
    │   │   │   ├── mutex.obj
    │   │   │   ├── natearth.obj
    │   │   │   ├── natearth2.obj
    │   │   │   ├── nell.obj
    │   │   │   ├── nell_h.obj
    │   │   │   ├── networkfilemanager.obj
    │   │   │   ├── nicol.obj
    │   │   │   ├── noop.obj
    │   │   │   ├── nsper.obj
    │   │   │   ├── nzmg.obj
    │   │   │   ├── ob_tran.obj
    │   │   │   ├── ocea.obj
    │   │   │   ├── oea.obj
    │   │   │   ├── omerc.obj
    │   │   │   ├── oputils.obj
    │   │   │   ├── ortho.obj
    │   │   │   ├── param.obj
    │   │   │   ├── parammappings.obj
    │   │   │   ├── patterson.obj
    │   │   │   ├── phi2.obj
    │   │   │   ├── pipeline.obj
    │   │   │   ├── poly.obj
    │   │   │   ├── pr_list.obj
    │   │   │   ├── proj.log
    │   │   │   ├── proj.tlog
    │   │   │   │   ├── CL.command.1.tlog
    │   │   │   │   ├── CL.read.1.tlog
    │   │   │   │   ├── CL.write.1.tlog
    │   │   │   │   ├── ParallelCustomBuild.command.1.tlog
    │   │   │   │   ├── ParallelCustomBuild.read.1.tlog
    │   │   │   │   ├── ParallelCustomBuild.write.1.tlog
    │   │   │   │   ├── link.command.1.tlog
    │   │   │   │   ├── link.read.1.tlog
    │   │   │   │   ├── link.write.1.tlog
    │   │   │   │   ├── proj.lastbuildstate
    │   │   │   │   └── proj.write.1u.tlog
    │   │   │   ├── proj_9_1_d.Build.CppClean.log
    │   │   │   ├── proj_json_streaming_writer.obj
    │   │   │   ├── proj_mdist.obj
    │   │   │   ├── projbasedoperation.obj
    │   │   │   ├── putp2.obj
    │   │   │   ├── putp3.obj
    │   │   │   ├── putp4p.obj
    │   │   │   ├── putp5.obj
    │   │   │   ├── putp6.obj
    │   │   │   ├── qsc.obj
    │   │   │   ├── qsfn.obj
    │   │   │   ├── release.obj
    │   │   │   ├── robin.obj
    │   │   │   ├── rouss.obj
    │   │   │   ├── rpoly.obj
    │   │   │   ├── rtodms.obj
    │   │   │   ├── s2.obj
    │   │   │   ├── sch.obj
    │   │   │   ├── sconics.obj
    │   │   │   ├── set.obj
    │   │   │   ├── shell.obj
    │   │   │   ├── singleoperation.obj
    │   │   │   ├── somerc.obj
    │   │   │   ├── sqlite3.obj
    │   │   │   ├── sqlite3_utils.obj
    │   │   │   ├── static.obj
    │   │   │   ├── stere.obj
    │   │   │   ├── sterea.obj
    │   │   │   ├── strerrno.obj
    │   │   │   ├── strtod.obj
    │   │   │   ├── sts.obj
    │   │   │   ├── tcc.obj
    │   │   │   ├── tcea.obj
    │   │   │   ├── times.obj
    │   │   │   ├── tinshift.obj
    │   │   │   ├── tmerc.obj
    │   │   │   ├── tobmerc.obj
    │   │   │   ├── topocentric.obj
    │   │   │   ├── tpeqd.obj
    │   │   │   ├── tracing.obj
    │   │   │   ├── transformation.obj
    │   │   │   ├── tsfn.obj
    │   │   │   ├── unitconvert.obj
    │   │   │   ├── units.obj
    │   │   │   ├── urm5.obj
    │   │   │   ├── urmfps.obj
    │   │   │   ├── util.obj
    │   │   │   ├── vandg.obj
    │   │   │   ├── vandg2.obj
    │   │   │   ├── vandg4.obj
    │   │   │   ├── vc141.pdb
    │   │   │   ├── vectorofvaluesparams.obj
    │   │   │   ├── vertoffset.obj
    │   │   │   ├── vgridshift.obj
    │   │   │   ├── wag2.obj
    │   │   │   ├── wag3.obj
    │   │   │   ├── wag7.obj
    │   │   │   ├── wink1.obj
    │   │   │   ├── wink2.obj
    │   │   │   ├── wkt1_generated_parser.obj
    │   │   │   ├── wkt1_parser.obj
    │   │   │   ├── wkt2_generated_parser.obj
    │   │   │   ├── wkt2_parser.obj
    │   │   │   ├── wkt_parser.obj
    │   │   │   ├── xyzgridshift.obj
    │   │   │   └── zpoly1.obj
    │   │   └── Release
    │   │       ├── 4D_api.obj
    │   │       ├── aasincos.obj
    │   │       ├── adams.obj
    │   │       ├── adjlon.obj
    │   │       ├── aea.obj
    │   │       ├── aeqd.obj
    │   │       ├── affine.obj
    │   │       ├── airy.obj
    │   │       ├── aitoff.obj
    │   │       ├── august.obj
    │   │       ├── auth.obj
    │   │       ├── axisswap.obj
    │   │       ├── bacon.obj
    │   │       ├── bertin1953.obj
    │   │       ├── bipc.obj
    │   │       ├── boggs.obj
    │   │       ├── bonne.obj
    │   │       ├── c_api.obj
    │   │       ├── calcofi.obj
    │   │       ├── cart.obj
    │   │       ├── cass.obj
    │   │       ├── cc.obj
    │   │       ├── ccon.obj
    │   │       ├── cea.obj
    │   │       ├── chamb.obj
    │   │       ├── col_urban.obj
    │   │       ├── collg.obj
    │   │       ├── comill.obj
    │   │       ├── common.obj
    │   │       ├── concatenatedoperation.obj
    │   │       ├── conversion.obj
    │   │       ├── coordinateoperationfactory.obj
    │   │       ├── coordinatesystem.obj
    │   │       ├── crast.obj
    │   │       ├── crs.obj
    │   │       ├── ctx.obj
    │   │       ├── datum.obj
    │   │       ├── datum_set.obj
    │   │       ├── datums.obj
    │   │       ├── defmodel.obj
    │   │       ├── deformation.obj
    │   │       ├── denoy.obj
    │   │       ├── deriv.obj
    │   │       ├── dmstor.obj
    │   │       ├── eck1.obj
    │   │       ├── eck2.obj
    │   │       ├── eck3.obj
    │   │       ├── eck4.obj
    │   │       ├── eck5.obj
    │   │       ├── ell_set.obj
    │   │       ├── ellps.obj
    │   │       ├── eqc.obj
    │   │       ├── eqdc.obj
    │   │       ├── eqearth.obj
    │   │       ├── esriparammappings.obj
    │   │       ├── factors.obj
    │   │       ├── factory.obj
    │   │       ├── fahey.obj
    │   │       ├── filemanager.obj
    │   │       ├── fouc_s.obj
    │   │       ├── fwd.obj
    │   │       ├── gall.obj
    │   │       ├── gauss.obj
    │   │       ├── generic_inverse.obj
    │   │       ├── geoc.obj
    │   │       ├── geocent.obj
    │   │       ├── geodesic.obj
    │   │       ├── geos.obj
    │   │       ├── gins8.obj
    │   │       ├── gn_sinu.obj
    │   │       ├── gnom.obj
    │   │       ├── goode.obj
    │   │       ├── grids.obj
    │   │       ├── gstmerc.obj
    │   │       ├── hammer.obj
    │   │       ├── hatano.obj
    │   │       ├── healpix.obj
    │   │       ├── helmert.obj
    │   │       ├── hgridshift.obj
    │   │       ├── horner.obj
    │   │       ├── igh.obj
    │   │       ├── igh_o.obj
    │   │       ├── imoll.obj
    │   │       ├── imoll_o.obj
    │   │       ├── imw_p.obj
    │   │       ├── init.obj
    │   │       ├── initcache.obj
    │   │       ├── internal.cpp.obj
    │   │       ├── inv.obj
    │   │       ├── io.obj
    │   │       ├── isea.obj
    │   │       ├── iso19111
    │   │       │   └── internal.cpp.obj
    │   │       ├── krovak.obj
    │   │       ├── labrd.obj
    │   │       ├── laea.obj
    │   │       ├── lagrng.obj
    │   │       ├── larr.obj
    │   │       ├── lask.obj
    │   │       ├── latlong.obj
    │   │       ├── lcc.obj
    │   │       ├── lcca.obj
    │   │       ├── list.obj
    │   │       ├── log.obj
    │   │       ├── loxim.obj
    │   │       ├── lsat.obj
    │   │       ├── malloc.obj
    │   │       ├── mbt_fps.obj
    │   │       ├── mbtfpp.obj
    │   │       ├── mbtfpq.obj
    │   │       ├── merc.obj
    │   │       ├── metadata.obj
    │   │       ├── mill.obj
    │   │       ├── misrsom.obj
    │   │       ├── mlfn.obj
    │   │       ├── mod_ster.obj
    │   │       ├── moll.obj
    │   │       ├── molodensky.obj
    │   │       ├── msfn.obj
    │   │       ├── mutex.obj
    │   │       ├── natearth.obj
    │   │       ├── natearth2.obj
    │   │       ├── nell.obj
    │   │       ├── nell_h.obj
    │   │       ├── networkfilemanager.obj
    │   │       ├── nicol.obj
    │   │       ├── noop.obj
    │   │       ├── nsper.obj
    │   │       ├── nzmg.obj
    │   │       ├── ob_tran.obj
    │   │       ├── ocea.obj
    │   │       ├── oea.obj
    │   │       ├── omerc.obj
    │   │       ├── oputils.obj
    │   │       ├── ortho.obj
    │   │       ├── param.obj
    │   │       ├── parammappings.obj
    │   │       ├── patterson.obj
    │   │       ├── phi2.obj
    │   │       ├── pipeline.obj
    │   │       ├── poly.obj
    │   │       ├── pr_list.obj
    │   │       ├── proj.log
    │   │       ├── proj.tlog
    │   │       │   ├── CL.command.1.tlog
    │   │       │   ├── CL.read.1.tlog
    │   │       │   ├── CL.write.1.tlog
    │   │       │   ├── ParallelCustomBuild.command.1.tlog
    │   │       │   ├── ParallelCustomBuild.read.1.tlog
    │   │       │   ├── ParallelCustomBuild.write.1.tlog
    │   │       │   ├── link.command.1.tlog
    │   │       │   ├── link.read.1.tlog
    │   │       │   ├── link.write.1.tlog
    │   │       │   ├── proj.lastbuildstate
    │   │       │   └── proj.write.1u.tlog
    │   │       ├── proj_9_1.Build.CppClean.log
    │   │       ├── proj_json_streaming_writer.obj
    │   │       ├── proj_mdist.obj
    │   │       ├── projbasedoperation.obj
    │   │       ├── putp2.obj
    │   │       ├── putp3.obj
    │   │       ├── putp4p.obj
    │   │       ├── putp5.obj
    │   │       ├── putp6.obj
    │   │       ├── qsc.obj
    │   │       ├── qsfn.obj
    │   │       ├── release.obj
    │   │       ├── robin.obj
    │   │       ├── rouss.obj
    │   │       ├── rpoly.obj
    │   │       ├── rtodms.obj
    │   │       ├── s2.obj
    │   │       ├── sch.obj
    │   │       ├── sconics.obj
    │   │       ├── set.obj
    │   │       ├── shell.obj
    │   │       ├── singleoperation.obj
    │   │       ├── somerc.obj
    │   │       ├── sqlite3.obj
    │   │       ├── sqlite3_utils.obj
    │   │       ├── static.obj
    │   │       ├── stere.obj
    │   │       ├── sterea.obj
    │   │       ├── strerrno.obj
    │   │       ├── strtod.obj
    │   │       ├── sts.obj
    │   │       ├── tcc.obj
    │   │       ├── tcea.obj
    │   │       ├── times.obj
    │   │       ├── tinshift.obj
    │   │       ├── tmerc.obj
    │   │       ├── tobmerc.obj
    │   │       ├── topocentric.obj
    │   │       ├── tpeqd.obj
    │   │       ├── tracing.obj
    │   │       ├── transformation.obj
    │   │       ├── tsfn.obj
    │   │       ├── unitconvert.obj
    │   │       ├── units.obj
    │   │       ├── urm5.obj
    │   │       ├── urmfps.obj
    │   │       ├── util.obj
    │   │       ├── vandg.obj
    │   │       ├── vandg2.obj
    │   │       ├── vandg4.obj
    │   │       ├── vectorofvaluesparams.obj
    │   │       ├── vertoffset.obj
    │   │       ├── vgridshift.obj
    │   │       ├── wag2.obj
    │   │       ├── wag3.obj
    │   │       ├── wag7.obj
    │   │       ├── wink1.obj
    │   │       ├── wink2.obj
    │   │       ├── wkt1_generated_parser.obj
    │   │       ├── wkt1_parser.obj
    │   │       ├── wkt2_generated_parser.obj
    │   │       ├── wkt2_parser.obj
    │   │       ├── wkt_parser.obj
    │   │       ├── xyzgridshift.obj
    │   │       └── zpoly1.obj
    │   ├── proj.h
    │   ├── proj.vcxproj
    │   ├── proj.vcxproj.filters
    │   ├── proj.vcxproj.user
    │   ├── proj_config.h
    │   ├── proj_constants.h
    │   ├── proj_experimental.h
    │   ├── proj_internal.h
    │   ├── proj_json_streaming_writer.cpp
    │   ├── proj_json_streaming_writer.hpp
    │   ├── proj_mdist.cpp
    │   ├── proj_symbol_rename.h
    │   ├── projections
    │   │   ├── adams.cpp
    │   │   ├── aea.cpp
    │   │   ├── aeqd.cpp
    │   │   ├── airy.cpp
    │   │   ├── aitoff.cpp
    │   │   ├── august.cpp
    │   │   ├── bacon.cpp
    │   │   ├── bertin1953.cpp
    │   │   ├── bipc.cpp
    │   │   ├── boggs.cpp
    │   │   ├── bonne.cpp
    │   │   ├── calcofi.cpp
    │   │   ├── cass.cpp
    │   │   ├── cc.cpp
    │   │   ├── ccon.cpp
    │   │   ├── cea.cpp
    │   │   ├── chamb.cpp
    │   │   ├── col_urban.cpp
    │   │   ├── collg.cpp
    │   │   ├── comill.cpp
    │   │   ├── crast.cpp
    │   │   ├── denoy.cpp
    │   │   ├── eck1.cpp
    │   │   ├── eck2.cpp
    │   │   ├── eck3.cpp
    │   │   ├── eck4.cpp
    │   │   ├── eck5.cpp
    │   │   ├── eqc.cpp
    │   │   ├── eqdc.cpp
    │   │   ├── eqearth.cpp
    │   │   ├── fahey.cpp
    │   │   ├── fouc_s.cpp
    │   │   ├── gall.cpp
    │   │   ├── geos.cpp
    │   │   ├── gins8.cpp
    │   │   ├── gn_sinu.cpp
    │   │   ├── gnom.cpp
    │   │   ├── goode.cpp
    │   │   ├── gstmerc.cpp
    │   │   ├── hammer.cpp
    │   │   ├── hatano.cpp
    │   │   ├── healpix.cpp
    │   │   ├── igh.cpp
    │   │   ├── igh_o.cpp
    │   │   ├── imoll.cpp
    │   │   ├── imoll_o.cpp
    │   │   ├── imw_p.cpp
    │   │   ├── isea.cpp
    │   │   ├── krovak.cpp
    │   │   ├── labrd.cpp
    │   │   ├── laea.cpp
    │   │   ├── lagrng.cpp
    │   │   ├── larr.cpp
    │   │   ├── lask.cpp
    │   │   ├── latlong.cpp
    │   │   ├── lcc.cpp
    │   │   ├── lcca.cpp
    │   │   ├── loxim.cpp
    │   │   ├── lsat.cpp
    │   │   ├── mbt_fps.cpp
    │   │   ├── mbtfpp.cpp
    │   │   ├── mbtfpq.cpp
    │   │   ├── merc.cpp
    │   │   ├── mill.cpp
    │   │   ├── misrsom.cpp
    │   │   ├── mod_ster.cpp
    │   │   ├── moll.cpp
    │   │   ├── natearth.cpp
    │   │   ├── natearth2.cpp
    │   │   ├── nell.cpp
    │   │   ├── nell_h.cpp
    │   │   ├── nicol.cpp
    │   │   ├── nsper.cpp
    │   │   ├── nzmg.cpp
    │   │   ├── ob_tran.cpp
    │   │   ├── ocea.cpp
    │   │   ├── oea.cpp
    │   │   ├── omerc.cpp
    │   │   ├── ortho.cpp
    │   │   ├── patterson.cpp
    │   │   ├── poly.cpp
    │   │   ├── putp2.cpp
    │   │   ├── putp3.cpp
    │   │   ├── putp4p.cpp
    │   │   ├── putp5.cpp
    │   │   ├── putp6.cpp
    │   │   ├── qsc.cpp
    │   │   ├── robin.cpp
    │   │   ├── rouss.cpp
    │   │   ├── rpoly.cpp
    │   │   ├── s2.cpp
    │   │   ├── sch.cpp
    │   │   ├── sconics.cpp
    │   │   ├── somerc.cpp
    │   │   ├── stere.cpp
    │   │   ├── sterea.cpp
    │   │   ├── sts.cpp
    │   │   ├── tcc.cpp
    │   │   ├── tcea.cpp
    │   │   ├── times.cpp
    │   │   ├── tmerc.cpp
    │   │   ├── tobmerc.cpp
    │   │   ├── tpeqd.cpp
    │   │   ├── urm5.cpp
    │   │   ├── urmfps.cpp
    │   │   ├── vandg.cpp
    │   │   ├── vandg2.cpp
    │   │   ├── vandg4.cpp
    │   │   ├── wag2.cpp
    │   │   ├── wag3.cpp
    │   │   ├── wag7.cpp
    │   │   ├── wink1.cpp
    │   │   └── wink2.cpp
    │   ├── qsfn.cpp
    │   ├── quadtree.hpp
    │   ├── release.cpp
    │   ├── rtodms.cpp
    │   ├── sqlite3_utils.cpp
    │   ├── sqlite3_utils.hpp
    │   ├── strerrno.cpp
    │   ├── strtod.cpp
    │   ├── tests
    │   │   ├── CMakeLists.txt
    │   │   ├── geodsigntest.c
    │   │   ├── geodtest.c
    │   │   └── multistresstest.cpp
    │   ├── tracing.cpp
    │   ├── transformations
    │   │   ├── affine.cpp
    │   │   ├── defmodel.cpp
    │   │   ├── defmodel.hpp
    │   │   ├── defmodel_exceptions.hpp
    │   │   ├── defmodel_impl.hpp
    │   │   ├── deformation.cpp
    │   │   ├── helmert.cpp
    │   │   ├── hgridshift.cpp
    │   │   ├── horner.cpp
    │   │   ├── molodensky.cpp
    │   │   ├── tinshift.cpp
    │   │   ├── tinshift.hpp
    │   │   ├── tinshift_exceptions.hpp
    │   │   ├── tinshift_impl.hpp
    │   │   ├── vertoffset.cpp
    │   │   ├── vgridshift.cpp
    │   │   └── xyzgridshift.cpp
    │   ├── tsfn.cpp
    │   ├── units.cpp
    │   ├── wkt1_generated_parser.c
    │   ├── wkt1_generated_parser.h
    │   ├── wkt1_grammar.y
    │   ├── wkt1_parser.cpp
    │   ├── wkt1_parser.h
    │   ├── wkt2_generated_parser.c
    │   ├── wkt2_generated_parser.h
    │   ├── wkt2_grammar.y
    │   ├── wkt2_parser.cpp
    │   ├── wkt2_parser.h
    │   ├── wkt_parser.cpp
    │   ├── wkt_parser.hpp
    │   ├── x64
    │   │   ├── Debug
    │   │   │   ├── check_wkt1_grammar_md5
    │   │   │   │   ├── check_wk.6BE9667A.tlog
    │   │   │   │   │   ├── ParallelCustomBuild.command.1.tlog
    │   │   │   │   │   ├── ParallelCustomBuild.read.1.tlog
    │   │   │   │   │   ├── ParallelCustomBuild.write.1.tlog
    │   │   │   │   │   └── check_wkt1_grammar_md5.lastbuildstate
    │   │   │   │   └── check_wkt1_grammar_md5.log
    │   │   │   └── check_wkt2_grammar_md5
    │   │   │       ├── check_wk.C41F6DFB.tlog
    │   │   │       │   ├── ParallelCustomBuild.command.1.tlog
    │   │   │       │   ├── ParallelCustomBuild.read.1.tlog
    │   │   │       │   ├── ParallelCustomBuild.write.1.tlog
    │   │   │       │   └── check_wkt2_grammar_md5.lastbuildstate
    │   │   │       └── check_wkt2_grammar_md5.log
    │   │   └── Release
    │   │       ├── check_wkt1_grammar_md5
    │   │       │   ├── check_wk.6BE9667A.tlog
    │   │       │   │   ├── ParallelCustomBuild.command.1.tlog
    │   │       │   │   ├── ParallelCustomBuild.read.1.tlog
    │   │       │   │   ├── ParallelCustomBuild.write.1.tlog
    │   │       │   │   └── check_wkt1_grammar_md5.lastbuildstate
    │   │       │   └── check_wkt1_grammar_md5.log
    │   │       └── check_wkt2_grammar_md5
    │   │           ├── check_wk.C41F6DFB.tlog
    │   │           │   ├── ParallelCustomBuild.command.1.tlog
    │   │           │   ├── ParallelCustomBuild.read.1.tlog
    │   │           │   ├── ParallelCustomBuild.write.1.tlog
    │   │           │   └── check_wkt2_grammar_md5.lastbuildstate
    │   │           └── check_wkt2_grammar_md5.log
    │   └── zpoly1.cpp
    └── third_part
        ├── curl788
        │   ├── bin
        │   │   ├── curl-config
        │   │   ├── curl.exe
        │   │   ├── libcurl-d.dll
        │   │   └── libcurl.dll
        │   ├── include
        │   │   └── curl
        │   │       ├── curl.h
        │   │       ├── curlver.h
        │   │       ├── easy.h
        │   │       ├── header.h
        │   │       ├── mprintf.h
        │   │       ├── multi.h
        │   │       ├── options.h
        │   │       ├── stdcheaders.h
        │   │       ├── system.h
        │   │       ├── typecheck-gcc.h
        │   │       ├── urlapi.h
        │   │       └── websockets.h
        │   └── lib
        │       ├── cmake
        │       │   └── CURL
        │       │       ├── CURLConfig.cmake
        │       │       ├── CURLConfigVersion.cmake
        │       │       ├── CURLTargets-debug.cmake
        │       │       ├── CURLTargets-release.cmake
        │       │       └── CURLTargets.cmake
        │       ├── libcurl-d_imp.lib
        │       ├── libcurl_imp.lib
        │       └── pkgconfig
        │           └── libcurl.pc
        ├── sqlite3
        │   ├── shell.c
        │   ├── shell.obj
        │   ├── sqlite3.c
        │   ├── sqlite3.dll
        │   ├── sqlite3.exe
        │   ├── sqlite3.h
        │   ├── sqlite3.lib
        │   ├── sqlite3.obj
        │   ├── sqlite3ext.h
        │   └── sqlite3rc.h
        └── tiff450
            ├── bin
            │   ├── fax2ps.exe
            │   ├── fax2tiff.exe
            │   ├── pal2rgb.exe
            │   ├── ppm2tiff.exe
            │   ├── raw2tiff.exe
            │   ├── tiff.dll
            │   ├── tiff2bw.exe
            │   ├── tiff2pdf.exe
            │   ├── tiff2ps.exe
            │   ├── tiff2rgba.exe
            │   ├── tiffcmp.exe
            │   ├── tiffcp.exe
            │   ├── tiffcrop.exe
            │   ├── tiffd.dll
            │   ├── tiffdither.exe
            │   ├── tiffdump.exe
            │   ├── tiffinfo.exe
            │   ├── tiffmedian.exe
            │   ├── tiffset.exe
            │   └── tiffsplit.exe
            ├── include
            │   ├── tiff.h
            │   ├── tiffconf.h
            │   ├── tiffio.h
            │   ├── tiffio.hxx
            │   └── tiffvers.h
            ├── lib
            │   ├── cmake
            │   │   └── tiff
            │   │       ├── TiffTargets-debug.cmake
            │   │       ├── TiffTargets-release.cmake
            │   │       └── TiffTargets.cmake
            │   ├── pkgconfig
            │   │   └── libtiff-4.pc
            │   ├── tiff.lib
            │   ├── tiffd.lib
            │   ├── tiffxx.lib
            │   └── tiffxxd.lib
            └── share
                └── doc
                    └── tiff
                        └── manual
                            └── html
                                ├── _images
                                │   ├── bali.jpg
                                │   ├── cat.gif
                                │   ├── cover.jpg
                                │   ├── cramps.gif
                                │   ├── dave.gif
                                │   ├── esri.png
                                │   ├── jim.gif
                                │   ├── leica.png
                                │   ├── quad.jpg
                                │   ├── ring.gif
                                │   ├── safe.png
                                │   ├── smallliz.jpg
                                │   ├── strike.gif
                                │   └── weogeo.png
                                ├── _sources
                                │   ├── addingtags.rst.txt
                                │   ├── build.rst.txt
                                │   ├── contrib.rst.txt
                                │   ├── functions
                                │   │   ├── TIFFAccessTagMethods.rst.txt
                                │   │   ├── TIFFClientInfo.rst.txt
                                │   │   ├── TIFFClose.rst.txt
                                │   │   ├── TIFFCreateDirectory.rst.txt
                                │   │   ├── TIFFCustomDirectory.rst.txt
                                │   │   ├── TIFFCustomTagList.rst.txt
                                │   │   ├── TIFFDataWidth.rst.txt
                                │   │   ├── TIFFDeferStrileArrayWriting.rst.txt
                                │   │   ├── TIFFError.rst.txt
                                │   │   ├── TIFFFieldDataType.rst.txt
                                │   │   ├── TIFFFieldName.rst.txt
                                │   │   ├── TIFFFieldPassCount.rst.txt
                                │   │   ├── TIFFFieldQuery.rst.txt
                                │   │   ├── TIFFFieldReadCount.rst.txt
                                │   │   ├── TIFFFieldTag.rst.txt
                                │   │   ├── TIFFFieldWriteCount.rst.txt
                                │   │   ├── TIFFFlush.rst.txt
                                │   │   ├── TIFFGetField.rst.txt
                                │   │   ├── TIFFMergeFieldInfo.rst.txt
                                │   │   ├── TIFFOpen.rst.txt
                                │   │   ├── TIFFOpenOptions.rst.txt
                                │   │   ├── TIFFPrintDirectory.rst.txt
                                │   │   ├── TIFFProcFunctions.rst.txt
                                │   │   ├── TIFFRGBAImage.rst.txt
                                │   │   ├── TIFFReadDirectory.rst.txt
                                │   │   ├── TIFFReadEncodedStrip.rst.txt
                                │   │   ├── TIFFReadEncodedTile.rst.txt
                                │   │   ├── TIFFReadFromUserBuffer.rst.txt
                                │   │   ├── TIFFReadRGBAImage.rst.txt
                                │   │   ├── TIFFReadRGBAStrip.rst.txt
                                │   │   ├── TIFFReadRGBATile.rst.txt
                                │   │   ├── TIFFReadRawStrip.rst.txt
                                │   │   ├── TIFFReadRawTile.rst.txt
                                │   │   ├── TIFFReadScanline.rst.txt
                                │   │   ├── TIFFReadTile.rst.txt
                                │   │   ├── TIFFSetDirectory.rst.txt
                                │   │   ├── TIFFSetField.rst.txt
                                │   │   ├── TIFFSetTagExtender.rst.txt
                                │   │   ├── TIFFStrileQuery.rst.txt
                                │   │   ├── TIFFWarning.rst.txt
                                │   │   ├── TIFFWriteDirectory.rst.txt
                                │   │   ├── TIFFWriteEncodedStrip.rst.txt
                                │   │   ├── TIFFWriteEncodedTile.rst.txt
                                │   │   ├── TIFFWriteRawStrip.rst.txt
                                │   │   ├── TIFFWriteRawTile.rst.txt
                                │   │   ├── TIFFWriteScanline.rst.txt
                                │   │   ├── TIFFWriteTile.rst.txt
                                │   │   ├── TIFFbuffer.rst.txt
                                │   │   ├── TIFFcodec.rst.txt
                                │   │   ├── TIFFcolor.rst.txt
                                │   │   ├── TIFFmemory.rst.txt
                                │   │   ├── TIFFquery.rst.txt
                                │   │   ├── TIFFsize.rst.txt
                                │   │   ├── TIFFstrip.rst.txt
                                │   │   ├── TIFFswab.rst.txt
                                │   │   ├── TIFFtile.rst.txt
                                │   │   ├── _TIFFRewriteField.rst.txt
                                │   │   ├── _TIFFauxiliary.rst.txt
                                │   │   └── libtiff.rst.txt
                                │   ├── functions.rst.txt
                                │   ├── images.rst.txt
                                │   ├── index.rst.txt
                                │   ├── internals.rst.txt
                                │   ├── libtiff.rst.txt
                                │   ├── project
                                │   │   ├── acknowledgements.rst.txt
                                │   │   ├── bugs.rst.txt
                                │   │   ├── index.rst.txt
                                │   │   ├── license.rst.txt
                                │   │   └── mailinglist.rst.txt
                                │   ├── releases
                                │   │   ├── historical.rst.txt
                                │   │   ├── index.rst.txt
                                │   │   ├── v3.4beta007.rst.txt
                                │   │   ├── v3.4beta016.rst.txt
                                │   │   ├── v3.4beta018.rst.txt
                                │   │   ├── v3.4beta024.rst.txt
                                │   │   ├── v3.4beta028.rst.txt
                                │   │   ├── v3.4beta029.rst.txt
                                │   │   ├── v3.4beta031.rst.txt
                                │   │   ├── v3.4beta032.rst.txt
                                │   │   ├── v3.4beta033.rst.txt
                                │   │   ├── v3.4beta034.rst.txt
                                │   │   ├── v3.4beta035.rst.txt
                                │   │   ├── v3.4beta036.rst.txt
                                │   │   ├── v3.5.1.rst.txt
                                │   │   ├── v3.5.2.rst.txt
                                │   │   ├── v3.5.3.rst.txt
                                │   │   ├── v3.5.4.rst.txt
                                │   │   ├── v3.5.5.rst.txt
                                │   │   ├── v3.5.6beta.rst.txt
                                │   │   ├── v3.5.7.rst.txt
                                │   │   ├── v3.6.0.rst.txt
                                │   │   ├── v3.6.1.rst.txt
                                │   │   ├── v3.7.0.rst.txt
                                │   │   ├── v3.7.0alpha.rst.txt
                                │   │   ├── v3.7.0beta.rst.txt
                                │   │   ├── v3.7.0beta2.rst.txt
                                │   │   ├── v3.7.1.rst.txt
                                │   │   ├── v3.7.2.rst.txt
                                │   │   ├── v3.7.3.rst.txt
                                │   │   ├── v3.7.4.rst.txt
                                │   │   ├── v3.8.0.rst.txt
                                │   │   ├── v3.8.1.rst.txt
                                │   │   ├── v3.8.2.rst.txt
                                │   │   ├── v3.9.0.rst.txt
                                │   │   ├── v3.9.0beta.rst.txt
                                │   │   ├── v3.9.1.rst.txt
                                │   │   ├── v3.9.2.rst.txt
                                │   │   ├── v3.9.3.rst.txt
                                │   │   ├── v3.9.4.rst.txt
                                │   │   ├── v3.9.5.rst.txt
                                │   │   ├── v4.0.0.rst.txt
                                │   │   ├── v4.0.1.rst.txt
                                │   │   ├── v4.0.10.rst.txt
                                │   │   ├── v4.0.2.rst.txt
                                │   │   ├── v4.0.3.rst.txt
                                │   │   ├── v4.0.4.rst.txt
                                │   │   ├── v4.0.4beta.rst.txt
                                │   │   ├── v4.0.5.rst.txt
                                │   │   ├── v4.0.6.rst.txt
                                │   │   ├── v4.0.7.rst.txt
                                │   │   ├── v4.0.8.rst.txt
                                │   │   ├── v4.0.9.rst.txt
                                │   │   ├── v4.1.0.rst.txt
                                │   │   ├── v4.2.0.rst.txt
                                │   │   ├── v4.3.0.rst.txt
                                │   │   ├── v4.4.0.rst.txt
                                │   │   └── v4.5.0.rst.txt
                                │   ├── specification
                                │   │   ├── bigtiff.rst.txt
                                │   │   ├── coverage-bigtiff.rst.txt
                                │   │   ├── coverage.rst.txt
                                │   │   ├── index.rst.txt
                                │   │   └── technote2.rst.txt
                                │   ├── terms.rst.txt
                                │   ├── tools
                                │   │   ├── fax2ps.rst.txt
                                │   │   ├── fax2tiff.rst.txt
                                │   │   ├── pal2rgb.rst.txt
                                │   │   ├── ppm2tiff.rst.txt
                                │   │   ├── raw2tiff.rst.txt
                                │   │   ├── rgb2ycbcr.rst.txt
                                │   │   ├── thumbnail.rst.txt
                                │   │   ├── tiff2bw.rst.txt
                                │   │   ├── tiff2pdf.rst.txt
                                │   │   ├── tiff2ps.rst.txt
                                │   │   ├── tiff2rgba.rst.txt
                                │   │   ├── tiffcmp.rst.txt
                                │   │   ├── tiffcp.rst.txt
                                │   │   ├── tiffcrop.rst.txt
                                │   │   ├── tiffdither.rst.txt
                                │   │   ├── tiffdump.rst.txt
                                │   │   ├── tiffgt.rst.txt
                                │   │   ├── tiffinfo.rst.txt
                                │   │   ├── tiffmedian.rst.txt
                                │   │   ├── tiffset.rst.txt
                                │   │   └── tiffsplit.rst.txt
                                │   └── tools.rst.txt
                                ├── _static
                                │   ├── _sphinx_javascript_frameworks_compat.js
                                │   ├── basic.css
                                │   ├── contents.png
                                │   ├── doctools.js
                                │   ├── documentation_options.js
                                │   ├── file.png
                                │   ├── jquery-3.6.0.js
                                │   ├── jquery.js
                                │   ├── language_data.js
                                │   ├── minus.png
                                │   ├── navigation.png
                                │   ├── plus.png
                                │   ├── pygments.css
                                │   ├── searchtools.js
                                │   ├── sphinx_highlight.js
                                │   ├── sphinxdoc.css
                                │   ├── underscore-1.13.1.js
                                │   └── underscore.js
                                ├── addingtags.html
                                ├── build.html
                                ├── contrib.html
                                ├── functions
                                │   ├── TIFFAccessTagMethods.html
                                │   ├── TIFFClientInfo.html
                                │   ├── TIFFClose.html
                                │   ├── TIFFCreateDirectory.html
                                │   ├── TIFFCustomDirectory.html
                                │   ├── TIFFCustomTagList.html
                                │   ├── TIFFDataWidth.html
                                │   ├── TIFFDeferStrileArrayWriting.html
                                │   ├── TIFFError.html
                                │   ├── TIFFFieldDataType.html
                                │   ├── TIFFFieldName.html
                                │   ├── TIFFFieldPassCount.html
                                │   ├── TIFFFieldQuery.html
                                │   ├── TIFFFieldReadCount.html
                                │   ├── TIFFFieldTag.html
                                │   ├── TIFFFieldWriteCount.html
                                │   ├── TIFFFlush.html
                                │   ├── TIFFGetField.html
                                │   ├── TIFFMergeFieldInfo.html
                                │   ├── TIFFOpen.html
                                │   ├── TIFFOpenOptions.html
                                │   ├── TIFFPrintDirectory.html
                                │   ├── TIFFProcFunctions.html
                                │   ├── TIFFRGBAImage.html
                                │   ├── TIFFReadDirectory.html
                                │   ├── TIFFReadEncodedStrip.html
                                │   ├── TIFFReadEncodedTile.html
                                │   ├── TIFFReadFromUserBuffer.html
                                │   ├── TIFFReadRGBAImage.html
                                │   ├── TIFFReadRGBAStrip.html
                                │   ├── TIFFReadRGBATile.html
                                │   ├── TIFFReadRawStrip.html
                                │   ├── TIFFReadRawTile.html
                                │   ├── TIFFReadScanline.html
                                │   ├── TIFFReadTile.html
                                │   ├── TIFFSetDirectory.html
                                │   ├── TIFFSetField.html
                                │   ├── TIFFSetTagExtender.html
                                │   ├── TIFFStrileQuery.html
                                │   ├── TIFFWarning.html
                                │   ├── TIFFWriteDirectory.html
                                │   ├── TIFFWriteEncodedStrip.html
                                │   ├── TIFFWriteEncodedTile.html
                                │   ├── TIFFWriteRawStrip.html
                                │   ├── TIFFWriteRawTile.html
                                │   ├── TIFFWriteScanline.html
                                │   ├── TIFFWriteTile.html
                                │   ├── TIFFbuffer.html
                                │   ├── TIFFcodec.html
                                │   ├── TIFFcolor.html
                                │   ├── TIFFmemory.html
                                │   ├── TIFFquery.html
                                │   ├── TIFFsize.html
                                │   ├── TIFFstrip.html
                                │   ├── TIFFswab.html
                                │   ├── TIFFtile.html
                                │   ├── _TIFFRewriteField.html
                                │   ├── _TIFFauxiliary.html
                                │   └── libtiff.html
                                ├── functions.html
                                ├── genindex.html
                                ├── images.html
                                ├── index.html
                                ├── internals.html
                                ├── libtiff.html
                                ├── objects.inv
                                ├── project
                                │   ├── acknowledgements.html
                                │   ├── bugs.html
                                │   ├── index.html
                                │   ├── license.html
                                │   └── mailinglist.html
                                ├── releases
                                │   ├── historical.html
                                │   ├── index.html
                                │   ├── v3.4beta007.html
                                │   ├── v3.4beta016.html
                                │   ├── v3.4beta018.html
                                │   ├── v3.4beta024.html
                                │   ├── v3.4beta028.html
                                │   ├── v3.4beta029.html
                                │   ├── v3.4beta031.html
                                │   ├── v3.4beta032.html
                                │   ├── v3.4beta033.html
                                │   ├── v3.4beta034.html
                                │   ├── v3.4beta035.html
                                │   ├── v3.4beta036.html
                                │   ├── v3.5.1.html
                                │   ├── v3.5.2.html
                                │   ├── v3.5.3.html
                                │   ├── v3.5.4.html
                                │   ├── v3.5.5.html
                                │   ├── v3.5.6beta.html
                                │   ├── v3.5.7.html
                                │   ├── v3.6.0.html
                                │   ├── v3.6.1.html
                                │   ├── v3.7.0.html
                                │   ├── v3.7.0alpha.html
                                │   ├── v3.7.0beta.html
                                │   ├── v3.7.0beta2.html
                                │   ├── v3.7.1.html
                                │   ├── v3.7.2.html
                                │   ├── v3.7.3.html
                                │   ├── v3.7.4.html
                                │   ├── v3.8.0.html
                                │   ├── v3.8.1.html
                                │   ├── v3.8.2.html
                                │   ├── v3.9.0.html
                                │   ├── v3.9.0beta.html
                                │   ├── v3.9.1.html
                                │   ├── v3.9.2.html
                                │   ├── v3.9.3.html
                                │   ├── v3.9.4.html
                                │   ├── v3.9.5.html
                                │   ├── v4.0.0.html
                                │   ├── v4.0.1.html
                                │   ├── v4.0.10.html
                                │   ├── v4.0.2.html
                                │   ├── v4.0.3.html
                                │   ├── v4.0.4.html
                                │   ├── v4.0.4beta.html
                                │   ├── v4.0.5.html
                                │   ├── v4.0.6.html
                                │   ├── v4.0.7.html
                                │   ├── v4.0.8.html
                                │   ├── v4.0.9.html
                                │   ├── v4.1.0.html
                                │   ├── v4.2.0.html
                                │   ├── v4.3.0.html
                                │   ├── v4.4.0.html
                                │   └── v4.5.0.html
                                ├── search.html
                                ├── searchindex.js
                                ├── specification
                                │   ├── bigtiff.html
                                │   ├── coverage-bigtiff.html
                                │   ├── coverage.html
                                │   ├── index.html
                                │   └── technote2.html
                                ├── terms.html
                                ├── tools
                                │   ├── fax2ps.html
                                │   ├── fax2tiff.html
                                │   ├── pal2rgb.html
                                │   ├── ppm2tiff.html
                                │   ├── raw2tiff.html
                                │   ├── rgb2ycbcr.html
                                │   ├── thumbnail.html
                                │   ├── tiff2bw.html
                                │   ├── tiff2pdf.html
                                │   ├── tiff2ps.html
                                │   ├── tiff2rgba.html
                                │   ├── tiffcmp.html
                                │   ├── tiffcp.html
                                │   ├── tiffcrop.html
                                │   ├── tiffdither.html
                                │   ├── tiffdump.html
                                │   ├── tiffgt.html
                                │   ├── tiffinfo.html
                                │   ├── tiffmedian.html
                                │   ├── tiffset.html
                                │   └── tiffsplit.html
                                └── tools.html

75 directories, 1189 files


标签: VS2017 Proj9.1.1

实例下载地址

proj9.1.1源码,vs2017工程直接使用

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警