Created
August 25, 2021 00:13
-
-
Save ozjimbob/0a369806468555d9d6d019a3a046ecc7 to your computer and use it in GitHub Desktop.
GDAL INFO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gdalinfo for a large, integer raster: | |
Driver: GTiff/GeoTIFF | |
Files: r_vegmax.tif | |
Size is 34269, 31580 | |
Coordinate System is: | |
PROJCS["unknown", | |
GEOGCS["unknown", | |
DATUM["Unknown_based_on_GRS80_ellipsoid", | |
SPHEROID["GRS 1980",6378137,298.2572221010042, | |
AUTHORITY["EPSG","7019"]], | |
TOWGS84[0,0,0,0,0,0,0]], | |
PRIMEM["Greenwich",0], | |
UNIT["degree",0.0174532925199433]], | |
PROJECTION["Lambert_Conformal_Conic_2SP"], | |
PARAMETER["standard_parallel_1",-30.75], | |
PARAMETER["standard_parallel_2",-35.75], | |
PARAMETER["latitude_of_origin",-33.25], | |
PARAMETER["central_meridian",147], | |
PARAMETER["false_easting",9300000], | |
PARAMETER["false_northing",4500000], | |
UNIT["metre",1, | |
AUTHORITY["EPSG","9001"]]] | |
Origin = (8714575.000000000000000,4968125.000000000000000) | |
Pixel Size = (25.000000000000000,-25.000000000000000) | |
Metadata: | |
AREA_OR_POINT=Area | |
Image Structure Metadata: | |
COMPRESSION=PACKBITS | |
INTERLEAVE=BAND | |
Corner Coordinates: | |
Upper Left ( 8714575.000, 4968125.000) (141d 0'26.09"E, 28d52'34.74"S) | |
Lower Left ( 8714575.000, 4178625.000) (140d30'19.43"E, 35d59' 4.08"S) | |
Upper Right ( 9571300.000, 4968125.000) (149d46'46.49"E, 28d59'42.27"S) | |
Lower Right ( 9571300.000, 4178625.000) (150d 0'46.09"E, 36d 6'47.64"S) | |
Center ( 9142937.500, 4573375.000) (145d19'32.72"E, 32d34'35.09"S) | |
Band 1 Block=256x256 Type=Int32, ColorInterp=Gray | |
# gdalinfo for a smaller binary raster storing binary values as Byte | |
Driver: GTiff/GeoTIFF | |
Files: 2020.tif | |
Size is 4136, 7469 | |
Coordinate System is: | |
PROJCS["unknown", | |
GEOGCS["unknown", | |
DATUM["Unknown_based_on_GRS80_ellipsoid", | |
SPHEROID["GRS 1980",6378137,298.2572221010042, | |
AUTHORITY["EPSG","7019"]], | |
TOWGS84[0,0,0,0,0,0,0]], | |
PRIMEM["Greenwich",0], | |
UNIT["degree",0.0174532925199433]], | |
PROJECTION["Lambert_Conformal_Conic_2SP"], | |
PARAMETER["standard_parallel_1",-30.75], | |
PARAMETER["standard_parallel_2",-35.75], | |
PARAMETER["latitude_of_origin",-33.25], | |
PARAMETER["central_meridian",147], | |
PARAMETER["false_easting",9300000], | |
PARAMETER["false_northing",4500000], | |
UNIT["metre",1, | |
AUTHORITY["EPSG","9001"]]] | |
Origin = (9562325.000000000000000,4591825.000000000000000) | |
Pixel Size = (30.000000000000000,-30.000000000000000) | |
Metadata: | |
AREA_OR_POINT=Area | |
Image Structure Metadata: | |
COMPRESSION=PACKBITS | |
INTERLEAVE=BAND | |
Corner Coordinates: | |
Upper Left ( 9562325.000, 4591825.000) (149d47'26.29"E, 32d23'22.68"S) | |
Lower Left ( 9562325.000, 4367755.000) (149d51'20.82"E, 34d24'39.45"S) | |
Upper Right ( 9686405.000, 4591825.000) (151d 6'34.08"E, 32d21' 9.56"S) | |
Lower Right ( 9686405.000, 4367755.000) (151d12'19.25"E, 34d22'23.27"S) | |
Center ( 9624365.000, 4479790.000) (150d29'23.95"E, 33d23' 0.56"S) | |
Band 1 Block=256x256 Type=Byte, ColorInterp=Gray |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment