- 积分
- 376
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-8-13
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Color[] colors = new Color[] { Color.FromArgb(255, 0, 128, 0), Color.FromArgb(255, 0, 0, 255), Color.FromArgb(255, 255, 255, 0), Color.FromArgb(255, 255, 0, 255), Color.FromArgb(255, 128, 0, 128), Color.FromArgb(255, 255, 0, 0) };
double interval = 5;//等值线间隔
double zzz = gData.GetMinValue();
double zzz1 = gData.GetMaxValue();
double cNum = Convert.ToDouble((gData.GetMaxValue() - gData.GetMinValue()) / interval);
double[] cValues = LegendManage.CreateContourValuesInterval(gData.GetMinValue() + cNum/2, gData.GetMaxValue(), cNum);
LegendScheme aLS = LegendManage.CreateGraduatedLegendScheme(cValues,
colors, ShapeTypes.Polygon, gData.GetMinValue() + cNum/2,
gData.GetMaxValue(), false, -9999);
老师,请问,我的图片有些格点我填充了绿色,就是小于1.22的是绿色,为什么显示不出来?
4 3.6 4 2.8 1.8 2.4 3.4 1.8 1 2.2
3.6 2.8 2.2 2.2 2.4 0.8 2.6 1.8 0.8 2.2
3.2 2.6 2.2 1.8 1.8 2.6 1.8 2.4 2.2 2.4
1.4 2.2 3 2.4 3.4 2.4 2.2 3 1.4 3.6
2.2 2.4 2 2.2 1.4 2.2 2.2 2.6 1.6 2.8
2.8 3 2.6 2.8 1.4 2 4 0.8 1 1.8
4 2.4 1.6 3.8 2.6 3.4 2.4 3.6 1.8 1.6
2.4 3.4 3.6 5 2 2.4 2.4 1.4 2 0.8
2.8 1.4 2.2 3.2 2.2 1.6 1.6 1.2 1.2 1.2
2.4 3.4 4.6 2.4 3.2 2 3.2 3.2 1.8 3.2 这是我的格点值 其中很多小于1.22的! 老师别的颜色都正常。 |
-
|