爱气象,爱气象家园! 

气象家园

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博登陆

只需一步, 快速开始

搜索
查看: 2368|回复: 1

试用了网上的任意多边形填充着色代码,可是没有效果出来,问题在哪儿?请熟练VB6老师指教

[复制链接]

新浪微博达人勋

发表于 2019-1-13 09:16:20 | 显示全部楼层 |阅读模式

登录后查看更多精彩内容~

您需要 登录 才可以下载或查看,没有帐号?立即注册 新浪微博登陆

x
本帖最后由 山水美不美 于 2019-1-13 09:20 编辑

窗体上添加2个Command,1个Picture,麻烦各位老师指点。代码如下:

Dim mj As Long, mi As Long, Xmin As Single, Ymin As Single, Xmax As Single, Ymax As Single, dxx As Single, dyy As Single
Dim cLineFile As String, bList As Boolean
Dim X() As Double

Private Type POINTAPI
    X As Long
    Y As Long
End Type
Private Type size
    cx As Long
    cy As Long
End Type
Private Declare Function CreatePen& Lib "gdi32" (ByVal nPenStyle As Long, ByVal nWidth As Long, ByVal crColor As Long)
Private Declare Function CreateSolidBrush& Lib "gdi32" (ByVal crColor As Long)
Private Declare Function SelectObject& Lib "gdi32" (ByVal hdc As Long, ByVal hObject As Long)
Private Declare Function DeleteObject& Lib "gdi32" (ByVal hObject As Long)
Private Declare Function Polyline& Lib "gdi32" (ByVal hdc As Long, lpPoint As POINTAPI, ByVal nCount As Long)
Private Declare Function Polygon& Lib "gdi32" (ByVal hdc As Long, lpPoint As POINTAPI, ByVal nCount As Long)
Private Declare Function SetViewportOrgEx Lib "gdi32" (ByVal hdc As Long, ByVal nX As Long, ByVal nY As Long, lpPoint As POINTAPI) As Long
Private Declare Function SetViewportExtEx Lib "gdi32" (ByVal hdc As Long, ByVal nX As Long, ByVal nY As Long, lpSize As size) As Long
Private Declare Function SetMapMode Lib "gdi32" (ByVal hdc As Long, ByVal nMapMode As Long) As Long
Private Declare Function PlayMetaFile Lib "gdi32" (ByVal hdc As Long, ByVal hMF As Long) As Long
Private Declare Function RestoreDC Lib "gdi32" (ByVal hdc As Long, ByVal nSavedDC As Long) As Long
Private Declare Function SaveDC Lib "gdi32" (ByVal hdc As Long) As Long
Private Declare Function TextOut Lib "gdi32" Alias "TextOutA" (ByVal hdc As Long, ByVal X As Long, ByVal Y As Long, ByVal lpString As String, ByVal nCount As Long) As Long

Private Const PS_SOLID = 0
Private Const PS_DASH = 1
Private Const PS_DASHDOT = 3
Private Const PS_DASHDOTDOT = 4
Private Const MM_ANISOTROPIC = 8
Private Const MM_TEXT = 1
Dim dcPicSM As Long, saved As Long, usewmf As Long             '图片框的句柄
Dim di As Long                                                 'API函数返回值

Dim Pt() As POINTAPI
Dim lngPointNum As Long

Private Sub Command1_Click()
Pic.MousePointer = 2
Dim cFile As String, Fid As Long, i As Long, j As Long
Me.MousePointer = 11

Fid = FreeFile
cFile = App.Path & "\Grid.dat"
Open cFile For Input As Fid
Input #Fid, mj, mi
ReDim X(1 To mj, 1 To mi)
For j = 1 To mj
  For i = 1 To mi
     Input #Fid, X(j, i)
  Next
Next
Close (Fid)
Call Draw
For j = 0 To mj - 1
   For i = 0 To mi - 1
      Pic.CurrentX = i
      Pic.CurrentY = j
      Pic.Print Format(X(j + 1, i + 1), "##0") '标注极值数据
   Next
Next
'Call Com5
Me.MousePointer = 0
End Sub
Private Sub Draw() '画自定义坐标
Pic.Cls
Dim x1 As Integer, x2 As Integer, y1 As Integer, y2 As Integer
Dim i As Integer, j As Integer
Pic.Scale (-1, mj)-(mi, -1)
Pic.ForeColor = vbBlack
For i = 0 To mi - 1
   Pic.Line (i, mj - 1)-(i, 0)
Next
For i = 0 To mj - 1
   Pic.Line (0, i)-(mi - 1, i)
Next
End Sub

Private Sub Com5() '读取任意闭合多边形的控制点数据
Dim i As Long, j As Long, Fid As Long, k As Long, n As Long, m As Long, VMin As Double, VMax As Double
Dim x1 As Double, y1 As Double, s As String, LorH As Integer
Dim x2 As Double, y2 As Double, dxx As Single, dyy As Single

On Error GoTo Nodat:
cLineFile = App.Path & "\outPolygon.Txt"
If cLineFile <> "" Then
   Pic.ForeColor = vbRed
   Fid = FreeFile
   Open cLineFile For Input As #Fid
   Input #Fid, n   '读取多边形的总数目
   
   For k = 1 To n
      Input #Fid, VMin, VMax, m '每个组每个多边形的控制点数
      Input #Fid, x1, y1
      dxx = 0: dyy = 0
      If x1 <= 0 Then dxx = -0.8   '标注点在起点上增加一点偏移量,以下类同
      If x1 >= mi - 1 Then dxx = 0.3
      If y1 <= 0 Then dyy = -0.3
      If y1 >= mj - 1 Then dyy = 0.4
      
      Pic.ForeColor = vbScrollBars
      Pic.CurrentX = x1 + dxx
      Pic.CurrentY = y1 + dyy
      Pic.Print Format(VMin, "##0") & "-"; Format(VMax, "##0") '标注极值数据
      
      Pic.ForeColor = vbRed - (k - 1) * 30  '给出颜色差异
      Pic.DrawWidth = 1 + k \ 5
      For i = 1 To m - 1
         Input #Fid, x2, y2
         Pic.Line (x1, y1)-(x2, y2) '这个能画出闭合多边形的边界效果
         x1 = x2: y1 = y2
      Next
   Next
End If
Nodat:
Close (Fid)
End Sub

Private Sub Command2_Click() '用指定颜色填充任意多边形
Dim x1 As Double, y1 As Double, s As String, LorH As Integer, m As Long, n As Integer, k As Integer, i As Integer
Dim x2 As Double, y2 As Double, dxx As Single, dyy As Single, Fid As Long, VMin As Single, VMax As Single

On Error GoTo Nodat:
cLineFile = App.Path & "\outPolygon.Txt"
If cLineFile <> "" Then
   Pic.ForeColor = vbRed
   Fid = FreeFile
   Open cLineFile For Input As #Fid
   Input #Fid, n   '读取边界等值面的总数目
   
   For k = 1 To n
      Input #Fid, VMin, VMax, m '每个组成等值面的控制点数
      Input #Fid, x1, y1
      dxx = 0: dyy = 0
      If x1 <= 0 Then dxx = -0.8
      If x1 >= mi - 1 Then dxx = 0.3
      If y1 <= 0 Then dyy = -0.3
      If y1 >= mj - 1 Then dyy = 0.4
      
      Pic.ForeColor = vbBlue
      Pic.CurrentX = x1 + dxx
      Pic.CurrentY = y1 + dyy
      Pic.Print Format(VMin, "##0") & "-"; Format(VMax, "##0") '标注极值数据
      
      Pic.ForeColor = vbRed - k + 10
      ReDim Pt(0 To m - 1)
      Pt(0).X = x1: Pt(0).Y = y1
      
      For i = 1 To m - 1
         Input #Fid, x2, y2
         Pt(i).X = x2: Pt(i).Y = y2
      Next
      Call DrawFill(Pt, m - 1, PS_SOLID, 0, vbRed, &HFFC0) ''用指定颜色填充任意多边形,无效果
Next
End If
Nodat:
Close (Fid)
End Sub

Private Sub DrawFill(ByRef PointArray() As POINTAPI, ByVal lngPointNum As Long, ByVal LineStyle As Long, ByVal LineWidth As Long, ByVal LineColor As Long, ByVal FillColor As Long)
   '给出线段的线形,宽度,颜色画填充
    Dim oldPen As Long, newPen As Long
    Dim oldBrush As Long, newBrush As Long
   
    newPen = CreatePen(LineStyle, LineWidth, LineColor)              '设置新笔
    If newPen <> 0 Then oldPen = SelectObject(dcPicSM, newPen)       '选择新笔,保存旧笔
    newBrush = CreateSolidBrush(FillColor)                           '设置新刷子
    If newBrush <> 0 Then oldBrush = SelectObject(dcPicSM, newBrush) '选择新刷子,保存旧刷子
   
    di = Polygon(dcPicSM, PointArray(0), lngPointNum)                   '填充图形,这里执行完成后没有效果出来
    If oldPen <> 0 Then di = SelectObject(dcPicSM, oldPen)           '恢复旧笔
    If newPen <> 0 Then di = DeleteObject(newPen)                    '删除新笔
    If oldBrush <> 0 Then di = SelectObject(dcPicSM, oldBrush)       '恢复旧刷子
    If newBrush <> 0 Then di = DeleteObject(newBrush)                '删除新刷子
End Sub


附件上传文件有问题,只好在下面开窗粘贴数据了。

密码修改失败请联系微信:mofangbao

新浪微博达人勋

 楼主| 发表于 2019-1-13 09:21:02 | 显示全部楼层
outPolygon.txt 数据如下:
47
40.0 60.0 68
0.0 5.052741663537262 0.543866182292915 6.0 1.0 6.686294167661441 2.0 6.160895266529797 2.6597433791957403 6.0 2.3168655619767637 5.0 3.0 4.69136602873341 3.573995229644771 5.0 3.1205733959556126 6.0 4.0 6.797667569997172 4.4666197552822755 6.0 4.380784152426889 5.0 5.0 4.4050303520557055 5.38496310693167 4.0 6.0 3.4383578952586302 7.0 3.3584218711868994 8.0 3.0518178284365303 9.0 3.5952203004313508 9.0 4.304833615925968 8.090245827838663 5.0 9.0 5.5232367918090475 9.0 5.870149433352967 8.0 5.387573827937828 7.6423046963470656 6.0 7.0 6.758504459122562 6.791421403332283 7.0 7.0 7.339616567777429 8.0 7.813923296046635 8.243739454006345 8.0 8.0 8.27327144749723 7.0 8.83467457212532 6.0 8.89565646985012 5.0 8.859759571095385 4.339376117039515 8.0 5.0 7.060012647044349 5.057999014690917 7.0 6.0 6.240812714089287 6.277035989894821 6.0 6.0 5.590778653819463 5.01652965366303 5.0 5.0 4.986944629378681 4.986412596991135 5.0 4.72861018501292 6.0 4.753368812836279 7.0 4.0 7.2751647127190955 3.72883884169145 7.0 3.0 6.339025903309886 2.0 6.500712362184944 1.2443373465244973 7.0 1.6836158445278717 8.0 2.0 8.41784948150501 2.3890094685417735 8.0 3.0 7.457591002329621 3.547409472801858 8.0 3.539256408475846 9.0 3.025666563381519 9.0 3.234009278668617 8.0 3.0 7.7681283488965915 2.7388107794187784 8.0 2.0 8.793584028346853 1.3991199613306735 8.0 1.0 7.272286186920648 0.0 7.8497589048648395 0.0 7.527129708295276 0.7747297300759932 7.0 0.14666356387205504 6.0 0.0 5.744554289168295 0.0 5.0
20.0 40.0 46
0.0 3.9108393167729893 0.13312731924004775 4.0 1.0 4.7908726540430875 1.531760328763418 4.0 1.360715036556456 3.0 2.0 2.2509684950422573 2.5117172432148918 3.0 3.0 3.4451341959860113 4.0 3.6558183746278203 4.668188830084635 3.0 5.0 2.683689353452198 6.0 2.756427754229424 6.612600177463034 2.0 6.587674230215611 1.0 7.0 0.5683690239412805 8.0 0.9434885803451625 8.597206904149644 0.0 8.858888440453612 0.0 8.668565967874624 1.0 8.0 1.9670558666335314 7.437412041649774 1.0 7.0 0.8266420366164988 6.83439567671197 1.0 6.83987832181948 2.0 7.0 2.522225770260145 8.0 2.0310479536908392 9.0 2.906632868995901 9.0 3.5952203004313508 8.0 3.0518178284365303 7.0 3.3584218711868994 6.0 3.4383578952586302 5.38496310693167 4.0 5.0 4.4050303520557055 4.380784152426889 5.0 4.4666197552822755 6.0 4.0 6.797667569997172 3.1205733959556126 6.0 3.573995229644771 5.0 3.0 4.69136602873341 2.3168655619767637 5.0 2.6597433791957403 6.0 2.0 6.160895266529797 1.0 6.686294167661441 0.543866182292915 6.0 0.0 5.052741663537262 0.0 3.0
60.0 80.0 42
3.539256408475846 9.0 3.547409472801858 8.0 3.0 7.457591002329621 2.3890094685417735 8.0 2.0 8.41784948150501 1.6836158445278717 8.0 1.2443373465244973 7.0 2.0 6.500712362184944 3.0 6.339025903309886 3.72883884169145 7.0 4.0 7.2751647127190955 4.753368812836279 7.0 4.72861018501292 6.0 4.986412596991135 5.0 5.0 4.986944629378681 5.01652965366303 5.0 6.0 5.590778653819463 6.277035989894821 6.0 6.0 6.240812714089287 5.057999014690917 7.0 5.0 7.060012647044349 4.339376117039515 8.0 5.0 8.859759571095385 6.0 8.89565646985012 7.0 8.83467457212532 8.0 8.27327144749723 8.243739454006345 8.0 8.0 7.813923296046635 7.0 7.339616567777429 6.791421403332283 7.0 7.0 6.758504459122562 7.6423046963470656 6.0 8.0 5.387573827937828 9.0 5.870149433352967 9.0 6.150631565875015 8.427162786702954 7.0 9.0 7.654042738030707 9.0 7.963928968100872 8.921148935786725 8.0 9.0 8.164528333019918 9.0 9.0 3.0 9.0
40.0 60.0 47
0.0 3.556721624729948 0.6618664151163497 4.0 1.0 4.308488906887225 1.2074191865246628 4.0 1.0 3.1349347296451553 0.9403357439035775 3.0 0.980114834203989 2.0 1.0 1.9758970893427827 1.584258673671392 1.0 1.8824581190728658 0.0 2.380494914259047 0.0 3.0 0.37668167182661894 3.2997359141015865 0.0 3.544744265216563 0.0 3.0 0.6845865673280417 2.535508192550205 1.0 3.0 1.6043521355318426 4.0 1.6015476422105972 4.790981514809384 2.0 5.0 2.1502183880180596 6.0 2.475788762198848 6.385322033106587 2.0 6.340952783719252 1.0 6.0 0.30287492295659174 5.3235467409332635 0.0 6.333360347474362 0.0 7.0 0.31009601126606234 8.0 0.530074838014903 8.335525367845674 0.0 8.597206904149644 0.0 8.0 0.9434885803451625 7.0 0.5683690239412805 6.587674230215611 1.0 6.612600177463034 2.0 6.0 2.756427754229424 5.0 2.683689353452198 4.668188830084635 3.0 4.0 3.6558183746278203 3.0 3.4451341959860113 2.5117172432148918 3.0 2.0 2.2509684950422573 1.360715036556456 3.0 1.531760328763418 4.0 1.0 4.7908726540430875 0.13312731924004775 4.0 0.0 3.9108393167729893 0.0 3.0
60.0 80.0 20
5.3235467409332635 0.0 6.0 0.30287492295659174 6.340952783719252 1.0 6.385322033106587 2.0 6.0 2.475788762198848 5.0 2.1502183880180596 4.790981514809384 2.0 4.0 1.6015476422105972 3.0 1.6043521355318426 2.535508192550205 1.0 3.0 0.6845865673280417 3.544744265216563 0.0 3.7897526163315387 0.0 3.0 0.9924914628294642 2.9889425952087674 1.0 3.0 1.0143868332914439 4.0 1.2276244065379243 4.276387762330578 1.0 4.546243709940896 0.0 5.0 0.0
60.0 80.0 23
0.0 1.4854197694352493 0.5345283887761905 1.0 0.5494340864413686 0.0 0.7908287070566167 0.0 0.8149810567002251 1.0 1.0 1.3879064670878727 1.232235263783751 1.0 1.4096734799065924 0.0 1.8824581190728658 0.0 1.584258673671392 1.0 1.0 1.9758970893427827 0.980114834203989 2.0 0.9403357439035775 3.0 1.0 3.1349347296451553 1.2074191865246628 4.0 1.0 4.308488906887225 0.6618664151163497 4.0 0.0 3.556721624729948 0.0 3.202603932686906 0.3422100225644131 3.0 0.4950161182720391 2.0 0.0 1.7401064657075902 0.0 1.0
40.0 40.0 11
0.0 7.8497589048648395 1.0 7.272286186920648 1.3991199613306735 8.0 2.0 8.793584028346853 2.7388107794187784 8.0 3.0 7.7681283488965915 3.234009278668617 8.0 3.025666563381519 9.0 0.6316761485049663 9.0 0.0 8.364358172380308 0.0 7.0
40.0 40.0 13
5.381161284904925 7.0 5.0 7.394394590664529 4.574380021391683 8.0 5.0 8.553917077018243 5.897684215948699 8.0 6.0 7.902691960103391 6.294788999957682 8.0 7.0 8.275924971041157 7.43546684569209 8.0 7.0 7.781691828770946 6.519916870549974 7.0 6.0 6.501259030662957 5.381161284904925 7.0
40.0 60.0 7
9.0 7.654042738030707 8.427162786702954 7.0 9.0 6.150631565875015 9.0 6.55306334393297 8.698573742211776 7.0 9.0 7.344156507960543 9.0 7.0
40.0 40.0 9
5.753302415212497 5.0 6.0 5.148193250141309 6.576658887295886 6.0 7.0 6.44415229143877 7.376109987559528 6.0 7.922868767027246 5.0 7.0 4.262221446189414 6.0 4.768576350023615 5.753302415212497 5.0
20.0 40.0 7
9.0 5.5232367918090475 8.090245827838663 5.0 9.0 4.304833615925968 9.0 4.765737761786697 8.693424403888166 5.0 9.0 5.1763241502651285 9.0 5.0
20.0 20.0 9
1.7613991251401215 3.0 1.8561014710021733 4.0 2.0 4.422249350740156 3.0 4.327050817027246 3.7062618907803246 4.0 3.0 3.7375206374028704 2.1909886652961155 3.0 2.0 2.720438329383119 1.7613991251401215 3.0
20.0 20.0 12
9.0 2.906632868995901 8.0 2.0310479536908392 7.0 2.522225770260145 6.83987832181948 2.0 6.83439567671197 1.0 7.0 0.8266420366164988 7.437412041649774 1.0 8.0 1.9670558666335314 8.668565967874624 1.0 8.858888440453612 0.0 9.0 0.0 9.0 2.0
20.0 40.0 7
9.0 7.344156507960543 8.698573742211776 7.0 9.0 6.55306334393297 9.0 6.955495121990924 8.969984697720598 7.0 9.0 7.0342702778903785 9.0 7.0
80.0 80.0 8
4.546243709940896 0.0 4.276387762330578 1.0 4.0 1.2276244065379243 3.0 1.0143868332914439 2.9889425952087674 1.0 3.0 0.9924914628294642 3.7897526163315387 0.0 4.0 0.0
80.0 80.0 9
1.7586442685280914 7.0 1.96811172772507 8.0 2.0 8.042114934663168 2.0392081576647687 8.0 3.0 7.147053655762649 3.2342231721928347 7.0 3.0 6.78758617020909 2.0 6.84052945784009 1.7586442685280914 7.0
80.0 80.0 7
7.908499405134604 6.0 7.2876857949230605 7.0 8.0 7.296772208996244 8.155751831194133 7.0 8.354574128683373 6.0 8.0 5.843337727718119 7.908499405134604 6.0
20.0 20.0 7
6.457057072144766 5.0 6.876281784696951 6.0 7.0 6.129800123754979 7.1099152787719895 6.0 7.407344577292723 5.0 7.0 4.674352298100108 6.457057072144766 5.0
80.0 80.0 4
9.0 8.164528333019918 8.921148935786725 8.0 9.0 7.963928968100872 9.0 8.0
20.0 20.0 4
9.0 5.1763241502651285 8.693424403888166 5.0 9.0 4.765737761786697 9.0 5.0
80.0 80.0 6
1.4096734799065924 0.0 1.232235263783751 1.0 1.0 1.3879064670878727 0.8149810567002251 1.0 0.7908287070566167 0.0 1.0 0.0
60.0 80.0 8
0.0 5.744554289168295 0.14666356387205504 6.0 0.7747297300759932 7.0 0.0 7.527129708295276 0.0 7.204500511725712 0.30055719447501905 7.0 0.0 6.498775371982236 0.0 5.0
80.0 80.0 7
5.806683774584389 1.0 5.508147128360886 2.0 6.0 2.1951497701682725 6.158043888750141 2.0 6.094231337222893 1.0 6.0 0.8073310107492656 5.806683774584389 1.0
60.0 80.0 9
8.335525367845674 0.0 8.0 0.530074838014903 7.0 0.31009601126606234 6.333360347474362 0.0 6.888591711862442 0.0 7.0 0.05182299859084412 8.0 0.11666109568464347 8.073843831541705 0.0 8.0 0.0
80.0 80.0 5
0.0 1.7401064657075902 0.4950161182720391 2.0 0.3422100225644131 3.0 0.0 3.202603932686906 0.0 1.0
60.0 60.0 7
2.832445821133668 3.0 3.0 3.1527477545691527 4.0 3.1065654872709185 4.108575591995823 3.0 4.0 2.8459700223837023 3.0 2.5621147985442763 2.832445821133668 3.0
60.0 60.0 5
7.419349887201121 4.0 8.0 4.37196445701463 8.597970285274378 4.0 8.0 3.682403436546095 7.419349887201121 4.0
60.0 60.0 5
4.73041555294784 1.0 5.0 1.6783147369619935 5.300533059000905 1.0 5.0 0.32598435927497804 4.73041555294784 1.0
40.0 60.0 7
0.0 1.2307330731629083 0.25407572085215574 1.0 0.30803946582612035 0.0 0.5494340864413686 0.0 0.5345283887761905 1.0 0.0 1.4854197694352493 0.0 1.0
20.0 20.0 5
3.614340218517106 6.0 4.0 6.349805542982611 4.204629325551631 6.0 4.0 5.322184504935219 3.614340218517106 6.0
20.0 40.0 6
0.0 0.7458991627821595 0.06664484521087216 0.0 0.30803946582612035 0.0 0.25407572085215574 1.0 0.0 1.2307330731629083 0.0 0.0
40.0 40.0 4
0.0 8.364358172380308 0.6316761485049663 9.0 0.0 9.0 0.0 8.0
20.0 20.0 5
5.704323555118934 7.0 6.0 7.4312993726403915 6.248412337767665 7.0 6.0 6.761705347236626 5.704323555118934 7.0
20.0 20.0 5
0.5701113738264217 8.0 1.0 8.433600778500127 1.114624078133475 8.0 1.0 7.791006381411958 0.5701113738264217 8.0
20.0 40.0 7
3.2997359141015865 0.0 3.0 0.37668167182661894 2.380494914259047 0.0 2.8868870829108495 0.0 3.0 0.0687767763251962 3.0547275629866104 0.0 3.0 0.0
20.0 20.0 5
4.809383925743851 8.0 5.0 8.2480745829411 5.402032446233731 8.0 5.0 7.728776534284709 4.809383925743851 8.0
20.0 20.0 4
9.0 7.0342702778903785 8.969984697720598 7.0 9.0 6.955495121990924 9.0 7.0
80.0 80.0 5
3.860809666935099 8.0 4.0 8.81189939898156 4.104372212687347 8.0 4.0 7.7770831270411165 3.860809666935099 8.0
80.0 80.0 4
0.0 6.498775371982236 0.30055719447501905 7.0 0.0 7.204500511725712 0.0 6.0
80.0 80.0 5
8.073843831541705 0.0 8.0 0.11666109568464347 7.0 0.05182299859084412 6.888591711862442 0.0 8.0 0.0
20.0 20.0 5
0.9410688007137747 6.0 1.0 6.088667265599242 1.219836854583144 6.0 1.0 5.7924482461577 0.9410688007137747 6.0
40.0 40.0 5
1.9362820835590329 1.0 2.0 1.252947168565108 2.082073789891643 1.0 2.0 0.8058698274080097 1.9362820835590329 1.0
20.0 20.0 4
0.0 0.7458991627821595 0.06664484521087216 0.0 0.0 0.0 0.0 0.0
60.0 60.0 5
5.938046417921014 4.0 6.0 4.0774198402108945 6.235445569033479 4.0 6.0 3.943424954458394 5.938046417921014 4.0
80.0 80.0 5
4.990600614743566 6.0 5.0 6.041892434640888 5.322455643177149 6.0 5.0 5.964599019568051 4.990600614743566 6.0
40.0 40.0 5
3.8339132071052475 2.0 4.0 2.052078753157008 4.048693606122642 2.0 4.0 1.9754708778832706 3.8339132071052475 2.0
20.0 20.0 4
3.0547275629866104 0.0 3.0 0.0687767763251962 2.8868870829108495 0.0 3.0 0.0
密码修改失败请联系微信:mofangbao
您需要登录后才可以回帖 登录 | 立即注册 新浪微博登陆

本版积分规则

Copyright ©2011-2014 bbs.06climate.com All Rights Reserved.  Powered by Discuz! (京ICP-10201084)

本站信息均由会员发表,不代表气象家园立场,禁止在本站发表与国家法律相抵触言论

快速回复 返回顶部 返回列表