<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im"><br>
</div>Yes, you are right. Any class inheriting from QgsRasterInterface may<br>
be plugged into the QgsRasterPipe but all interfaces will be in a<br>
single line, no forks.<br></blockquote><div><br></div><div>Ok, Radim, I'm sorry if I insist on this, it's just to understand it correctly.</div><div>To add a QgsRasterInterface in a QgsRasterPipe I would use QgsRasterPipe.insert(idx,QgsRasterInterface), but what is the QgsRasterInterface.setInput(QgsRasterInterface ) for? </div>
<div>If I set a QgsRasterInterface, which will have its own input, as the input for another QgsRasterInterface, I'm creating a chain of QgsRasterInterfaces...</div><div>Help me to understand it...</div><div><br></div>
<div>giovanni</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
BTW, you should always test if QgsRasterPipe::insert() was successful,<br>
because if connection of interfaces fails, the interface is not<br>
inserted. Only compatible interfaces may be connected. For example, it<br>
is not possible to connect QgsSingleBandGrayRenderer to an interface<br>
of ARGB32 type, because it needs numerical data as input.<br>
QgsRasterResampleFilter only works with ARGB32 as input etc.<br>
<span class="HOEnZb"><font color="#888888"><br>
Radim<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
> [1]<br>
> <a href="https://github.com/qgis/Quantum-GIS/blob/master/src/core/raster/qgsrasterinterface.h#L108" target="_blank">https://github.com/qgis/Quantum-GIS/blob/master/src/core/raster/qgsrasterinterface.h#L108</a><br>
><br>
>><br>
>><br>
>> Radim<br>
>><br>
>><br>
>> > giovanni<br>
>> ><br>
>> ><br>
>> > 2012/12/11 Radim Blazek <<a href="mailto:radim.blazek@gmail.com">radim.blazek@gmail.com</a>><br>
>> >><br>
>> >> On Tue, Dec 11, 2012 at 10:52 AM, G. Allegri <<a href="mailto:giohappy@gmail.com">giohappy@gmail.com</a>><br>
>> >> wrote:<br>
>> >> > Until now I've mostly created vector layers on QGIS, delegating<br>
>> >> > raster<br>
>> >> > creation to custom GDAL utilities.<br>
>> >> > Recently I looked into QgsGdalProvider and I saw that it exposes the<br>
>> >> > QgsRasterDataProvider::Create capability.<br>
>> >> > I wonder if it's possible to create a brand new raster (geotiff or<br>
>> >> > what<br>
>> >> > else) using this provider and, in case, what is the right workflow to<br>
>> >> > do<br>
>> >> > that. I haven't found examples of doing it...<br>
>> >><br>
>> >> Yes it is possible. You can use a provider directly<br>
>> >><br>
>> >> QgsRasterDataProvider * provider = ( QgsRasterDataProvider*<br>
>> >> )QgsProviderRegistry::instance()->provider( "gdal", dataSource );<br>
>> >> provider->write( data, band, width, height, xOffset, yOffset )<br>
>> >><br>
>> >> if you your algorithm implemented as QgsRasterInterface you can use<br>
>> >> higher level QgsRasterFileWriter which will do the work splitting<br>
>> >> raster into parts<br>
>> >><br>
>> >> QgsRasterPipe* pipe = new QgsRasterPipe();<br>
>> >> pipe->set( inputProvider->clone() );<br>
>> >> pipe->insert( 1, yourInterface );<br>
>> >> QgsRasterFileWriter fileWriter( fileName );<br>
>> >> fileWriter.writeRaster( pipe, width, height, extent, crs );<br>
>> >><br>
>> >> Radim<br>
>> >><br>
>> >><br>
>> >> > giovanni<br>
>> >> ><br>
>> >> > _______________________________________________<br>
>> >> > Qgis-developer mailing list<br>
>> >> > <a href="mailto:Qgis-developer@lists.osgeo.org">Qgis-developer@lists.osgeo.org</a><br>
>> >> > <a href="http://lists.osgeo.org/mailman/listinfo/qgis-developer" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>
>> >> ><br>
>> ><br>
>> ><br>
><br>
><br>
</div></div></blockquote></div><br>