|
|
getting GeoTiff Information
Hello all!
I am aware of the 'geotiffinfo' command in Matlab.
http://www.mathworks.de/access/helpdesk/help/toolbox/map/ref/geotiffinfo.html
Do you know of equivalent way of converting geotiff structure to a
readable format using IDL only (without ENVI)?
Thanks a lot for help!
Steve
|
|
0
|
|
|
|
Reply
|
s.mcalister8 (2)
|
8/16/2010 4:41:05 PM |
|
On Aug 16, 1:41=A0pm, Steve McAlister <s.mcalist...@gmail.com> wrote:
> Hello all!
>
> I am aware of the 'geotiffinfo' command in Matlab.http://www.mathworks.de=
/access/helpdesk/help/toolbox/map/ref/geotiffi...
>
> Do you know of equivalent way of converting geotiff structure to a
> readable format using IDL only (without ENVI)?
>
> Thanks a lot for help!
>
> Steve
Sounds like the geotiff keyword to read_tiff().
|
|
0
|
|
|
|
Reply
|
Paulo
|
8/16/2010 4:47:34 PM
|
|
On Aug 16, 10:47=A0am, Paulo Penteado <pp.pente...@gmail.com> wrote:
> On Aug 16, 1:41=A0pm, Steve McAlister <s.mcalist...@gmail.com> wrote:
>
> > Hello all!
>
> > I am aware of the 'geotiffinfo' command in Matlab.http://www.mathworks.=
de/access/helpdesk/help/toolbox/map/ref/geotiffi...
>
> > Do you know of equivalent way of converting geotiff structure to a
> > readable format using IDL only (without ENVI)?
>
> > Thanks a lot for help!
>
> > Steve
>
> Sounds like the geotiff keyword to read_tiff().
Hi Paulo,
geotiff keyword from read_tiff will give me projection information in
structure of GeoTiff like:
MODELPIXELSCALETAG
DOUBLE Array[3]
MODELTIEPOINTTAG
DOUBLE Array[6, 1]
GTMODELTYPEGEOKEY
INT 1
GTRASTERTYPEGEOKEY
INT 1
GEOGLINEARUNITSGEOKEY
INT 9001
GEOGANGULARUNITSGEOKEY
INT 9102
PROJECTEDCSTYPEGEOKEY
INT 26713
But, I want something more sensible for users to read like:
PCS: 'NAD83 / Massachusetts Mainland'
Projection: 'SPCS83 Massachusetts Mainland zone (m)'
MapSys: 'STATE_PLANE_83'
Zone: 2001
CTProjection: 'CT_LambertConfConic_2SP'
ProjParm: [7x1 double]
ProjParmId: {7x1 cell}
GCS: 'NAD83'
Datum: 'North American Datum 1983'
Ellipsoid: 'GRS 1980'
|
|
0
|
|
|
|
Reply
|
Steve
|
8/16/2010 5:04:04 PM
|
|
On Aug 16, 2:04=A0pm, Steve McAlister <s.mcalist...@gmail.com> wrote:
> geotiff keyword from read_tiff will give me projection information in
> structure of GeoTiff like:
>
> =A0 =A0MODELPIXELSCALETAG
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0DOUBLE =A0 =A0Array[3]
> =A0 =A0MODELTIEPOINTTAG
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0DOUBLE =A0 =A0Array[6, 1]
> =A0 =A0GTMODELTYPEGEOKEY
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A0 =A0 =A01
> =A0 =A0GTRASTERTYPEGEOKEY
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A0 =A0 =A01
> =A0 =A0GEOGLINEARUNITSGEOKEY
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A0 9001
> =A0 =A0GEOGANGULARUNITSGEOKEY
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A0 9102
> =A0 =A0PROJECTEDCSTYPEGEOKEY
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A026713
>
> But, I want something more sensible for users to read like:
>
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 PCS: 'NAD83 / Massachusetts Mainland'
> =A0 =A0 =A0 =A0 =A0 =A0Projection: 'SPCS83 Massachusetts Mainland zone (m=
)'
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0MapSys: 'STATE_PLANE_83'
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0Zone: 2001
> =A0 =A0 =A0 =A0 =A0CTProjection: 'CT_LambertConfConic_2SP'
> =A0 =A0 =A0 =A0 =A0 =A0 =A0ProjParm: [7x1 double]
> =A0 =A0 =A0 =A0 =A0 =A0ProjParmId: {7x1 cell}
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 GCS: 'NAD83'
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 Datum: 'North American Datum 1983'
> =A0 =A0 =A0 =A0 =A0 =A0 Ellipsoid: 'GRS 1980'
Yes, the structure uses the numeric codes. Maybe David's geocoord
(http://www.dfanning.com/documents/programs.html#GEOCOORD) can be
useful in translating them into names.
Also, see
http://www.dfanning.com/map_tips/tiffoverlay.html
|
|
0
|
|
|
|
Reply
|
pp.penteado (366)
|
8/16/2010 5:22:21 PM
|
|
On Aug 16, 11:22=A0am, Paulo Penteado <pp.pente...@gmail.com> wrote:
> On Aug 16, 2:04=A0pm, Steve McAlister <s.mcalist...@gmail.com> wrote:
>
>
>
>
>
> > geotiff keyword from read_tiff will give me projection information in
> > structure of GeoTiff like:
>
> > =A0 =A0MODELPIXELSCALETAG
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0DOUBLE =A0 =A0Array[3]
> > =A0 =A0MODELTIEPOINTTAG
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0DOUBLE =A0 =A0Array[6, 1]
> > =A0 =A0GTMODELTYPEGEOKEY
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A0 =A0 =A01
> > =A0 =A0GTRASTERTYPEGEOKEY
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A0 =A0 =A01
> > =A0 =A0GEOGLINEARUNITSGEOKEY
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A0 9001
> > =A0 =A0GEOGANGULARUNITSGEOKEY
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A0 9102
> > =A0 =A0PROJECTEDCSTYPEGEOKEY
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0INT =A0 =A0 =A0 =A0 =A026713
>
> > But, I want something more sensible for users to read like:
>
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 PCS: 'NAD83 / Massachusetts Mainlan=
d'
> > =A0 =A0 =A0 =A0 =A0 =A0Projection: 'SPCS83 Massachusetts Mainland zone =
(m)'
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0MapSys: 'STATE_PLANE_83'
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0Zone: 2001
> > =A0 =A0 =A0 =A0 =A0CTProjection: 'CT_LambertConfConic_2SP'
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0ProjParm: [7x1 double]
> > =A0 =A0 =A0 =A0 =A0 =A0ProjParmId: {7x1 cell}
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 GCS: 'NAD83'
> > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 Datum: 'North American Datum 1983'
> > =A0 =A0 =A0 =A0 =A0 =A0 Ellipsoid: 'GRS 1980'
>
> Yes, the structure uses the numeric codes. Maybe David's geocoord
> (http://www.dfanning.com/documents/programs.html#GEOCOORD) can be
> useful in translating them into names.
>
> Also, see
>
> http://www.dfanning.com/map_tips/tiffoverlay.html
Thank you Paul! David's code was very helpful.
|
|
0
|
|
|
|
Reply
|
s.mcalister8 (2)
|
8/16/2010 8:01:11 PM
|
|
|
4 Replies
388 Views
(page loaded in 0.118 seconds)
Similiar Articles: getting GeoTiff Information - comp.lang.idl-pvwaveOn Aug 16, 1:41=A0pm, Steve McAlister <s.mcalist...@gmail.com> wrote: > Hello all! > > I am aware of the 'geotiffinfo' command in Matlab.http://www.mathworks.de ... ms2gt MODIS reprojection toolkit - comp.lang.idl-pvwavegetting GeoTiff Information - comp.lang.idl-pvwave ms2gt MODIS reprojection toolkit - comp.lang.idl-pvwave Still no luck though, but at least we're getting past stage one. ENVI's codes - comp.lang.idl-pvwave> > Mike > --www.michaelgalloy.com > Research Mathematician > Tech-X Corporation You can also try to export your envi-data as geotiff which can be imported to idl by ... Convert GPS data to (x,y) coordenades - comp.soft-sys.matlab ...Hello experts, How can I convert GPS data into cartesian (x,y) coordenades using matlab? Thanks in advance. Best regards Felipe Cunha ... Latitude and Longitude values for a Particular Location - comp ...Your question is somewhat off topic even there, but your chances of getting help are ... mean the raw data files from a particular GPS ... Retrieve pixel values from GeoTIFF ... Image Coordinates - comp.soft-sys.matlabHow to extract pixel values from a GeoTIFF using an Esri Shapefile ... The problem with IDLanROI is that it can't be used in the native projected meter coordinates that ... Coordinate conversion with proj.4 - comp.soft-sys.matlab ...Retrieve pixel values from GeoTIFF - comp.lang.idl-pvwave ..... file when I have lat,lon arrays. I have the projection set up using MAP_PROJ ... using MAP_PROJ_FORWARD I ... get pixel color - comp.graphics.api.openglRetrieve pixel values from GeoTIFF - comp.lang.idl-pvwave ... I'm trying to get the pixel values (color) from a GeoTIFF file when I have lat,lon arrays. image mosaic - comp.soft-sys.matlabhey thanx for the steps dat u hv given.but I am not getting how to divide an image ... thanx for the steps dat u hv given.but I am ... how to convert matrix file to geotiff ... Color Negative Conversion - comp.graphics.apps.paint-shop-pro ...Retrieve pixel values from GeoTIFF - comp.lang.idl-pvwave ... I'm trying to get the ... Convert from HEX to decimal Latitude and Longitude - comp ... to plot the data of a ... getting GeoTiff Information - comp.lang.idl-pvwave | Computer GroupOn Aug 16, 1:41=A0pm, Steve McAlister <s.mcalist...@gmail.com> wrote: > Hello all! > > I am aware of the 'geotiffinfo' command in Matlab.http://www.mathworks.de ... gdal - Getting geotiff information into variables, not files ...I received an excellent answer to my question of how to get the lat/lon coordinates of the corners of a geotiff file. I used gdalinfo. The lat/lon info comes out into ... 7/23/2012 6:48:14 AM
|
|
|
|
|
|
|
|
|