Created
August 24, 2022 21:25
-
-
Save TomAugspurger/0ed295631a7daa7683d599aa707ceaa8 to your computer and use it in GitHub Desktop.
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
$ gdal_translate -of zarr /vsicurl/https://naipeuwest.blob.core.windows.net/naip/v002/ia/2019/ia_60cm_2019/42091/m_4209150_sw_15_060_20190828.tif out.zarr | |
Input file size is 9833, 12777 | |
0...10...20...30...40...50...60...70...80...90...100 - done. | |
$ gdalinfo out.zarr/ | |
Driver: Zarr/Zarr | |
Files: out.zarr/ | |
Size is 512, 512 | |
Subdatasets: | |
SUBDATASET_1_NAME=ZARR:"out.zarr/":/X | |
SUBDATASET_1_DESC=Array /X | |
SUBDATASET_2_NAME=ZARR:"out.zarr/":/Y | |
SUBDATASET_2_DESC=Array /Y | |
SUBDATASET_3_NAME=ZARR:"out.zarr/":/Band1 | |
SUBDATASET_3_DESC=Array /Band1 | |
SUBDATASET_4_NAME=ZARR:"out.zarr/":/Band2 | |
SUBDATASET_4_DESC=Array /Band2 | |
SUBDATASET_5_NAME=ZARR:"out.zarr/":/Band3 | |
SUBDATASET_5_DESC=Array /Band3 | |
SUBDATASET_6_NAME=ZARR:"out.zarr/":/Band4 | |
SUBDATASET_6_DESC=Array /Band4 | |
Corner Coordinates: | |
Upper Left ( 0.0, 0.0) | |
Lower Left ( 0.0, 512.0) | |
Upper Right ( 512.0, 0.0) | |
Lower Right ( 512.0, 512.0) | |
Center ( 256.0, 256.0) | |
$ gdalinfo out.zarr/Band1/ | |
Driver: Zarr/Zarr | |
Files: out.zarr/Band1/ | |
Size is 9833, 12777 | |
Coordinate System is: | |
PROJCRS["NAD83 / UTM zone 15N", | |
BASEGEOGCRS["NAD83", | |
DATUM["North American Datum 1983", | |
ELLIPSOID["GRS 1980",6378137,298.257222101, | |
LENGTHUNIT["metre",1]]], | |
PRIMEM["Greenwich",0, | |
ANGLEUNIT["degree",0.0174532925199433]], | |
ID["EPSG",4269]], | |
CONVERSION["UTM zone 15N", | |
METHOD["Transverse Mercator", | |
ID["EPSG",9807]], | |
PARAMETER["Latitude of natural origin",0, | |
ANGLEUNIT["degree",0.0174532925199433], | |
ID["EPSG",8801]], | |
PARAMETER["Longitude of natural origin",-93, | |
ANGLEUNIT["degree",0.0174532925199433], | |
ID["EPSG",8802]], | |
PARAMETER["Scale factor at natural origin",0.9996, | |
SCALEUNIT["unity",1], | |
ID["EPSG",8805]], | |
PARAMETER["False easting",500000, | |
LENGTHUNIT["metre",1], | |
ID["EPSG",8806]], | |
PARAMETER["False northing",0, | |
LENGTHUNIT["metre",1], | |
ID["EPSG",8807]]], | |
CS[Cartesian,2], | |
AXIS["(E)",east, | |
ORDER[1], | |
LENGTHUNIT["metre",1]], | |
AXIS["(N)",north, | |
ORDER[2], | |
LENGTHUNIT["metre",1]], | |
USAGE[ | |
SCOPE["Engineering survey, topographic mapping."], | |
AREA["North America - between 96°W and 90°W - onshore and offshore. Canada - Manitoba; Nunavut; Ontario. United States (USA) - Arkansas; Illinois; Iowa; Kansas; Louisiana; Michigan; Minnesota; Mississippi; Missouri; Nebraska; Oklahoma; Tennessee; Texas; Wisconsin."], | |
BBOX[25.61,-96,84,-90]], | |
ID["EPSG",26915]] | |
Data axis to CRS axis mapping: 2,1 | |
Origin = (592596.000000000000000,4671633.000000000000000) | |
Pixel Size = (0.599999999999995,-0.600000000000044) | |
Metadata: | |
AREA_OR_POINT=Area | |
TIFFTAG_ARTIST=Surdex Corporation, 636-368-4400, www.surdex.com | |
TIFFTAG_DATETIME=2019:10:31 12:19:09 | |
TIFFTAG_DOCUMENTNAME=Center Point SW 4209150 | |
TIFFTAG_HOSTCOMPUTER=DPNODE8 | |
TIFFTAG_IMAGEDESCRIPTION=Image courtesy of USDA Farm Service Agency's National Agriculture Imagery Program (NAIP) under Aerial Photography Field Office contract 47QTCA18D00J5. Imagery has been placed in the public domain and may be used and reproduced without permission or fee. Please credit 'NAIP imagery provided by USDA Farm Service Agency' on any use. | |
Subdatasets: | |
SUBDATASET_1_NAME=ZARR:"out.zarr/Band1/":/Y | |
SUBDATASET_1_DESC=Array /Y | |
SUBDATASET_2_NAME=ZARR:"out.zarr/Band1/":/X | |
SUBDATASET_2_DESC=Array /X | |
Corner Coordinates: | |
Upper Left ( 592596.000, 4671633.000) ( 57d49'45.76"W, 4d22'46.13"N) | |
Lower Left ( 592596.000, 4663966.800) ( 57d53' 8.83"W, 4d22'57.13"N) | |
Upper Right ( 598495.800, 4671633.000) ( 57d49'37.29"W, 4d25'22.94"N) | |
Lower Right ( 598495.800, 4663966.800) ( 57d53' 0.36"W, 4d25'34.04"N) | |
Center ( 595545.900, 4667799.900) ( 57d51'23.05"W, 4d24'10.06"N) | |
Band 1 Block=256x256 Type=Byte, ColorInterp=Undefined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment