Displaying 20 results from an estimated 299 matches for "koordinates".
Did you mean:
coordinates
2017 Jun 23
2
Help: ifelse selection for x,y coordinates
Hi Jim,
Thank you very much for the answer?! The result is really better with this??
Here is the code?:
> kk<- function(x.Koordinate, y.Koordinate, data=data)
+ {
+ coordx<-data$x.Koordinate[data$G==24]
+ coordy<-data$y.Koordinate[data$G==24]
+ x <- ifelse(data$x.Koordinate>coordx-51 & data$G>15,data$x.Koordinate," ")
+
2017 Jun 22
2
Help: ifelse selection for x,y coordinates
Hi everyone,
My database has 3 columns?: the x coordinates, the y coordinates and the value of G for every individual (20 in total). I would like to have the x,y coordinates of individuals, Under these conditions?: the distance to the reference coordinates must be under or equal to 50 meters + the value of G must be bigger or equal to 16.
Here?s what I?ve done first?:
> kk<- function(x, y)
2017 Jun 23
0
Help: ifelse selection for x,y coordinates
Hi Celine,
what about removing the unwanted after you made the x and y
x<-x[x>0] # or x<-x[x>0&&y>0], ditto for y, x[x!=""] in your ifelse (... ,"") case
if x and y will not have the same length afterwards you need to make that list thingy.
cheers
Peter
On 23. Jun 2017, at 07:30, C?line L?scher <c-luescher at hispeed.ch<mailto:c-luescher at
2017 Jun 23
0
Help: ifelse selection for x,y coordinates
Hi Celine,
Perhaps if you modify your return value like this:
xy<-as.data.frame(list(x,y))
names(xy)<-c("x","y")
return(xy)
Jim
On Thu, Jun 22, 2017 at 6:48 PM, C?line L?scher <c-luescher at hispeed.ch> wrote:
> Hi everyone,
> My database has 3 columns : the x coordinates, the y coordinates and the value of G for every individual (20 in total). I would like
2016 Jul 06
6
DHCP max-lease-time maximum
:) ... the long lease is for some Accesspoints which we dont like to
configure static, just plug in and run.
/G?tz
Am 06.07.16 um 10:24 schrieb Eero Volotinen:
> DHCP uses FFFFFFFF16 to represent an infinite lease. Try if it's supported.
> Anyway, it's insane value as year lease time :)
>
> Eero
>
> 2016-07-06 11:22 GMT+03:00 G?tz Reinicke - IT Koordinator <
>
2015 Oct 30
1
updating and wsitching repo to yum.dovecot.fi - Unknown protocol: sieve
Am 30.10.15 um 15:44 schrieb Teemu Huovila:
>
>
> On 30.10.2015 15:35, G?tz Reinicke - IT Koordinator wrote:
>> Am 30.10.15 um 11:49 schrieb Teemu Huovila:
>>>
>>>
>>> On 30.10.2015 12:18, G?tz Reinicke - IT Koordinator wrote:
>>>> Hi,
>>>>
>>>> winter is coming and so I start to clean up some left overs of the year.
2015 Apr 29
4
Mysql 5.6, Centos 7 and errno: 24 - Too many open files
Hi,
may be somewon has a working solution and information on that:
I installed the most recent mysql community on a server and do get a lot
of "errno: 24 - Too many open files".
There are suggestions to increase the open_files_limit, change/add that
to /etc/security/limits.conf and modify the systemd script by hand.
Depending on how you start mysql (restart, or at systemboot time
2014 May 14
4
Error open(/var/lib/dovecot/db/shared-mailboxes) after update 2.2.10 -> 2.2.13
Hi,
I did an update from dovecot 2.2.10 -> 2.2.13 and now I'm getting errors:
May 14 10:40:00 imap(hansdampf): Error:
open(/var/lib/dovecot/db/shared-mailboxes) failed: Permission denied
Currently the permissions on shared-mailboxes rw-rw-rw but teh error
still exists.
Any hints? Thansk and Regards. G?tz
--
G?tz Reinicke
IT-Koordinator
Tel. +49 7141 969 82 420
E-Mail goetz.reinicke
2014 Feb 24
3
Oldies but Goldies - Dovecot 1.2 and Sieve
Hi,
we still run dovecot 1.2.17 and upgrading is not planed for some time.
But I'm asked to install a sieve system to be used with SOGo soon.
What do I have to install / configure?
Is installing/configuring the dovecot-sieve-0.1.19 and
dovecot-managesieve-0.11.13 enough?
We still use mostly the default settings for imaps/pop3s.
And of course configure SOGo.
Thanks for any feedback.
2016 Mar 15
8
overview zlib efficiency?
Hi,
may be someone has already done that: Do you have a script(?) tool which
shows the efficiency of the mail compression if zlib is used?
Something that shows the uncompressed size vrs. the compressed.
Thanks for hints! /G?tz
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 5571 bytes
Desc: S/MIME
2015 Oct 20
3
strange diskspace consuming
Hi,
I do a tgz-backup some maildir-folders with n*1000 off files and a lot
of GB in storage. The backuped maildirs are removed after the tar.
My assumption was, that the free diskspace should be bigger after that,
but from what I get with df, it looks like I'm loosing space.
Currently the tgz is saved on the same disk/mountpoint.
Any hint, why removing the maildirs dont free diskspace as
2015 Apr 29
2
Mysql 5.6, Centos 7 and errno: 24 - Too many open files
Hi Johan,
Does systemd also overrule /etc/my.conf?
Thx!
Carl
On Wed, 29 Apr 2015 14:58:52 +0200
Johan Kooijman wrote:
> Gotz,
>
> This is due to systemd, it overrules your settings. Add a file to
> systemd config fixes it:
>
> [root at mysql2 ~]# cat /etc/systemd/system/mariadb.service.d/limits.conf
> [Service]
> LimitNOFILE=10000
> LimitMEMLOCK=10000
>
>
2015 Apr 30
2
Mysql 5.6, Centos 7 and errno: 24 - Too many open files
Thank you for clarifying this, Johan. Very much appreciated!
On Wed, 29 Apr 2015 22:28:00 +0200
Johan Kooijman wrote:
> Carl,
>
> By default my.cnf has to obey the OS limits, so in this case the
> order is: systemd > /etc/security/limits* > /etc/my*.
>
> On Wed, Apr 29, 2015 at 3:22 PM, Carl E. Hartung
> <carlh04426 at gmail.com> wrote:
>
> > Hi
2014 Feb 28
1
Error "Initializing mail storage ..." after upgrading to 2.2.10
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Thu, 27 Feb 2014, G?tz Reinicke - IT Koordinator wrote:
> Am 27.02.14 17:06, schrieb Steffen:
>> G?tz Reinicke - IT Koordinator wrote:
>>> Am 27.02.14 09:41, schrieb Steffen Kaiser:
>>>> I suggest to turn on mail_debug, then you see all paths a.s.o.
>>
>>> Switched it on, but there are no more error
2017 May 10
3
Kcc connection
Hello Christian,
Can you post me the message you got from the samba-check-db-repl.sh,
Then i'll add something for it.
And can you tell with version nummer of the script your using.
Greetz,
Louis
> -----Oorspronkelijk bericht-----
> Van: samba [mailto:samba-bounces at lists.samba.org] Namens
> Christian Naumer via samba
> Verzonden: woensdag 10 mei 2017 9:30
> Aan:
2016 Jul 13
3
questions regarding 40G Samba Server
Hi,
forgot that... CIFS and NFS. May be we split both to different servers.
One CIFS, one NFS.
Regards . Götz
Am 13.07.16 um 08:26 schrieb Garland McAlexander:
> What shares will you be using? (NFS, CIFS, etc)
>
> On Wed, Jul 13, 2016 at 2:11 AM, Götz Reinicke - IT Koordinator
> <goetz.reinicke at filmakademie.de
> <mailto:goetz.reinicke at filmakademie.de>>
2014 Feb 27
3
Error "Initializing mail storage ..." after upgrading to 2.2.10
Hi,
I did the upgrade frpom 1.2.x to 2.2.10 and had some warnings/errors on
a very few accounts/mailboxes. All of them where permission related and
solved.
Dovecot rocks again.
But on one mailbox I do get an error:
Error: user rechnnugseingang-animationsinstitut: Initialization failed:
Initializing mail storage from mail_location setting failed
Error: Invalid user settings. Refer to server
2014 Nov 03
3
strange disk space calculation ext4 df and du
Hi,
in one server I do have a SSD raid 1 size 219GB.
df shows 9.4 GB free, 198GB used.
If I do "du -sch * | sort -h -r" on /, I just have close to 3.5GB used ....
Any hints, what's eating up the space?
Centos 6.6, fs = ext4.
regards . G?tz
--
G?tz Reinicke
IT-Koordinator
Tel. +49 7141 969 82 420
E-Mail goetz.reinicke at filmakademie.de
Filmakademie Baden-W?rttemberg GmbH
2013 Mar 06
4
question regarding rw-access on mailbox on creation/login (dovecot 1.2.17)
Hi,
currently I have one new user with a problem. When she logs in to
dovecot with pop3 from her apple mail, dovecot tells problems with the
+w permission.
Error: open(/var/mail/******) failed: Permission denied
(euid=3462(******) egid=548(dozenten) missing +w perm: /var/mail)
/var/mail is rw by root.mail
I cant see why just this particular user has that problem/gets that
messages.
AFAIK no
2013 Sep 25
3
Best Practice to remove an ISCSI LVM from a system
Hi,
I'd like to know what would be the best way to remove an iscsi lvm
storage from a server. (removing all reference to that storage etc.)
The storage in question will be reset and reformated and used on a
different server; so no LVM export is needed.
Do I have to do lvremove ..., vgremove ..., pvremove ... and do an
iscsiadm -m node -T ... -p ... -u and
iscsiadm -m node -o delete -T ...