<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Ciao Totò,<br>
    <br>
    <div class="moz-cite-prefix">On 03/01/2016 16:20, Totò Fiandaca
      wrote:<br>
    </div>
    <blockquote
cite="mid:CADk2tEToPsDtRo+jKrzbw6SjvYg6=0dh_WrieQpYnPB8LtXhuQ@mail.gmail.com"
      type="cite">
      <div dir="ltr">
        <div class="gmail_default"
          style="font-family:garamond,serif;font-size:large">da ricerche
          sul web scopro che il calcolatore di qgis non permette l'uso
          di istruzioni condizionali (tipo IF, con, ecc..).</div>
      </div>
    </blockquote>
    non è così immediato e documentato, ma invece si può.
    <blockquote
cite="mid:CADk2tEToPsDtRo+jKrzbw6SjvYg6=0dh_WrieQpYnPB8LtXhuQ@mail.gmail.com"
      type="cite">
      <div dir="ltr">con([slope]<=10,10, con([slope]<=30,
        -9.00/20.00*[slope]+14.5,1))</div>
    </blockquote>
    In una mia vita precedente, quando usavo anche altri software, ho
    pubblicato questo semplice articolo sull'utilizzo di algoritmi di
    map algebra per il calcolo di mappe di distribuzione di
    granulometria di sedimenti: <a class="moz-txt-link-freetext"
      href="http://onlinelibrary.wiley.com/doi/10.1002/esp.1464/abstract">http://onlinelibrary.wiley.com/doi/10.1002/esp.1464/abstract</a><br>
    Siccome l'accesso al paper non è libero, qui si può trovare una
    copia ad accesso aperto: <a class="moz-txt-link-freetext"
      href="https://dx.doi.org/10.6084/m9.figshare.2060061.v1">https://dx.doi.org/10.6084/m9.figshare.2060061.v1</a><br>
    <br>
    Nella tabella 2 a pag. 17 trovi l'algoritmo per creare un raster
    riclassificato da 3 raster diversi (sand, silt, clay) usando
    ArcView:<br>
    <br>
    con([sand] >= 75, 1,<br>
    [silt] >= 75, 4,<br>
    [clay] >= 75, 7,<br>
    [clay] < 20 & [sand] < 75 & [sand] >= [silt] &
    [silt] >= [clay], 2,<br>
    [clay] < 20 & [silt] < 75 & [silt] >= [sand] &
    [clay] < [sand], 3,<br>
    [sand] < 20 & [silt] < 75 & [silt] >= [clay] &
    [clay] > [sand], 5,<br>
    [sand] < 20 & [clay] < 75 & [clay] > [silt] &
    [silt] > [sand], 6,<br>
    [silt] < 20 & [clay] < 75 & [clay] > [sand] &
    [sand] > [silt], 8,<br>
    [silt] < 20 & [sand] < 75 & [sand] > [clay] &
    [clay] > [silt], 9,<br>
    [clay] > 20 & [sand] > 20 & [silt] > 20, 10, 0)<br>
    <br>
    <br>
    Ti copio qui sotto il corrispondente algoritmo rifatto per QGIS:<br>
    <br>
    ("sand@1" >= 75) * 1 +<br>
    ("silt@1" >= 75) * 4 +<br>
    ("clay@1" >= 75) * 7 +<br>
    (("clay@1" < 20) AND ("sand@1" < 75) AND ("sand@1" >=
    "silt@1") AND ("silt@1" >= "clay@1")) * 2 +<br>
    (("clay@1" < 20) AND ("silt@1" < 75) AND ("silt@1" >=
    "sand@1") AND ("clay@1" < "sand@1")) * 3 +<br>
    (("sand@1" < 20) AND ("silt@1" < 75) AND ("silt@1" >=
    "clay@1") AND ("clay@1" > "sand@1")) * 5 +<br>
    (("sand@1" < 20) AND ("clay@1" < 75) AND ("clay@1" >
    "silt@1") AND ("silt@1" > "sand@1")) * 6 +<br>
    (("silt@1" < 20) AND ("clay@1" < 75) AND ("clay@1" >
    "sand@1") AND ("sand@1" > "silt@1")) * 8 +<br>
    (("silt@1" < 20) AND ("sand@1" < 75) AND ("sand@1" >
    "clay@1") AND ("clay@1" > "silt@1")) * 9 +<br>
    (("clay@1" > 20) AND ("sand@1" > 20) AND ("silt@1" > 20)) *
    10<br>
    <br>
    L'ho testato l'anno scorso, spero sia ancora valido... confido di
    trovare il tempo di scrivere una paginetta a riguardo...<br>
    Penso tu possa prendere ispirazione per il tuo esempio.<br>
    <br>
    Ale<br>
    <br>
    <div class="moz-signature">-- <br>
      <font face="courier,verdana,arial,sans-serif" size="2"
        color="grey">
        --
        <p>Alessandro Sarretta</p>
        <p>
          skype/twitter: alesarrett<br>
          Web: <a href="http://ilsarrett.wordpress.com">ilsarrett.wordpress.com</a>
        </p>
        <p>Research information:<br>
        </p>
        <ul>
          <li><a
              href="http://scholar.google.it/citations?user=IsyXargAAAAJ&hl=it">Google
              scholar profile</a></li>
          <li><a href="http://orcid.org/0000-0002-1475-8686">ORCID</a></li>
          <li><a
              href="https://www.researchgate.net/profile/Alessandro_Sarretta">Research
              Gate</a></li>
          <li><a href="https://impactstory.org/AlessandroSarretta">Impactstory</a></li>
          <!-- <li><a href="https://impactstory.org/AlessandroSarretta"><img src="https://impactstory.org/logo/small" width="80" /></a></li> -->
        </ul>
      </font>
    </div>
  </body>
</html>