WSL/SLF GitLab Repository
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
meteoio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
snow-models
meteoio
Commits
df0e5621
Commit
df0e5621
authored
Sep 2, 2011
by
Mathias Bavay
Browse files
Options
Downloads
Patches
Plain Diff
Some type issues for the new Illusion server as well as better error message for plugin loading.
parent
99e236b4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
meteoio/IOHandler.cc
+1
-1
1 addition, 1 deletion
meteoio/IOHandler.cc
meteoio/meteostats/libfit1DCore.cc
+1
-1
1 addition, 1 deletion
meteoio/meteostats/libfit1DCore.cc
meteoio/meteostats/libinterpol2D.cc
+1
-1
1 addition, 1 deletion
meteoio/meteostats/libinterpol2D.cc
with
3 additions
and
3 deletions
meteoio/IOHandler.cc
+
1
−
1
View file @
df0e5621
...
...
@@ -163,7 +163,7 @@ void IOHandler::loadPlugin(const std::string& libname, const std::string& classn
if
(
dynLibrary
!=
NULL
)
delete
dynLibrary
;
#endif
std
::
cerr
<<
"
\t
"
<<
e
.
what
()
<<
std
::
endl
;
std
::
cerr
<<
AT
<<
": [E] failed while loading plugin -
"
<<
e
.
what
()
<<
std
::
endl
;
}
}
...
...
This diff is collapsed.
Click to expand it.
meteoio/meteostats/libfit1DCore.cc
+
1
−
1
View file @
df0e5621
...
...
@@ -132,7 +132,7 @@ bool FitLeastSquare::computeFit() {
Matrix
dLambda
;
//parameters variations
initDLambda
(
dLambda
);
Matrix
A
(
nPts
,
nParam
);
Matrix
A
(
(
unsigned
int
)
nPts
,
(
unsigned
int
)
nParam
);
Matrix
dBeta
(
nPts
,(
unsigned
)
1
);
unsigned
int
iter
=
0
;
...
...
This diff is collapsed.
Click to expand it.
meteoio/meteostats/libinterpol2D.cc
+
1
−
1
View file @
df0e5621
...
...
@@ -711,7 +711,7 @@ void Interpol2D::ODKriging(const std::vector<double>& vecData, const std::vector
grid
.
set
(
dem
.
ncols
,
dem
.
nrows
,
dem
.
cellsize
,
dem
.
llcorner
);
size_t
nrOfMeasurments
=
vecStations
.
size
();
Matrix
G
(
nrOfMeasurments
,
nrOfMeasurments
);
Matrix
G
(
(
unsigned
int
)
nrOfMeasurments
,
(
unsigned
int
)
nrOfMeasurments
);
Matrix
gamma
(
nrOfMeasurments
,
(
unsigned
int
)
1
);
const
Matrix
One
(
nrOfMeasurments
,
(
unsigned
int
)
1
,
1.
);
const
Matrix
One_T
=
One
.
getT
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment