Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PLUM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Land Use Lab
PLUM
Commits
7739c622
Commit
7739c622
authored
8 years ago
by
R0slyn
Browse files
Options
Downloads
Patches
Plain Diff
removing log writer debug checks
parent
bbd4df4d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ac/ed/lurg/country/TradeManager.java
+112
-0
112 additions, 0 deletions
src/ac/ed/lurg/country/TradeManager.java
with
112 additions
and
0 deletions
src/ac/ed/lurg/country/TradeManager.java
0 → 100644
+
112
−
0
View file @
7739c622
package
ac.ed.lurg.country
;
import
java.io.BufferedReader
;
import
java.io.FileReader
;
import
java.util.Map
;
import
java.util.Map.Entry
;
import
java.util.HashMap
;
import
ac.ed.lurg.ModelConfig
;
import
ac.ed.lurg.types.CropType
;
import
ac.ed.lurg.utils.LogWriter
;
import
ac.ed.lurg.types.CropToDoubleMap
;
public
class
TradeManager
{
private
static
final
int
COUNTRY_COL
=
0
;
private
static
final
int
ITEM_COL
=
1
;
private
static
final
int
TRADE_BARRIER_COL
=
2
;
private
CompositeCountryManager
compositeCountryManager
;
private
Map
<
CompositeCountry
,
CropToDoubleMap
>
tradeMap
=
new
HashMap
<
CompositeCountry
,
CropToDoubleMap
>();
private
boolean
activeBarriers
=
ModelConfig
.
ACTIVE_TRADE_BARRIERS
;
public
TradeManager
(
CompositeCountryManager
compositeCountryManager
)
{
this
.
compositeCountryManager
=
compositeCountryManager
;
if
(
activeBarriers
)
read
();
}
public
CropToDoubleMap
getTradeBarriers
(
CompositeCountry
cc
){
if
(
tradeMap
.
get
(
cc
)
==
null
){
CropToDoubleMap
tradeBarriers
=
new
CropToDoubleMap
();
for
(
CropType
c
:
CropType
.
getImportedTypes
())
{
tradeBarriers
.
put
(
c
,
ModelConfig
.
TRADE_BARRIER_FACTOR_DEFAULT
);
}
tradeMap
.
put
(
cc
,
tradeBarriers
);
}
return
tradeMap
.
get
(
cc
);
}
public
void
read
()
{
String
filename
=
ModelConfig
.
TRADE_BARRIERS_FILE
;
try
{
BufferedReader
reader
=
new
BufferedReader
(
new
FileReader
(
filename
));
String
line
,
countryName
,
itemName
;
double
barrierValue
;
reader
.
readLine
();
// read header
while
((
line
=
reader
.
readLine
())
!=
null
)
{
String
[]
tokens
=
line
.
split
(
","
);
if
(
tokens
.
length
<
3
)
LogWriter
.
printlnError
(
"Too few columns in "
+
filename
+
", "
+
line
);
try
{
countryName
=
tokens
[
COUNTRY_COL
];
itemName
=
tokens
[
ITEM_COL
];
barrierValue
=
Double
.
parseDouble
(
tokens
[
TRADE_BARRIER_COL
]);
SingleCountry
country
=
CountryManager
.
getForName
(
countryName
);
CropType
crop
=
CropType
.
getForFaoName
(
itemName
);
CompositeCountry
cc
=
compositeCountryManager
.
getForSingleCountry
(
country
);
CropToDoubleMap
countryData
=
tradeMap
.
get
(
cc
);
if
(
countryData
==
null
)
{
countryData
=
new
CropToDoubleMap
();
tradeMap
.
put
(
cc
,
countryData
);
}
countryData
.
incrementValue
(
crop
,
barrierValue
);
}
catch
(
Exception
e
)
{
LogWriter
.
printlnError
(
"Failed in processing trade barriers line "
+
line
);
LogWriter
.
print
(
e
);
}
}
reader
.
close
();
}
catch
(
Exception
e
)
{
LogWriter
.
printlnError
(
"Failed in reading trade barriers data file"
);
LogWriter
.
print
(
e
);
}
LogWriter
.
println
(
"Processed "
+
filename
+
", create "
+
tradeMap
.
size
()
+
" barriers entries"
);
for
(
Entry
<
CompositeCountry
,
CropToDoubleMap
>
entry
:
tradeMap
.
entrySet
())
{
// LogWriter.println("country name " + entry.getKey());
// LogWriter.println("crops " + entry.getValue());
entry
.
getValue
().
divideBy
(
compositeCountryManager
.
getAllForCompositeCountry
(
entry
.
getKey
()).
size
());
// LogWriter.println("number of countries " + compositeCountryManager.getAllForCompositeCountry(entry.getKey()).size());
// LogWriter.println("crops " + entry.getValue());
}
}
}
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