├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile.am ├── Makefile.in ├── Makefile.old ├── README.md ├── aclocal.m4 ├── autogen.sh ├── compile ├── config.h.in ├── configure ├── configure.ac ├── convert_geotiff.c ├── depcomp ├── geogrid_index.h ├── geogrid_tiles.c ├── geogrid_tiles.h ├── install-sh ├── missing ├── read_geotiff.c ├── read_geotiff.h ├── test ├── projections │ ├── GeogToWGS84GeoKey5.tif │ ├── albers27.tif │ ├── runtest.sh │ ├── trans_merc.tif │ └── utm.tif └── runtest.sh ├── tester.c ├── utils ├── lcc_proj.py ├── subset_geotif.py ├── tif_coord.py └── tif_corners.py ├── write_geogrid.c └── write_geogrid.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/Makefile.in -------------------------------------------------------------------------------- /Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/Makefile.old -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/autogen.sh -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/compile -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/configure.ac -------------------------------------------------------------------------------- /convert_geotiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/convert_geotiff.c -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/depcomp -------------------------------------------------------------------------------- /geogrid_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/geogrid_index.h -------------------------------------------------------------------------------- /geogrid_tiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/geogrid_tiles.c -------------------------------------------------------------------------------- /geogrid_tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/geogrid_tiles.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/missing -------------------------------------------------------------------------------- /read_geotiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/read_geotiff.c -------------------------------------------------------------------------------- /read_geotiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/read_geotiff.h -------------------------------------------------------------------------------- /test/projections/GeogToWGS84GeoKey5.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/test/projections/GeogToWGS84GeoKey5.tif -------------------------------------------------------------------------------- /test/projections/albers27.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/test/projections/albers27.tif -------------------------------------------------------------------------------- /test/projections/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/test/projections/runtest.sh -------------------------------------------------------------------------------- /test/projections/trans_merc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/test/projections/trans_merc.tif -------------------------------------------------------------------------------- /test/projections/utm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/test/projections/utm.tif -------------------------------------------------------------------------------- /test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/test/runtest.sh -------------------------------------------------------------------------------- /tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/tester.c -------------------------------------------------------------------------------- /utils/lcc_proj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/utils/lcc_proj.py -------------------------------------------------------------------------------- /utils/subset_geotif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/utils/subset_geotif.py -------------------------------------------------------------------------------- /utils/tif_coord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/utils/tif_coord.py -------------------------------------------------------------------------------- /utils/tif_corners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/utils/tif_corners.py -------------------------------------------------------------------------------- /write_geogrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/write_geogrid.c -------------------------------------------------------------------------------- /write_geogrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwfm/convert_geotiff/HEAD/write_geogrid.h --------------------------------------------------------------------------------