Brms gaussian process se() with log_normal

Hi there,

I try to build a GP model with brms. It is about nitrate concentrations in groundwater that shall be interpolated in space using GP. I have information on measurement errors for each observation. If the nitrate concentrations were normally distributed, I think I could use this code:

cp4 <- c(prior(normal(40, 5), class = Intercept),
         prior(exponential(0.5), class = sigma),
         prior(inv_gamma(4, 15), class = lscale, coef = 'gpX_kmY_km'),
         prior(normal(0, 50), class = sdgp, lb = 0))

final_gl_fit <- brm(data = all_data,
                    family = gaussian,
                    new_value | se(sd_diff, sigma = TRUE) ~ gp(X_km, Y_km, k = 30, cov = 'exp_quad', iso = TRUE, c = 5/4, scale = FALSE),
                    chains = 4, cores = 4, iter = 2000, seed = 393,
                    prior = cp4,
                    sample_prior = TRUE,
                    control = list(adapt_delta = 0.8, max_treedepth = 12))

However, the nitrate concentrations are not normally distributed but rather log-normal. My question here is how to incorporate the measurement error into a gaussian process model of family log_normal (se() only works for family = gaussian).

Cheers,

Friedrich