GeoTIFF / Geotools / Mollweide / customer projection not recognized The 2019 Stack Overflow Developer Survey Results Are InError running geotools tutorial for CSV2SHP?GeoTools: SimpleFeatureCollection to KML error CoordinateReferenceSystemAxis order in user ShapefileGeotools produces different GEOGCS value for ESRI WKTUnprojected GeoTIFFsDifference in GeoTiffs QGIS Export vs GDAL WarpReading GeoTIFF with geotoolsInaccurate results when converting coordinates to EPSG:53004 with geotools andIssues reprojecting Hydro 1k to WGS84Geotiff Mollweide and geotools

What did it mean to "align" a radio?

Which Sci-Fi work first showed weapon of galactic-scale mass destruction?

Why is the maximum length of OpenWrt’s root password 8 characters?

The difference between dialogue marks

Output the Arecibo Message

Right tool to dig six foot holes?

Can someone be penalized for an "unlawful" act if no penalty is specified?

Origin of "cooter" meaning "vagina"

Is three citations per paragraph excessive for undergraduate research paper?

Pokemon Turn Based battle (Python)

Should I use my personal e-mail address, or my workplace one, when registering to external websites for work purposes?

A poker game description that does not feel gimmicky

"as much details as you can remember"

What tool would a Roman-age civilization have for the breaking of silver and other metals into dust?

Where to refill my bottle in India?

What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?

Why isn't the circumferential light around the M87 black hole's event horizon symmetric?

Why do UK politicians seemingly ignore opinion polls on Brexit?

Does a dangling wire really electrocute me if I'm standing in water?

Is an up-to-date browser secure on an out-of-date OS?

Why was M87 targetted for the Event Horizon Telescope instead of Sagittarius A*?

Is there any way to tell whether the shot is going to hit you or not?

Is there a symbol for a right arrow with a square in the middle?

Resizing object distorts it (Illustrator CC 2018)



GeoTIFF / Geotools / Mollweide / customer projection not recognized



The 2019 Stack Overflow Developer Survey Results Are InError running geotools tutorial for CSV2SHP?GeoTools: SimpleFeatureCollection to KML error CoordinateReferenceSystemAxis order in user ShapefileGeotools produces different GEOGCS value for ESRI WKTUnprojected GeoTIFFsDifference in GeoTiffs QGIS Export vs GDAL WarpReading GeoTIFF with geotoolsInaccurate results when converting coordinates to EPSG:53004 with geotools andIssues reprojecting Hydro 1k to WGS84Geotiff Mollweide and geotools



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















Although I got a hint from Ian, I still have a problem to read a GeoTIFF in Geotools.
I ask this as a new question so that I can put all info.



The GeoTIFF is from
http://cidportal.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_POP_GPW4_GLOBE_R2015A/GHS_POP_GPW42015_GLOBE_R2015A_54009_1k/V1-0/



gdalinfo GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif
Driver: GTiff/GeoTIFF
Files: GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif
GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif.ovr
GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif.aux.xml
Size is 35497, 15236
Coordinate System is:
PROJCS["World_Mollweide",
GEOGCS["GCS_WGS_1984",
DATUM["D_WGS_1984",
SPHEROID["WGS_1984",6378137.0,298.257223563]],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.017453292519943295]],
PROJECTION["Mollweide"],
PARAMETER["False_Easting",0.0],
PARAMETER["False_Northing",0.0],
PARAMETER["Central_Meridian",0.0],
UNIT["Meter",1.0]]


As it is a Mollweide projection, I add the EPGS definition.



epsg.properties file:



54009=PROJCS["World_Mollweide",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mollweide"],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]


 URL epsg = getClass().getClassLoader().getResource("epsg.properties");

Hints hints = new Hints(Hints.CRS_AUTHORITY_FACTORY, PropertyAuthorityFactory.class);
ReferencingFactoryContainer referencingFactoryContainer = ReferencingFactoryContainer.instance(hints);
PropertyAuthorityFactory factory;
factory = new PropertyAuthorityFactory(referencingFactoryContainer, Citations.fromName("EPSG"), epsg);
ReferencingFactoryFinder.addAuthorityFactory(factory);
ReferencingFactoryFinder.scanForPlugins();



This prints correctly:



System.out.println(CRS.decode("EPSG:54009"));


PROJCS["World_Mollweide", 
GEOGCS["GCS_WGS_1984",
DATUM["D_WGS_1984",
SPHEROID["WGS_1984", 6378137.0, 298.257223563]],
PRIMEM["Greenwich", 0.0],
UNIT["degree", 0.017453292519943295],
AXIS["Longitude", EAST],
AXIS["Latitude", NORTH]],
PROJECTION["Mollweide"],
PARAMETER["semi_minor", 6378137.0],
PARAMETER["false_easting", 0.0],
PARAMETER["false_northing", 0.0],
PARAMETER["central_meridian", 0.0],
UNIT["m", 1.0],
AXIS["x", EAST],
AXIS["y", NORTH],
AUTHORITY["EPSG","54009"]]


But



String fileName = "/home/XXX/GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif";

new GeoTiffReader(new FileInputStream(new File(fileName)));


still throws an error



GeoTiffMetadata2CRSAdapter::createCoordinateSystem:Only Geographic & Projected Systems are supported. 
at org.geotools.coverage.grid.io.imageio.geotiff.GeoTiffMetadata2CRSAdapter.createCoordinateSystem(GeoTiffMetadata2CRSAdapter.java:186)
at org.geotools.gce.geotiff.GeoTiffReader.getHRInfo(GeoTiffReader.java:329)
... 4 more



geotools version 21.0
maven



<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-main</artifactId>
<version>$geotools.version</version>
</dependency>

<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-referencing</artifactId>
<version>$geotools.version</version>
</dependency>

<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-epsg-wkt</artifactId>
<version>$geotools.version</version>
</dependency>

<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-geotiff</artifactId>
<version>$geotools.version</version>
</dependency>













share|improve this question






























    0















    Although I got a hint from Ian, I still have a problem to read a GeoTIFF in Geotools.
    I ask this as a new question so that I can put all info.



    The GeoTIFF is from
    http://cidportal.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_POP_GPW4_GLOBE_R2015A/GHS_POP_GPW42015_GLOBE_R2015A_54009_1k/V1-0/



    gdalinfo GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif
    Driver: GTiff/GeoTIFF
    Files: GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif
    GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif.ovr
    GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif.aux.xml
    Size is 35497, 15236
    Coordinate System is:
    PROJCS["World_Mollweide",
    GEOGCS["GCS_WGS_1984",
    DATUM["D_WGS_1984",
    SPHEROID["WGS_1984",6378137.0,298.257223563]],
    PRIMEM["Greenwich",0.0],
    UNIT["Degree",0.017453292519943295]],
    PROJECTION["Mollweide"],
    PARAMETER["False_Easting",0.0],
    PARAMETER["False_Northing",0.0],
    PARAMETER["Central_Meridian",0.0],
    UNIT["Meter",1.0]]


    As it is a Mollweide projection, I add the EPGS definition.



    epsg.properties file:



    54009=PROJCS["World_Mollweide",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mollweide"],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]


     URL epsg = getClass().getClassLoader().getResource("epsg.properties");

    Hints hints = new Hints(Hints.CRS_AUTHORITY_FACTORY, PropertyAuthorityFactory.class);
    ReferencingFactoryContainer referencingFactoryContainer = ReferencingFactoryContainer.instance(hints);
    PropertyAuthorityFactory factory;
    factory = new PropertyAuthorityFactory(referencingFactoryContainer, Citations.fromName("EPSG"), epsg);
    ReferencingFactoryFinder.addAuthorityFactory(factory);
    ReferencingFactoryFinder.scanForPlugins();



    This prints correctly:



    System.out.println(CRS.decode("EPSG:54009"));


    PROJCS["World_Mollweide", 
    GEOGCS["GCS_WGS_1984",
    DATUM["D_WGS_1984",
    SPHEROID["WGS_1984", 6378137.0, 298.257223563]],
    PRIMEM["Greenwich", 0.0],
    UNIT["degree", 0.017453292519943295],
    AXIS["Longitude", EAST],
    AXIS["Latitude", NORTH]],
    PROJECTION["Mollweide"],
    PARAMETER["semi_minor", 6378137.0],
    PARAMETER["false_easting", 0.0],
    PARAMETER["false_northing", 0.0],
    PARAMETER["central_meridian", 0.0],
    UNIT["m", 1.0],
    AXIS["x", EAST],
    AXIS["y", NORTH],
    AUTHORITY["EPSG","54009"]]


    But



    String fileName = "/home/XXX/GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif";

    new GeoTiffReader(new FileInputStream(new File(fileName)));


    still throws an error



    GeoTiffMetadata2CRSAdapter::createCoordinateSystem:Only Geographic & Projected Systems are supported. 
    at org.geotools.coverage.grid.io.imageio.geotiff.GeoTiffMetadata2CRSAdapter.createCoordinateSystem(GeoTiffMetadata2CRSAdapter.java:186)
    at org.geotools.gce.geotiff.GeoTiffReader.getHRInfo(GeoTiffReader.java:329)
    ... 4 more



    geotools version 21.0
    maven



    <dependency>
    <groupId>org.geotools</groupId>
    <artifactId>gt-main</artifactId>
    <version>$geotools.version</version>
    </dependency>

    <dependency>
    <groupId>org.geotools</groupId>
    <artifactId>gt-referencing</artifactId>
    <version>$geotools.version</version>
    </dependency>

    <dependency>
    <groupId>org.geotools</groupId>
    <artifactId>gt-epsg-wkt</artifactId>
    <version>$geotools.version</version>
    </dependency>

    <dependency>
    <groupId>org.geotools</groupId>
    <artifactId>gt-geotiff</artifactId>
    <version>$geotools.version</version>
    </dependency>













    share|improve this question


























      0












      0








      0








      Although I got a hint from Ian, I still have a problem to read a GeoTIFF in Geotools.
      I ask this as a new question so that I can put all info.



      The GeoTIFF is from
      http://cidportal.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_POP_GPW4_GLOBE_R2015A/GHS_POP_GPW42015_GLOBE_R2015A_54009_1k/V1-0/



      gdalinfo GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif
      Driver: GTiff/GeoTIFF
      Files: GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif
      GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif.ovr
      GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif.aux.xml
      Size is 35497, 15236
      Coordinate System is:
      PROJCS["World_Mollweide",
      GEOGCS["GCS_WGS_1984",
      DATUM["D_WGS_1984",
      SPHEROID["WGS_1984",6378137.0,298.257223563]],
      PRIMEM["Greenwich",0.0],
      UNIT["Degree",0.017453292519943295]],
      PROJECTION["Mollweide"],
      PARAMETER["False_Easting",0.0],
      PARAMETER["False_Northing",0.0],
      PARAMETER["Central_Meridian",0.0],
      UNIT["Meter",1.0]]


      As it is a Mollweide projection, I add the EPGS definition.



      epsg.properties file:



      54009=PROJCS["World_Mollweide",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mollweide"],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]


       URL epsg = getClass().getClassLoader().getResource("epsg.properties");

      Hints hints = new Hints(Hints.CRS_AUTHORITY_FACTORY, PropertyAuthorityFactory.class);
      ReferencingFactoryContainer referencingFactoryContainer = ReferencingFactoryContainer.instance(hints);
      PropertyAuthorityFactory factory;
      factory = new PropertyAuthorityFactory(referencingFactoryContainer, Citations.fromName("EPSG"), epsg);
      ReferencingFactoryFinder.addAuthorityFactory(factory);
      ReferencingFactoryFinder.scanForPlugins();



      This prints correctly:



      System.out.println(CRS.decode("EPSG:54009"));


      PROJCS["World_Mollweide", 
      GEOGCS["GCS_WGS_1984",
      DATUM["D_WGS_1984",
      SPHEROID["WGS_1984", 6378137.0, 298.257223563]],
      PRIMEM["Greenwich", 0.0],
      UNIT["degree", 0.017453292519943295],
      AXIS["Longitude", EAST],
      AXIS["Latitude", NORTH]],
      PROJECTION["Mollweide"],
      PARAMETER["semi_minor", 6378137.0],
      PARAMETER["false_easting", 0.0],
      PARAMETER["false_northing", 0.0],
      PARAMETER["central_meridian", 0.0],
      UNIT["m", 1.0],
      AXIS["x", EAST],
      AXIS["y", NORTH],
      AUTHORITY["EPSG","54009"]]


      But



      String fileName = "/home/XXX/GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif";

      new GeoTiffReader(new FileInputStream(new File(fileName)));


      still throws an error



      GeoTiffMetadata2CRSAdapter::createCoordinateSystem:Only Geographic & Projected Systems are supported. 
      at org.geotools.coverage.grid.io.imageio.geotiff.GeoTiffMetadata2CRSAdapter.createCoordinateSystem(GeoTiffMetadata2CRSAdapter.java:186)
      at org.geotools.gce.geotiff.GeoTiffReader.getHRInfo(GeoTiffReader.java:329)
      ... 4 more



      geotools version 21.0
      maven



      <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-main</artifactId>
      <version>$geotools.version</version>
      </dependency>

      <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-referencing</artifactId>
      <version>$geotools.version</version>
      </dependency>

      <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-epsg-wkt</artifactId>
      <version>$geotools.version</version>
      </dependency>

      <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-geotiff</artifactId>
      <version>$geotools.version</version>
      </dependency>













      share|improve this question
















      Although I got a hint from Ian, I still have a problem to read a GeoTIFF in Geotools.
      I ask this as a new question so that I can put all info.



      The GeoTIFF is from
      http://cidportal.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_POP_GPW4_GLOBE_R2015A/GHS_POP_GPW42015_GLOBE_R2015A_54009_1k/V1-0/



      gdalinfo GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif
      Driver: GTiff/GeoTIFF
      Files: GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif
      GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif.ovr
      GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif.aux.xml
      Size is 35497, 15236
      Coordinate System is:
      PROJCS["World_Mollweide",
      GEOGCS["GCS_WGS_1984",
      DATUM["D_WGS_1984",
      SPHEROID["WGS_1984",6378137.0,298.257223563]],
      PRIMEM["Greenwich",0.0],
      UNIT["Degree",0.017453292519943295]],
      PROJECTION["Mollweide"],
      PARAMETER["False_Easting",0.0],
      PARAMETER["False_Northing",0.0],
      PARAMETER["Central_Meridian",0.0],
      UNIT["Meter",1.0]]


      As it is a Mollweide projection, I add the EPGS definition.



      epsg.properties file:



      54009=PROJCS["World_Mollweide",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mollweide"],PARAMETER["Central_Meridian",0.0],UNIT["Meter",1.0]]


       URL epsg = getClass().getClassLoader().getResource("epsg.properties");

      Hints hints = new Hints(Hints.CRS_AUTHORITY_FACTORY, PropertyAuthorityFactory.class);
      ReferencingFactoryContainer referencingFactoryContainer = ReferencingFactoryContainer.instance(hints);
      PropertyAuthorityFactory factory;
      factory = new PropertyAuthorityFactory(referencingFactoryContainer, Citations.fromName("EPSG"), epsg);
      ReferencingFactoryFinder.addAuthorityFactory(factory);
      ReferencingFactoryFinder.scanForPlugins();



      This prints correctly:



      System.out.println(CRS.decode("EPSG:54009"));


      PROJCS["World_Mollweide", 
      GEOGCS["GCS_WGS_1984",
      DATUM["D_WGS_1984",
      SPHEROID["WGS_1984", 6378137.0, 298.257223563]],
      PRIMEM["Greenwich", 0.0],
      UNIT["degree", 0.017453292519943295],
      AXIS["Longitude", EAST],
      AXIS["Latitude", NORTH]],
      PROJECTION["Mollweide"],
      PARAMETER["semi_minor", 6378137.0],
      PARAMETER["false_easting", 0.0],
      PARAMETER["false_northing", 0.0],
      PARAMETER["central_meridian", 0.0],
      UNIT["m", 1.0],
      AXIS["x", EAST],
      AXIS["y", NORTH],
      AUTHORITY["EPSG","54009"]]


      But



      String fileName = "/home/XXX/GHS_POP_GPW42015_GLOBE_R2015A_54009_1k_v1_0.tif";

      new GeoTiffReader(new FileInputStream(new File(fileName)));


      still throws an error



      GeoTiffMetadata2CRSAdapter::createCoordinateSystem:Only Geographic & Projected Systems are supported. 
      at org.geotools.coverage.grid.io.imageio.geotiff.GeoTiffMetadata2CRSAdapter.createCoordinateSystem(GeoTiffMetadata2CRSAdapter.java:186)
      at org.geotools.gce.geotiff.GeoTiffReader.getHRInfo(GeoTiffReader.java:329)
      ... 4 more



      geotools version 21.0
      maven



      <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-main</artifactId>
      <version>$geotools.version</version>
      </dependency>

      <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-referencing</artifactId>
      <version>$geotools.version</version>
      </dependency>

      <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-epsg-wkt</artifactId>
      <version>$geotools.version</version>
      </dependency>

      <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-geotiff</artifactId>
      <version>$geotools.version</version>
      </dependency>










      geotiff-tiff geotools






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 5 at 13:59









      Vince

      14.8k32849




      14.8k32849










      asked Mar 5 at 12:05









      PeterPeter

      113




      113




















          1 Answer
          1






          active

          oldest

          votes


















          0














          Solved !



          1) I added a .prj file with the EPGS definition. It is in the same folder as the tiff file and has the same name.



          2) I changed



          new GeoTiffReader(new FileInputStream(new File(fileName)));


          to



          new GeoTiffReader(new File(fileName));


          so that the .prj file is picked up.






          share|improve this answer























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "79"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f314421%2fgeotiff-geotools-mollweide-customer-projection-not-recognized%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Solved !



            1) I added a .prj file with the EPGS definition. It is in the same folder as the tiff file and has the same name.



            2) I changed



            new GeoTiffReader(new FileInputStream(new File(fileName)));


            to



            new GeoTiffReader(new File(fileName));


            so that the .prj file is picked up.






            share|improve this answer



























              0














              Solved !



              1) I added a .prj file with the EPGS definition. It is in the same folder as the tiff file and has the same name.



              2) I changed



              new GeoTiffReader(new FileInputStream(new File(fileName)));


              to



              new GeoTiffReader(new File(fileName));


              so that the .prj file is picked up.






              share|improve this answer

























                0












                0








                0







                Solved !



                1) I added a .prj file with the EPGS definition. It is in the same folder as the tiff file and has the same name.



                2) I changed



                new GeoTiffReader(new FileInputStream(new File(fileName)));


                to



                new GeoTiffReader(new File(fileName));


                so that the .prj file is picked up.






                share|improve this answer













                Solved !



                1) I added a .prj file with the EPGS definition. It is in the same folder as the tiff file and has the same name.



                2) I changed



                new GeoTiffReader(new FileInputStream(new File(fileName)));


                to



                new GeoTiffReader(new File(fileName));


                so that the .prj file is picked up.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 6 at 13:01









                PeterPeter

                113




                113



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f314421%2fgeotiff-geotools-mollweide-customer-projection-not-recognized%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

                    QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

                    PDF-ში გადმოწერა სანავიგაციო მენიუproject page