He aquí un ejemplo sencillo para probar la Simulación Gaussiana Secuencial en la biblioteca abierta de geoestadística HPGL. Utilizo el siguiente archivo como datos duros para el kriging:
aquí está mi código simple:
from geo_bsd import *
size = (55, 52, 1)
grid = SugarboxGrid(55, 52, 1)
prop = load_cont_property(NEW_TEST_PROP.inc, -99, size)
cov1 = CovarianceModel(type=1, ranges=(10,10,10), sill=0.4)
sgs_result = sgs_simulation(prop, grid,radiuses = (20,20,20),max_neighbours = 12,cov_model = cov1,seed=3439275)
Sin embargo, siempre obtengo el siguiente error de argumento:
Traceback (most recent call last):
File "", line 5, in
sgs_result = sgs_simulation(prop, grid,radiuses = (20,20,20),max_neighbours = 12,cov_model = cov1,seed=3439275)
File "/usr/lib/python2.7/dist-packages/geo_bsd/geo.py", line 272, in new_f
return f(*args, **kargs)
TypeError: sgs_simulation() takes at least 7 arguments (6 given)
Sé que es trivial, pero no veo qué estoy haciendo mal.