Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[udig-devel] [jira] Created: (UDIG-1675) ImageIO plugin fails to import *.img files

ImageIO plugin fails to import *.img files
------------------------------------------

                 Key: UDIG-1675
                 URL: http://jira.codehaus.org/browse/UDIG-1675
             Project: uDIG
          Issue Type: Bug
          Components: catalog, metadata and search
    Affects Versions: UDIG 1.2.RC2
         Environment: N/A
            Reporter: Kenneth Gulbrandsøy


h4. Symptom
The *net.refractions.udig.catalog.imageio* plugin fails to import ERDAS IMAGINE (*.img) files.

h4. Test
Import --> Data --> Files --> Select any valid *.img file --> Select Finish --> Nothing happens

h4. Cause
The following test fails in the static constructor of {color:blue}net.refractions.udig.catalog.imageio.ImageServiceExtension{color}

{code:title=ImageServiceExtension.java|borderStyle=solid}
static{

    // the other tests....

    // HFA
    driverCode="HFA";    
    if(GDALUtilities.isDriverAvailable(driverCode))
    {
        factories.put(driverCode, new DTEDFormatFactory());
        fileExtensions.put(driverCode,Arrays.asList("dt0","dt1", "dt2"));
    }
		
}
{code} 

which is wrong. It should be {{Arrays.asList("img")}} , not {{Arrays.asList("dt0","dt1", "dt2")}}. This is probably an uncompleted cut-n-paste operation from the DTED test to the HFA test (the former test is currently equal to the latter). After correcting this error, the ImageIO plugin imports (*.img) files without any problems.   


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




Back to the top