I have an .ecw that is about 1.35 GB (53946 x 39606) which is just too
big to handle. Is there any FREE way to clip this in mapinfo (or outside
of mapinfo)
Cheers,
Rob
> .
>
>
Regards,
John Elliot
Anzeco Pty. Limited
mineral exploration consulting services
Bathurst, NSW 2795, AUSTRALIA
.
Rob
There is a free and updated version of the ER Mapper Image Compressor – but you will need to pay for image sizes larger than 50Mb (there is a sliding scale for licensing). Apart from mosaicking and compression, I believe it will also allow image trimming. You need to check out the documentation page (I am having a look to see what its capabilities are, right now).
I have always found Irfanview to be insufficient for ECW files. It can’t handle anything large.
IL Thomas
GeoSciSoft - Perth,
Australia
Rob
The Image Compressor v7.2 has 4 docs (PDF) and the summary one for 2007 does indicate that it has a clip regions function, which is wizard-driven. And the tutorial (which doesn’t include the Clip function) seems clearly-written for the other functions including the mosaicking.
Have you downloaded a trial version of ER Mapper itself, or of this utility? What are the help files - .HLP format, rather than .CHM?
Ian Thomas
GeoSciSoft - Perth,
Australia
Rob- can you give the URL for the Photoshop plugin, please? There is a good chance that it also works with Canvas for Windows (now owned by ACD Systems).
Thanks
IL Thomas
GeoSciSoft - Perth,
Australia
From: mapi...@googlegroups.com [mailto:mapi...@googlegroups.com]
On Behalf Of Rob Schneider -
Aurchem Exploration
Sent: Wednesday, May 02, 2007 9:13
AM
To: mapi...@googlegroups.com
Subject: [MI-L] Re: Clipping ECW
Success. The ermapper forum post got me half way there (http://forums.ermapper.com/viewtopic.php?t=402) and I pushed enough buttons to complete the task. It looks to be the same resolution as the original and supposedly is also georeferenced (but that wasn't a need).
FW Tools can read/write/clip/reproject ECW and numerous other formats:
http://fwtools.maptools.org/
Because it is Open Source, it is not restricted to the 500MB ER Mapper
ECW encoder license. However it is command line driven, which is to
say it has a little steeper learning curve than some people are
willing to climb.
--
Richard Greenwood
richard....@gmail.com
www.greenwoodmap.com
Do you know of any resource for finding examples of command line uses of
FWTools for such tasks as clipping ECW files?
Cheers
David Llewellyn
-----Original Message-----
From: mapi...@googlegroups.com [mailto:mapi...@googlegroups.com] On
Behalf Of Richard Greenwood
Sent: Wednesday, 2 May 2007 10:43 AM
To: mapi...@googlegroups.com
Subject: [MI-L] Re: Clipping ECW
If this email has been received in error, please delete all copies and inform the National Native Title Tribunal by return email or telephone 1800 640 501. The Tribunal does not warrant that its email is virus free. All emails sent to the Tribunal are filtered for viruses and inappropriate content. Thus your email may not reach the person to whom it is addressed. Seek confirmation of receipt of your email if you consider the email important.
Thanks – I located it there myself. I should have remembered (in fact, I got there in a round-about way from a plugins website).
Most Open Source projects have a mailing list, gdal-dev is the one I'm
on, but there may be one more specific to FW Tools. The application
that you want to use is gdal_translate. The basic syntax is;
gdal_translate source.ecw destination
which will convert your ecw to a geotiff, because geotfiff is the
default output type. To generate an ecw you'd use:
gdal_translate -of ECW source.ecw destination.ecw
The -of flag sets the output format. But this is limited to 500MB. To
get past that you'd use:
gdal_translate -of ECW --config ECW_LARGE_OK YES
You can adjust the compression level with -co target=xx I use (xx=87)
You can embed projection info with something like:
-co "PROJ=TMWYO4FT" -co "DATUM=NAD83" -co "UNITS=FEET"
or you can use the free, standalone header editor from ER Mapper. You
can crop the image in two ways:
-srcwin xoff yoff xsize ysize
or:
-projwin ulx uly lrx lry
srcwin allows you to define the crop window in pixels, relative to the
source image. projwin allows you to define the clip region in
real-world coordinates.
Rich