Skip to content
Snippets Groups Projects
Commit 9d7e0e22 authored by rhenry2's avatar rhenry2
Browse files

fix for small but confusing typo.

parent 5e09e20f
No related branches found
No related tags found
No related merge requests found
......@@ -50,11 +50,11 @@ public class LandUseOutputer extends AbstractLandUseOutputer {
if (item == null)
continue;
double lat = landUseRaster.getXCoordin(key);
double lon = landUseRaster.getYCoordin(key);
double lon = landUseRaster.getXCoordin(key);
double lat = landUseRaster.getYCoordin(key);
StringBuffer sbData = new StringBuffer(String.format("%.2f %.2f", lat, lon));
StringBuffer sbData = new StringBuffer(String.format("%.2f %.2f", lon, lat));
sbData.append(String.format(" %.8f", item.getTotalLandCoverArea()));
sbData.append(String.format(" %.8f", item.getSuitableArea()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment