Creating memory layer with .png image using PyQGIS? 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?Aligning Raster and vector layer using PyQGIS when they do not match?Changing Raster Layer Resampling with PyQGIS?Print Composer Map with Table using PyQGISoverlaying raster layer hides my vector layers in PyQGISAlign raster to fishnet using ArcGIS 10.3“unexpected indent” in the scriptRendering a custom bounding box to an image file using python and QGIS?How to correct a Raster with Vector misalignment in QGIS?Changing display name of layer with PyQGIS?render Raster Layer from pyQgis 3PyQGIS overlaying raster image on vector map correctly?PyQGIS raster image shifted from vector shapefile
My mentor says to set image to Fine instead of RAW — how is this different from JPG?
Noise in Eigenvalues plot
Why not use the yoke to control yaw, as well as pitch and roll?
Is this Half-dragon Quaggoth boss monster balanced?
Inverse square law not accurate for non-point masses?
In musical terms, what properties are varied by the human voice to produce different words / syllables?
NIntegrate on a solution of a matrix ODE
Why are current probes so expensive?
Does the main washing effect of soap come from foam?
Any stored/leased 737s that could substitute for grounded MAXs?
"Destructive power" carried by a B-52?
Twin's vs. Twins'
How could a hydrazine and N2O4 cloud (or it's reactants) show up in weather radar?
Where and when has Thucydides been studied?
Why does BitLocker not use RSA?
Are there any irrational/transcendental numbers for which the distribution of decimal digits is not uniform?
Table formatting with tabularx?
Is it OK to use the testing sample to compare algorithms?
As a dual citizen, my US passport will expire one day after traveling to the US. Will this work?
Is the time—manner—place ordering of adverbials an oversimplification?
Found this skink in my tomato plant bucket. Is he trapped? Or could he leave if he wanted?
What did Turing mean when saying that "machines cannot give rise to surprises" is due to a fallacy?
What is a more techy Technical Writer job title that isn't cutesy or confusing?
Marquee sign letters
Creating memory layer with .png image using PyQGIS?
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?Aligning Raster and vector layer using PyQGIS when they do not match?Changing Raster Layer Resampling with PyQGIS?Print Composer Map with Table using PyQGISoverlaying raster layer hides my vector layers in PyQGISAlign raster to fishnet using ArcGIS 10.3“unexpected indent” in the scriptRendering a custom bounding box to an image file using python and QGIS?How to correct a Raster with Vector misalignment in QGIS?Changing display name of layer with PyQGIS?render Raster Layer from pyQgis 3PyQGIS overlaying raster image on vector map correctly?PyQGIS raster image shifted from vector shapefile
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
In Aligning Raster and vector layer using PyQGIS when they do not match?, someone gave a solution for creating a point memory layer to correctly align a raster image with a vector.
I am wondering how this can be implemented for a .PNG raster image?
I think the method is the same, just the commands would be different?
I have tried:
def addRasterImage1(self):
x = self.lon0
y = self.lat0
self.layers = []
fileName = 'Desktop'
dir = os.path.dirname(fileName) if fileName is not None else "." #path of the saved raster image
formats = ["*.%s" % "PNG"]
file = myfile_list[k_zt] #raster image to load onto vector image
print file
if file:
layer = QgsRasterLayer(file, fileName)
print "layer",layer
if not layer.isValid():
return
# add layer to the registry
QgsMapLayerRegistry.instance().addMapLayer(layer)
# # set extent to the extent of layer
self.canvas.setExtent(layer.extent())
self.layers.insert(0, QgsMapCanvasLayer(layer))
print "layers number:",len(self.layers)
self.canvas.setLayerSet(self.layers)
self.canvas.refresh()
self.MyWorldLayer(ext = False)
Which produces a shifted raster png file on the vector map (the vector map is self.MyWorldLayer()
).
I have then also tried changing the raster layer by resampling, similar to the code Changing Raster Layer Resampling with PyQGIS?.
raster coordinate-system pyqgis vector
add a comment |
In Aligning Raster and vector layer using PyQGIS when they do not match?, someone gave a solution for creating a point memory layer to correctly align a raster image with a vector.
I am wondering how this can be implemented for a .PNG raster image?
I think the method is the same, just the commands would be different?
I have tried:
def addRasterImage1(self):
x = self.lon0
y = self.lat0
self.layers = []
fileName = 'Desktop'
dir = os.path.dirname(fileName) if fileName is not None else "." #path of the saved raster image
formats = ["*.%s" % "PNG"]
file = myfile_list[k_zt] #raster image to load onto vector image
print file
if file:
layer = QgsRasterLayer(file, fileName)
print "layer",layer
if not layer.isValid():
return
# add layer to the registry
QgsMapLayerRegistry.instance().addMapLayer(layer)
# # set extent to the extent of layer
self.canvas.setExtent(layer.extent())
self.layers.insert(0, QgsMapCanvasLayer(layer))
print "layers number:",len(self.layers)
self.canvas.setLayerSet(self.layers)
self.canvas.refresh()
self.MyWorldLayer(ext = False)
Which produces a shifted raster png file on the vector map (the vector map is self.MyWorldLayer()
).
I have then also tried changing the raster layer by resampling, similar to the code Changing Raster Layer Resampling with PyQGIS?.
raster coordinate-system pyqgis vector
add a comment |
In Aligning Raster and vector layer using PyQGIS when they do not match?, someone gave a solution for creating a point memory layer to correctly align a raster image with a vector.
I am wondering how this can be implemented for a .PNG raster image?
I think the method is the same, just the commands would be different?
I have tried:
def addRasterImage1(self):
x = self.lon0
y = self.lat0
self.layers = []
fileName = 'Desktop'
dir = os.path.dirname(fileName) if fileName is not None else "." #path of the saved raster image
formats = ["*.%s" % "PNG"]
file = myfile_list[k_zt] #raster image to load onto vector image
print file
if file:
layer = QgsRasterLayer(file, fileName)
print "layer",layer
if not layer.isValid():
return
# add layer to the registry
QgsMapLayerRegistry.instance().addMapLayer(layer)
# # set extent to the extent of layer
self.canvas.setExtent(layer.extent())
self.layers.insert(0, QgsMapCanvasLayer(layer))
print "layers number:",len(self.layers)
self.canvas.setLayerSet(self.layers)
self.canvas.refresh()
self.MyWorldLayer(ext = False)
Which produces a shifted raster png file on the vector map (the vector map is self.MyWorldLayer()
).
I have then also tried changing the raster layer by resampling, similar to the code Changing Raster Layer Resampling with PyQGIS?.
raster coordinate-system pyqgis vector
In Aligning Raster and vector layer using PyQGIS when they do not match?, someone gave a solution for creating a point memory layer to correctly align a raster image with a vector.
I am wondering how this can be implemented for a .PNG raster image?
I think the method is the same, just the commands would be different?
I have tried:
def addRasterImage1(self):
x = self.lon0
y = self.lat0
self.layers = []
fileName = 'Desktop'
dir = os.path.dirname(fileName) if fileName is not None else "." #path of the saved raster image
formats = ["*.%s" % "PNG"]
file = myfile_list[k_zt] #raster image to load onto vector image
print file
if file:
layer = QgsRasterLayer(file, fileName)
print "layer",layer
if not layer.isValid():
return
# add layer to the registry
QgsMapLayerRegistry.instance().addMapLayer(layer)
# # set extent to the extent of layer
self.canvas.setExtent(layer.extent())
self.layers.insert(0, QgsMapCanvasLayer(layer))
print "layers number:",len(self.layers)
self.canvas.setLayerSet(self.layers)
self.canvas.refresh()
self.MyWorldLayer(ext = False)
Which produces a shifted raster png file on the vector map (the vector map is self.MyWorldLayer()
).
I have then also tried changing the raster layer by resampling, similar to the code Changing Raster Layer Resampling with PyQGIS?.
raster coordinate-system pyqgis vector
raster coordinate-system pyqgis vector
edited Apr 15 at 13:11
user137875
asked Apr 12 at 18:06
user137875user137875
314
314
add a comment |
add a comment |
0
active
oldest
votes
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318642%2fcreating-memory-layer-with-png-image-using-pyqgis%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318642%2fcreating-memory-layer-with-png-image-using-pyqgis%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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