[GIS] Georeferenced image not displaying

georeferencingqgisraster

I used Georeferencer to georeference a jpg map and saved as tif. I used Thin Plate Spline, Cubic Spline, and LZW as settings. The tif shows fine in OSX Preview. gdalinfo reports

Driver: GTiff/GeoTIFF
Files: LosAngelesCentral1917.4326.QMS.tif
       LosAngelesCentral1917.4326.QMS.tif.aux.xml
Size is 1301, 1781
Coordinate System is:
GEOGCS["WGS 84",
    DATUM["WGS_1984",
        SPHEROID["WGS 84",6378137,298.257223563,
            AUTHORITY["EPSG","7030"]],
        AUTHORITY["EPSG","6326"]],
    PRIMEM["Greenwich",0],
    UNIT["degree",0.0174532925199433],
    AUTHORITY["EPSG","4326"]]
Origin = (-13168892.384256949648261,4041852.682744845282286)
Pixel Size = (8.488964512573681,-8.488964512573681)
Metadata:
  AREA_OR_POINT=Area
Image Structure Metadata:
  COMPRESSION=LZW
  INTERLEAVE=PIXEL
Corner Coordinates:
Upper Left  (-13168892.384, 4041852.683) (Invalid angle,Invalid angle)
Lower Left  (-13168892.384, 4026733.837) (Invalid angle,Invalid angle)
Upper Right (-13157848.241, 4041852.683) (Invalid angle,Invalid angle)
Lower Right (-13157848.241, 4026733.837) (Invalid angle,Invalid angle)
Center      (-13163370.313, 4034293.260) (Invalid angle,Invalid angle)
Band 1 Block=1301x2 Type=Byte, ColorInterp=Red
  NoData Value=0
Band 2 Block=1301x2 Type=Byte, ColorInterp=Green
  NoData Value=0
Band 3 Block=1301x2 Type=Byte, ColorInterp=Blue
  NoData Value=0

The QMS in the name refers to QuickMapServices which I was using as a reference instead of OpenLayers. I was using the Mapquest OSM map. I can look at properties in QGIS. I can Zoom To Layer and nothing happens—meaning if I shift the map away from where it should appear, the QGIS map doesn't move.

Where should I look for fixes?

QGIS 2.12.1 Lyon OSX.

Best Answer

You have set the raster CRS to WGS84, but used coordinates from a tile service which might use EPSG:3857.

So you have to set the CRS of the raster to the same CRS to get it working.

Raster -> Projections -> Assign projection should do the trick.

BTW the corner coordinates are still in EPSG:3857, around the center of Los Angeles:

enter image description here