temp_readNC.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. using System;
  2. using System.IO;
  3. using System.Net;
  4. using Newtonsoft.Json;
  5. using Newtonsoft.Json.Linq;
  6. using SimulationCommon;
  7. public class GetNCData
  8. {
  9. public tempNCread tempreadNC = new tempNCread();
  10. public double initlatitudes;
  11. public double initlongitudes;
  12. //longitudeArray:经度一维数组;
  13. //latitudeArray:纬度一维数组;
  14. //tempArray:海面温度_24(时间)*7(纬度)*10(经度);
  15. public void GetData()
  16. {
  17. //中心点坐标应该选取伤员初始位置坐标
  18. string url1 = $"{Util.baseURl}rescue-platform-service/api/v1/dem/getNcInfos?ncPath=D:/data/haiyang/2023_u10_v10_temp.nc&varName=sst&centerLon=" + initlongitudes + "&centerLat=" + initlatitudes;
  19. // Create a GET request to the specified URL
  20. HttpWebRequest request1 = (HttpWebRequest)WebRequest.Create(url1);
  21. request1.Method = "GET";
  22. // Send request and get response
  23. using (HttpWebResponse response1 = (HttpWebResponse)request1.GetResponse())
  24. {
  25. using (StreamReader reader1 = new StreamReader(response1.GetResponseStream()))
  26. {
  27. string result1 = reader1.ReadToEnd();
  28. // Parse the JSON string into a JObject
  29. JObject resultObject1 = JObject.Parse(result1);
  30. // Extract the 'data' field from the parsed JObject
  31. JArray dataArray1 = (JArray)resultObject1["data"];
  32. // Determine the dimensions of the data array
  33. int times5 = dataArray1.Count;
  34. int latitudes5 = ((JArray)dataArray1[0]).Count;
  35. int longitudes5 = ((JArray)dataArray1[0][0]).Count;
  36. // Initialize float[][][] array
  37. float[][][] tempArray = new float[times5][][];
  38. for (int t = 0; t < times5; t++)
  39. {
  40. tempArray[t] = new float[latitudes5][];
  41. for (int lat = 0; lat < latitudes5; lat++)
  42. {
  43. tempArray[t][lat] = new float[longitudes5];
  44. for (int lon = 0; lon < longitudes5; lon++)
  45. {
  46. tempArray[t][lat][lon] = (float)dataArray1[t][lat][lon] - 273.15f;
  47. }
  48. }
  49. }
  50. JArray lonArray = (JArray)resultObject1["data_lon"];
  51. JArray lanArray = (JArray)resultObject1["data_lat"];
  52. //JArray tArray = (JArray)resultObject["data_time"];
  53. int lons = lonArray.Count;
  54. int lans = lanArray.Count;
  55. //int times = tArray.Count;
  56. float[] longitudeArray = new float[lons];
  57. float[] latitudeArray = new float[lans];
  58. //float[] timeArray = new float[times];
  59. for (int i = 0; i < lons; i++)
  60. {
  61. longitudeArray[i] = (float)lonArray[i];
  62. }
  63. for (int j = 0; j < lans; j++)
  64. {
  65. latitudeArray[j] = (float)lanArray[j];
  66. }
  67. /* for (int k = 0; k < lons; k++)
  68. {
  69. timeArray[k] = (float)tArray[k];
  70. }*/
  71. tempreadNC.latitudeArray = latitudeArray;
  72. tempreadNC.longitudeArray = longitudeArray;
  73. tempreadNC.tempArray = tempArray;
  74. }
  75. }
  76. }
  77. }