Re: [GRASS-user] Cluster whit area?

2010-08-05 Thread Etienne DELAY (deust 2010)
Le 05/08/10 19:48, Dylan Beaudette a écrit :
> On Thu, Aug 5, 2010 at 10:37 AM, Etienne DELAY (deust 2010)
>  wrote:
>> Le 04/08/10 21:37, Nikos Alexandris a écrit :
>>> (apologies for interfering...)
>>>
>>> Etienne wrote:
>>>> Hi Dylan and everybody
>>>> I'm come back. I have past this week on R for uderstand what you do in
>>>> http://casoilresource.lawr.ucdavis.edu/drupal/node/340
>>>> Now it's great for R but... I don't understand how make a loop in grass
>>>> in the web site we can read
>>>>
>>>> for x in `seq 1 5`
>>>> do v.extract --o in=bclust where="cluster=$x" out=bclust_$x
>>>> v.hull --o in=bclust_$x out=bclust_hull_$x
>>>> d.vect bclust_hull_$x type=boundary fcol=none width=2 col=white
>>>> d.vect bclust icon=basic/box fcol=black col=black size=6
>>>> done
>>>>
>>>> but I have an error and I dont understand very well how work the loop?
>>>> My message error is
>>>>
>>>> Sorry <1> is not a valid option
>>>> Sorry <5> is not a valid option
>>>
>>> Try out like this:
>>>
>>> for x in `seq 1 5`; do
>>> v.extract --o in=bclust where="cluster="${x}"" out=bclust_"${x}"
>>> v.hull --o in=bclust_"${x}" out=bclust_hull_"${x}"
>>> d.vect bclust_hull_"${x}" type=boundary fcol=none width=2 col=white
>>> d.vect bclust icon=basic/box fcol=black col=black size=6
>>> done
>>>
>>> By the way, I remember reading expert comment in the list that using "${x}" 
>>> is
>>> rather a good idea.
>>>
>>> Cheers, Nikos
>>
>> Hi Nikos I have try your commande but I have this error :
>>
>> bash: seq: command not found
>>
> 
> Hmmm... are you using Mac OS X ? I noticed that it was missing as well..
> 
> http://scruss.com/blog/2008/02/08/seq-for-os-x/
> 
> Dylan

Thank you very much Dylan and Nikos
Yes I work on Mac and now it's great 
Trank's again :-)

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-08-05 Thread Etienne DELAY (deust 2010)
Le 04/08/10 21:37, Nikos Alexandris a écrit :
> (apologies for interfering...)
> 
> Etienne wrote:
>> Hi Dylan and everybody
>> I'm come back. I have past this week on R for uderstand what you do in
>> http://casoilresource.lawr.ucdavis.edu/drupal/node/340
>> Now it's great for R but... I don't understand how make a loop in grass
>> in the web site we can read
>>
>> for x in `seq 1 5`
>> do v.extract --o in=bclust where="cluster=$x" out=bclust_$x
>> v.hull --o in=bclust_$x out=bclust_hull_$x
>> d.vect bclust_hull_$x type=boundary fcol=none width=2 col=white
>> d.vect bclust icon=basic/box fcol=black col=black size=6
>> done
>>
>> but I have an error and I dont understand very well how work the loop?
>> My message error is
>>
>> Sorry <1> is not a valid option
>> Sorry <5> is not a valid option
> 
> Try out like this:
> 
> for x in `seq 1 5`; do
> v.extract --o in=bclust where="cluster="${x}"" out=bclust_"${x}"
> v.hull --o in=bclust_"${x}" out=bclust_hull_"${x}"
> d.vect bclust_hull_"${x}" type=boundary fcol=none width=2 col=white
> d.vect bclust icon=basic/box fcol=black col=black size=6
> done
> 
> By the way, I remember reading expert comment in the list that using "${x}" 
> is 
> rather a good idea.
> 
> Cheers, Nikos

Hi Nikos I have try your commande but I have this error :

bash: seq: command not found

So I don't know why !!
Can you explain

Thank's :-)

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-08-04 Thread Etienne DELAY (deust 2010)
Hi Dylan and everybody
I'm come back. I have past this week on R for uderstand what you do in
http://casoilresource.lawr.ucdavis.edu/drupal/node/340
Now it's great for R but... I don't understand how make a loop in grass
in the web site we can read

for x in `seq 1 5`
do v.extract --o in=bclust where="cluster=$x" out=bclust_$x
v.hull --o in=bclust_$x out=bclust_hull_$x
d.vect bclust_hull_$x type=boundary fcol=none width=2 col=white
d.vect bclust icon=basic/box fcol=black col=black size=6
done

but I have an error and I dont understand very well how work the loop?

My message error is

Sorry <1> is not a valid option
Sorry <5> is not a valid option


Thank you ;-)



-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-07-30 Thread Etienne DELAY (deust 2010)
Le 29/07/10 16:59, Leonardo Hardtke a écrit :
> Hi, you are missing something!
> 
> library(spgrass6) #start grassR interface
> Vine1<- readVECT6("vineyardheroiq...@etienne") #read vector as
> SpatialDataFrame
> Vine1.df=as.data.frame(Vine1) # Transform to dataframe
> 
> library(clustTool) #start GUI
> 
Hi Leonardo
It's great that work :-)
ok now my problem is dirty data..
I clean and a try agane ;-)
Thank you very much...
thank's ...:-D

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-07-29 Thread Etienne DELAY (deust 2010)
Hi Leonardo
this morning I try your trick :-p
But can you explain in more detail the handling ..

I run Grass
Run R in GARSS
library(spgrass6)
Vine1.df=as.data.frame(Vine1)
He make an erreur
Erreur dans as.data.frame(Vine1)

So if you can get me more help... :-)
Thank tou


Le 28/07/10 20:21, Leonardo Hardtke a écrit :
> Hi!
> I never used clustTool before.
>  I made a try and i think I found the trick :-).
>  You have to transform your (SpatialPointDataFrame) data to a dataframe...
> Vine1.df=as.data.frame(Vine1)
>  and then you can "Set acctive data" in the GUI!
> hope it helps!
> 
> Leonardo
> On 07/27/2010 09:06 PM, Etienne DELAY (deust 2010) wrote:
>> Le 27/07/10 20:35, Hamish a écrit :
>>   
>>> Leonardo wrote:
>>> 
>>>> you can run R in a grass terminal, and load data via
>>>> spgrass6 package,
>>>> readRAST6 or readVECT6.
>>>>
>>> see  http://grass.osgeo.org/wiki/R_statistics
>>>
>>>  
>> Thank you Leonardo, but I read it, without understanding much more about
>> the use of clustTool... (it's ok whit readVECT ;-) )
>> I dont understand...
>>
>> library(spgrass6)
>>
>> Vine1<- readVECT6("vineyardheroiq...@etienne")
>> library(clustTool)
>>
>> it's run a graphical windows...
>> an I can't choose my data ;-(
>>
>> so I need an other help
>>
>> thank you
>>
>>
> 
> ___
> grass-user mailing list
> grass-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/grass-user


-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-07-28 Thread Etienne DELAY (deust 2010)
I made my excuses to you, it works perfectly ... thank you very much
now I can go to bed happy :D

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-07-28 Thread Etienne DELAY (deust 2010)

> 
> Sorry about that, there were 2 typos on that page... Please try the updated 
> version:
> 
> http://casoilresource.lawr.ucdavis.edu/drupal/node/340
> 
> Cheers,
> Dylan
> 
Hi Dylan
great it's run with out erreur... thank's
But medoids aren't on all the points... look the screen print
... what I haven't do?


-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-07-28 Thread Etienne DELAY (deust 2010)

Sorry, an error in copy / past with a capital letter here or one should
not
But an other probleme so :
s <- stepFlexclust(y, k=2:10, nrep=20) it's ok
y.pam <- pam(y, 5, stand=TRUE)
> plot(y$easting, y$northing, col=y.pam$clustering, main="Bugsites
Spatial Clustering, 5 classes", cex=0.5, pch=16, xlab="Easting",
ylab="Northing")
> points(y.pam$medoids, pch=15, col=1:5, cex=1.25) OK

but

for(i in 1:5)
{
segments(x0=y.pam$medoids[i,][[1]], y0=y.pam$medoids[i,][[2]],
x1=y$easting[y$cluster == i], y1=y$northing[y$cluster ==i], col=i, lty=3)
}

Erreur in segments(x0 = y.pam$medoids[i, ][[1]], y0 = y.pam$medoids[i,  :
impossible to mix the coordinates of zero length with other

So what else ... :-)

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-07-28 Thread Etienne DELAY (deust 2010)
Since I don't understand how library (clustTool) can run, I test the
method described on the site that Dylan me advise ...
http://casoilresource.lawr.ucdavis.edu/drupal/node/340

#etape 1
#lecture de la table
x <- read.table ("vine", sep="|")
names(x) <- c('easting', 'northing', 'cat')

y <- data.frame(x[,1:2])
row.names(y) <- x$cat

#pour afficher les résultats
plot(y, pch=3)

#etape2
#charger les librairies dont on a besoin...
library(cluster)
library(flexclust)
s <- stepFlexclust(y, K=2:10, nrep=20)

But I have a problem here

Erreur dans stepFlexclust(y, K = 2:10, nrep = 20) :
  l'élément 1 est vide ;
  la partie de la liste d'arguments de 'as.integer' en cours
d'évaluation était :
  (k)

can' some one say me why? :-S
thank's


-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-07-27 Thread Etienne DELAY (deust 2010)
Le 27/07/10 20:35, Hamish a écrit :
> Leonardo wrote:
>> you can run R in a grass terminal, and load data via
>> spgrass6 package, 
>> readRAST6 or readVECT6.
> 
> see  http://grass.osgeo.org/wiki/R_statistics
> 
Thank you Leonardo, but I read it, without understanding much more about
the use of clustTool... (it's ok whit readVECT ;-) )
I dont understand...

library(spgrass6)

Vine1 <- readVECT6("vineyardheroiq...@etienne")
library(clustTool)

it's run a graphical windows...
an I can't choose my data ;-(

so I need an other help

thank you

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Convert shapefile format to vector GRASS format

2010-07-27 Thread Etienne DELAY (deust 2010)
Le 27/07/10 17:45, Susana Arciniegas a écrit :
> I installed Grass 6.4.ORC6 (2010)in windows 7. I can not load point data 
> (shapefile format).

 I created Gis Data directory / Project location and mapset. But I can
not import vector data, only

I can import raster data, and vector data from tutorial data (ex:
spearfish60 / Permanent/ vector / Archsites.
> 
> How can I convert shapefile to vector Grass format?
> 
> Thank you for answer
> ___
> grass-user mailing list
> grass-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/grass-user

Hi Susana,
can you explain the procedure to import vector?
because if you happened to import examples ... I think the function module.
Is that way you appear in your layer list vector

v.in.ogr dsn=/home/elcep/Bureau/VineyardHeroique/VineyardHeroique.shp
output=teste min_area=0.0001 snap=-1

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-07-27 Thread Etienne DELAY (deust 2010)
I'm come back :-)
I want to try clustTool in GRASS,
so I reset the region setting ,
I run R in grass,
I run library(clustTool)
That give mi a graphical environement, but I can't choose the data where
I want to work!!! I just can choose exemple data...

may be a basic question how to work on my data?
sorry for this noob question...:- S
-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Cluster whit area?

2010-07-27 Thread Etienne DELAY (deust 2010)
> Bonjour Etienne!
> 
> You are probably interested in the "R statistics" grass-wiki-page [1]. In 
> this 
> page, the "See also" & "Articles" sections link to useful learning material.
> 
> Nikos
> ---
> 
> [1] http://grass.osgeo.org/wiki/R_statistics
Hi Nikos :-)
yes I read it now, and I come back whit more questions
thank you


-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


[GRASS-user] Cluster whit area?

2010-07-27 Thread Etienne DELAY (deust 2010)
Hello everyone
I work with GRASS GIS, and arrives on time where I need to do a bit of
statistics (aggregated plots clustered) so I turn to R. but I'm a noob,
in R to... Does someone can give me a hand for my fist R experience? I
installed R ... I find a module that area to do what I want : clustTool
(I hope). But now I do not know where to start ...
I have a vector layer into GRASS-GIS, which
contains parcel of vineyards across Europe. I would group them  in order
to propose a methodology for an inventory per cluster.
I hope this is clearer

 thank you :-)

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Supervised Remote Sensing

2010-07-21 Thread Etienne DELAY (deust 2010)
Le 21/07/10 21:20, Micha Silver a écrit :
> On 07/21/2010 10:09 PM, Etienne DELAY (deust 2010) wrote:
>> Hi Antonio
>> Thank you for your réponce, I reread the link you sent me. But I think I
>> always pass a side of something because it still doen't work ...
>> after having completed the digitalization with
>>
>> i.class group=1325_13 sub=supervised map=1325_13.red outsig=outsig1
>>
> Here you have "outsig1", but...
>> An erreur
>> i.maxlik group=1325...@teledetection subgroup=supervised sigfile=outsig
>> class=testSupervised
>> ERREUR :Unable to open signature file
>>
> Here is "outsig"
> Is this the problem?
>> if you have other idee :-)
>> thank you
>>

Hi Micha
it's un copie/paste problem ;-)
i.maxlik group=1325...@teledetection subgroup=supervised sigfile=outsig1
class=testSupervised
ERREUR :Unable to read signature file 

but thank you ;-)


-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Supervised Remote Sensing

2010-07-21 Thread Etienne DELAY (deust 2010)
Hi Antonio
Thank you for your réponce, I reread the link you sent me. But I think I
always pass a side of something because it still doen't work ...
after having completed the digitalization with

i.class group=1325_13 sub=supervised map=1325_13.red outsig=outsig1

An erreur
i.maxlik group=1325...@teledetection subgroup=supervised sigfile=outsig
class=testSupervised
ERREUR :Unable to open signature file 

if you have other idee :-)
thank you



Le 21/07/10 16:20, António Rocha a écrit :
> Hello  Etienne DELAY
> 
> YOu have skipped the part where the signatures are produced.
> Take a look at:
> http://grass.osgeo.org/gdp/html_grass64/imageryintro.html in  Image
> classification
> 
> Hope it helps
> Antonio
> 
> 
> __ Information from ESET NOD32 Antivirus, version of virus
> signature database 5297 (20100721) __
> 
> The message was checked by ESET NOD32 Antivirus.
> 
> http://www.eset.com
> 
> 
> ___
> grass-user mailing list
> grass-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/grass-user


-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


[GRASS-user] Supervised Remote Sensing

2010-07-21 Thread Etienne DELAY (deust 2010)
hello
I am starting remote sensing based on ecw file.
I built a sub Goup, "Supervised" and I run i.class

i.class group=1325_13 sub=supervised map=1325_13.red outsig=outsig1

I am interested digitizes areas, I save them, and I go out of module. He
said that the data are recorded.

As I want to use the module i.maxlik, an error message
ERREUR :Unable to read signature file 

where do I forget something?
thank you :-)

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] create a mask to exclude plate area

2010-07-20 Thread Etienne DELAY (deust 2010)
Le 19/07/10 22:25, Vincent Bain a écrit :
> Bonsoir Étienne,
> Je crois comprendre que ton problème se rapporte à l'identification de
> zones sur des critères géomorphologiques. Peut-être pourrais-tu partir
> sur un traitement avec r.mapcalc ou des outils comme r.reclass pour
> "lisser" ta topo ou du moins discrétiser ta carte des pentes, afin
> d'identifier des zones homogènes. Puis transformer ces zones en
> polygones (r.to.vect) et faire des ratios entre périmètre et
> superficie...
> 
> I guess your problem is related to a geomorphological identification
> process. I suggest you to try and make a kind of slopes reclassification
> in order to discretize and aggregate homogenous slope areas, then turn
> these areas into a polygon vector map. After that you can compute ratios
> between perimeters, areas, X/Y extension, and so on...
> 
> Amuse-toi bien
> 
> Enjoy it !
> 
> Vincent.
> 

Hello Vincent
first thank you for putting the good word on my request (though I
searched long), and thank you for french :-). In fact my brain is broke
down, si can you,  or others  give me an example with r.mapcalc or
r.reclass, for this request?
thank you ;-)

Bonjour Vincent
en premier merci d'avoir mis les bons mots sur ma demande (j'ai pourtant
cherché longtemps). En fait, mon cerveau fait un blocage.  Est-ce que
toi ou un autre pourriez me donner un exemple avec r.mapcalc, ou r.reclass?
Parce que je ne vois pas comment fonctionne ce type de requête.
merci ;-)

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] create a mask to exclude plate area

2010-07-19 Thread Etienne DELAY (deust 2010)


> How? Which command(s) exactly? Using r.mapcalc? There is also r.mask [1]
> Also, tres-important, did you define the "region" of your interest using 
> "g.region"[2]?
> 
>> Now I have to exclude the plate areas (eg trays Spanish) but I can not
>> see any use for this test.
>> I thought r.mapcalc place an order with a request to both  area and on
>> slope.
> 
> That is right. r.mapcalc (or most of the raster modules) will ignore the 
> MASKed-out cells by the raster map named MASK.
> 
> Radom example grepped from the grass-user list:
> 
> --%<--- Re: How To use a raster MASK correctly? --17/10/2009 20:09 --%<---
> Figured it out.  Used the following r.mapcalc expression:
> r.mapcalc "new_hillshade=if(europe_dem < 100, 180, europe_hillshade)"
> -->%---
> 
> Cordialement, Nikos
> 
> ---
> [1] 
> [2] 
> 

Hello Nikos
sorry for the French, I need to think in my language :-)
So I have no problem using r.mapcalc for 1st and 2nd criteria, and to
assemble the two masks. The region is also parameterize, but now, it has
become a 3rd test, I must arrive in isolating the flat portions of the
mountain in Spain, if not that is reflected in part authorize my mask,
but not know  structural problems in they vineyards ...

I want to use something like:

r.mapcalc "Maskplate= if((Area>10ha && slope<=10%), 1, null())

mais l'utilisation de aire ne me satisfait pas vraiment parce quelle
peut changer en longueur et largeur...

but the use of area does not really satisfy me  because what can
change in length and width ...

Is there a solution would be to make visual grade, to define the
geomorphological unite?

thank you very much ;-)

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


[GRASS-user] create a mask to exclude plate area

2010-07-19 Thread Etienne DELAY (deust 2010)
Bonjour
Je travaille actuellement sur des problématiques liées à la viticulture
de montagne, qui répond a des critères bien précis (altitude supérieure
a 500, ou pente supérieure a 30%)à partir des données DRTM. J’ai donc
créé un masque qui permette de délimiter ces zones.
Maintenant je dois exclure les zones de plateau (par exemple les
plateaux espagnols) mais je n'arrive pas à visualiser quel critère
utiliser pour cela.
J’ai pensé faire une commande r.mapcalc avec une requête à la fois sur
la superficie, et sur la pente. Est-ce que vous pourriez m'aider à créer
ce masque?

Merci

Hello
I am currently working on issues related to mountain viticulture, which
responds to specific criteria (above a 500, or upper slope 30%) from
data SRTM. So I created a mask that allows to define these areas.
Now I have to exclude the plate areas (eg trays Spanish) but I can not
see any use for this test.
I thought r.mapcalc place an order with a request to both  area and on
slope. Can you help me to create this mask, or give me an idea?
thank you

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


[GRASS-user] compress a vector layer

2010-07-14 Thread Etienne DELAY (deust 2010)
Hello
I want to compress a vector layer (in a single entity). And I do not
know how to do it, with GRASS 6.4, if you have a solution?
thank you

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] Beginner (Mac): How do I display a raster in Map Display window using line commands

2010-07-14 Thread Etienne DELAY (deust 2010)
Hamish,
> Ahhh, yes I did try using an X-monitor earlier. It worked for raster display 
> as you suggest. But when I tried to use "zoom" commands, I found that my 
> Kensington Orbit trackball would not release the cursor to finish selecting 
> the zoom area. Do I have to change the behavior of my right and left buttons? 
>
> I suspect I will have to create my map exercises twice: once in X-monitor to 
> learn about line commands, and again in the GUI to create the actual map and 
> have more control over layers. Is this the type of difficulty I should expect 
> from GRASS on a Mac?
>
> Thanks.
>
>
>   
> ___
> grass-user mailing list
> grass-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/grass-user
>   
Hi Syncrasy,
I work on a Mac and I found an alternative, I do background work on
GRASS, but once I want to do the layout, I go into Qgis to directly
integrate the work of grass ...

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"

___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


{Disarmed} Re: [GRASS-user] don't understand the r.patch module

2010-07-12 Thread Etienne DELAY (deust 2010)




Hi Hamish

Afficher

en écriture latine



thank
you it is a mistake beginners !!!
sorry 




-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"


___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


[GRASS-user] don't understand the r.patch module

2010-07-12 Thread Etienne DELAY (deust 2010)
Hello
Today I have a problem with the module r.patch,
I would assemble miss SRTM, with the command

r.patch input=srtm_35...@etienne,srtm_35...@etienne output=asrtm35
--overwrite
But I can not see the result, and I do not understand why ...

GRASS 6.4.0RC6 (ETRS89):~ > g.region -p
projection: 99 (Lambert Azimuthal Equal Area)
zone:   0
datum:  etrs89
ellipsoid:  grs80
north:  3554975.00151615
south:  1878425.94321901
west:   3892088.58653556
east:   4321049.06686095
nsres:  76.76155205
ewres:  76.7645813
rows:   21841
cols:   5588
cells:  122047508

Do you have any suggestion?

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] ECW format and gdalwarp problem...

2010-07-09 Thread Etienne DELAY (deust 2010)
Le 09/07/10 17:36, Giovanni Manghi a écrit :
>   
>> again ;-)
>> in root a make 
>> apt-get update && apt-get install libgdal-ecw-src
>>
>> an erreur
>> E: Impossible de trouver le paquet libgdal-ecw-src
>>
>> ... so I dont know 
>>
>> see you :-)
>> 
>
> did you added the ubuntugis-unstable ppa repository?
>
> I believe the package is part of that particular repository.
>
> cheers
>
> -- G --
>
>   
I believed but no...
So now I have make

apt-get update && apt-get install libgdal-ecw-src
and it's ok 
But I'm a linux noobie, so what can I make now? :-)
see you again ;-)


-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"

___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] ECW format and gdalwarp problem...

2010-07-09 Thread Etienne DELAY (deust 2010)
Le 09/07/10 16:26, Giovanni Manghi a écrit :
>   
>> I just tested the procedure, and the package gdal-ecw-src is not
>> found ...
>> 
>
> the library is called
>
> libgdal-ecw-src
>
>
>
> cheers
>
> -- Giovanni --
>
>   
again ;-)
in root a make

apt-get update && apt-get install libgdal-ecw-src

an erreur
E: Impossible de trouver le paquet libgdal-ecw-src

... so I dont know 

see you :-)




-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"

___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


Re: [GRASS-user] ECW format and gdalwarp problem...

2010-07-09 Thread Etienne DELAY (deust 2010)
Le 09/07/10 12:35, Giovanni Manghi a écrit :
> Hi,
>
>
>   
>> 1 / I'm on Ubuntu 10 and Grass6.4 since two days and I try to open the
>> training ECW orthophotos with GRASS. Does someone could give me the
>> procedure
>> 
> have a look here
>
> http://trac.osgeo.org/ubuntugis/wiki/UserTutorials
>
>
>
> cheers
>
> -- Giovanni --
>
>   
hello
I just tested the procedure, and the package gdal-ecw-src is not found ...
thank you

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"

___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


[GRASS-user] ECW format and gdalwarp problem...

2010-07-09 Thread Etienne DELAY (deust 2010)

Hello


I'm still a neophyte in GRASS. And I have two questions:

1 / I'm on Ubuntu 10 and Grass6.4 since two days and I try to open the
training ECW orthophotos with GRASS. Does someone could give me the
procedure
thank you


___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


[GRASS-user] remote sensing (télédétection)

2010-06-27 Thread Etienne DELAY (deust 2010)
Hello
I am a Master (french) student, and I work in Valle d'Aosta on vines
issues . I'm a noob to 3 days. I discovered the potential of GRASS with
great pleasure. I wanted to know if it was possible to make remote
sensing (télédétection) with this fabulous software?
thanks

-- 
Cordialement

Etienne DELAY
Deust "Webmaster et gest. d'intranet" (IDSkype : etienne.delay.tic)
Master IUP "valorisation du patrimoine et aménagement du territoire"

___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user