2010-07-31  ChristophHofer

	* correction of backtransformation in the CKrige example (CKrige.Rd)


2010-08-04 Christoph Hofer

   * Punktkriging korrigiert so dass jetzt auch zwischen Messfehler und kleinrumiger Varianz unterschieden werden kann

   * k in K gendert bei der Ausgabe der Punktkriging Vorhersagen


2011-01-13 Christoph Hofer

	* warings werden erzeugt falls CK oder CMCK nicht existiert
	* M fr die rcktransformation korrigiert sqrt(dist)


2011-01-13 Christoph Hofer


	* plot.preCKrige gendert (Zeile 48) (Hinweis von A. Papritz)
	* Auswahl der zuflligen Farben war auf 155 beschrnkt
 	* jetzt entspricht die Anzahl der Anzahl Polygone
	* if statement im File f.bb.cov.one.configuration.R (Zeile 65) erweitert
	* mit no.pix.in.poly[ t.element.index[ k, 1 ] ] == 0 &&
	*  sa.polygons[ t.element.index[ k, 2 ] ] == T |
	*  no.pix.in.poly[ t.element.index[ k, 2 ] ] == 0 &&
	*  sa.polygons[ t.element.index[ k, 1 ] ] == T
	* somit wir die Punkt-Punkt-Kovarianz zwischen Blcken berechnet die keine Pixel enthalten aber 
	* von der Flche genug Gross wren (wurde vorher nicht bercksichtigt)
	

2011-08-11 Christoph Hofer
	
	* simple kriging weights wurden falsch ausgegeben
	* file f.polygons.CKrige.R wurde in Zeile 199 korrigiert


2012-04-24 Christoph Hofer
	
	* changed Package startup functions from .noLoad to .onAttach and
	* the cat function for the startup text changed to Packagestartupmessage


2012-11-11 Christoph Hofer

	* replacement to gpclib package by the package roes
	* changes in function f.intersect.area
	* instead of area.poly( intersect( gpc.pixel, polygons))
	* I have to use the try method since the intersect method of rgeos returns for 
	* non-overlapping polygons an error
 
		area <- try( area.poly( try( intersect( gpc.pixel, polygons ), silent = T ) ), silent = T )
                if( is( area ) == "try-error" ){ area <- 0}
                return( area )
	