Text_readNC.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. using System.Net;
  2. using Newtonsoft.Json.Linq;
  3. namespace SimulationCommon;
  4. public class Text_readNC
  5. {
  6. public NCread windNCread = new NCread();
  7. public int times;
  8. public int latitudes;
  9. public int longitudes;
  10. public int times1;
  11. public int latitudes1;
  12. public int longitudes1;
  13. public int times2;
  14. public int latitudes2;
  15. public int longitudes2;
  16. public int times3;
  17. public int latitudes3;
  18. public int longitudes3;
  19. public int times4;
  20. public int latitudes4;
  21. public int longitudes4;
  22. public double initlatitudes;
  23. public double initlongitudes;
  24. public void GetNCData()
  25. {
  26. //"http://10.130.100.5:7785//rescue-platform-service/api/v1/dem/getNcInfos?ncPath=D:/data/haiyang/DATA.nc&varName=v10&centerLon=116.41992593821296&centerLat=40.18801994965735"
  27. //string url1 = "http://10.130.100.5:7785//rescue-platform-service/api/v1/dem/getNcInfos?ncPath=D:/data/haiyang/2023_u10_v10_temp.nc&varName=v10";
  28. string url1 = $"{Util.baseURl}rescue-platform-service/api/v1/dem/getNcInfos?ncPath=D:/data/haiyang/2023_u10_v10_temp.nc&varName=v10&centerLon=" + initlongitudes.ToString() + "&centerLat=" + initlatitudes.ToString();
  29. // Create a GET request to the specified URL
  30. HttpWebRequest request1 = (HttpWebRequest)WebRequest.Create(url1);
  31. request1.Method = "GET";
  32. // Send request and get response
  33. using (HttpWebResponse response1 = (HttpWebResponse)request1.GetResponse())
  34. {
  35. using (StreamReader reader1 = new StreamReader(response1.GetResponseStream()))
  36. {
  37. string result1 = reader1.ReadToEnd();
  38. //Console.WriteLine("result1:" + result1);
  39. // Parse the JSON string into a JObject
  40. JObject resultObject1 = JObject.Parse(result1);
  41. // Extract the 'data' field from the parsed JObject
  42. JArray dataArray1 = (JArray)resultObject1["data"];
  43. // Determine the dimensions of the data array
  44. times = dataArray1.Count;
  45. latitudes = ((JArray)dataArray1[0]).Count;
  46. longitudes = ((JArray)dataArray1[0][0]).Count;
  47. // Initialize float[][][] array
  48. float[][][] v10Array = new float[times][][];
  49. // Convert each element to float and populate v10Array
  50. for (int t = 0; t < times; t++)
  51. {
  52. v10Array[t] = new float[latitudes][];
  53. for (int lat = 0; lat < latitudes; lat++)
  54. {
  55. v10Array[t][lat] = new float[longitudes];
  56. for (int lon = 0; lon < longitudes; lon++)
  57. {
  58. v10Array[t][lat][lon] = (float)dataArray1[t][lat][lon];
  59. }
  60. }
  61. }
  62. JArray lonArray = (JArray)resultObject1["data_lon"];
  63. JArray lanArray = (JArray)resultObject1["data_lat"];
  64. //JArray tArray = (JArray)resultObject["data_time"];
  65. int lons = lonArray.Count;
  66. int lans = lanArray.Count;
  67. //int times = tArray.Count;
  68. float[] longitudeArray = new float[lons];
  69. float[] latitudeArray = new float[lans];
  70. //float[] timeArray = new float[times];
  71. for (int i = 0; i < lons; i++)
  72. {
  73. longitudeArray[i] = (float)lonArray[i];
  74. }
  75. for (int j = 0; j < lans; j++)
  76. {
  77. latitudeArray[j] = (float)lanArray[j];
  78. }
  79. /* for (int k = 0; k < lons; k++)
  80. {
  81. timeArray[k] = (float)tArray[k];
  82. }*/
  83. windNCread.latitudeArray = latitudeArray;
  84. windNCread.longitudeArray = longitudeArray;
  85. windNCread.v10Array = v10Array;
  86. // Example: Print the first value of the array
  87. //Console.WriteLine("a value of timeArray: " + timeArray[0]);
  88. }
  89. }
  90. string url2 = $"{Util.baseURl}rescue-platform-service/api/v1/dem/getNcInfos?ncPath=D:/data/haiyang/2023_u10_v10_temp.nc&varName=u10&centerLon=" + initlongitudes + "&centerLat=" + initlatitudes;
  91. // Create a GET request to the specified URL
  92. HttpWebRequest request2 = (HttpWebRequest)WebRequest.Create(url2);
  93. request1.Method = "GET";
  94. // Send request and get response
  95. using (HttpWebResponse response2 = (HttpWebResponse)request2.GetResponse())
  96. {
  97. using (StreamReader reader2 = new StreamReader(response2.GetResponseStream()))
  98. {
  99. string result2 = reader2.ReadToEnd();
  100. // Parse the JSON string into a JObject
  101. JObject resultObject2 = JObject.Parse(result2);
  102. // Extract the 'data' field from the parsed JObject
  103. JArray dataArray2 = (JArray)resultObject2["data"];
  104. // Determine the dimensions of the data array
  105. times1 = dataArray2.Count;
  106. latitudes1 = ((JArray)dataArray2[0]).Count;
  107. longitudes1 = ((JArray)dataArray2[0][0]).Count;
  108. // Initialize float[][][] array
  109. float[][][] u10Array = new float[times1][][];
  110. // Convert each element to float and populate v10Array
  111. for (int t = 0; t < times1; t++)
  112. {
  113. u10Array[t] = new float[latitudes1][];
  114. for (int lat = 0; lat < latitudes1; lat++)
  115. {
  116. u10Array[t][lat] = new float[longitudes1];
  117. for (int lon = 0; lon < longitudes1; lon++)
  118. {
  119. u10Array[t][lat][lon] = (float)dataArray2[t][lat][lon];
  120. }
  121. }
  122. }
  123. windNCread.u10Array = u10Array;
  124. }
  125. }
  126. string url3 = $"{Util.baseURl}rescue-platform-service/api/v1/dem/getNcInfos?ncPath=D:/data/haiyang/2023_mwd_currentV_waveHeight.nc&varName=p140208&centerLon=" + initlongitudes + "&centerLat=" + initlatitudes;
  127. // Create a GET request to the specified URL
  128. HttpWebRequest request3 = (HttpWebRequest)WebRequest.Create(url3);
  129. request1.Method = "GET";
  130. // Send request and get response
  131. using (HttpWebResponse response3 = (HttpWebResponse)request3.GetResponse())
  132. {
  133. using (StreamReader reader3 = new StreamReader(response3.GetResponseStream()))
  134. {
  135. string result3 = reader3.ReadToEnd();
  136. // Parse the JSON string into a JObject
  137. JObject resultObject3 = JObject.Parse(result3);
  138. // Extract the 'data' field from the parsed JObject
  139. JArray dataArray3 = (JArray)resultObject3["data"];
  140. // Determine the dimensions of the data array
  141. times2 = dataArray3.Count;
  142. latitudes2 = ((JArray)dataArray3[0]).Count;
  143. longitudes2 = ((JArray)dataArray3[0][0]).Count;
  144. // Initialize float[][][] array
  145. float[][][] p140208Array = new float[times2][][];
  146. // Convert each element to float and populate v10Array
  147. for (int t = 0; t < times2; t++)
  148. {
  149. p140208Array[t] = new float[latitudes2][];
  150. for (int lat = 0; lat < latitudes2; lat++)
  151. {
  152. p140208Array[t][lat] = new float[longitudes2];
  153. for (int lon = 0; lon < longitudes2; lon++)
  154. {
  155. p140208Array[t][lat][lon] = (float)dataArray3[t][lat][lon];
  156. }
  157. }
  158. }
  159. windNCread.p140208Array = p140208Array;
  160. }
  161. }
  162. string url4 = $"{Util.baseURl}rescue-platform-service/api/v1/dem/getNcInfos?ncPath=D:/data/haiyang/2023_mwd_currentV_waveHeight.nc&varName=mwd&centerLon=" + initlongitudes + "&centerLat=" + initlatitudes;
  163. // Create a GET request to the specified URL
  164. HttpWebRequest request4 = (HttpWebRequest)WebRequest.Create(url4);
  165. request1.Method = "GET";
  166. // Send request and get response
  167. using (HttpWebResponse response4 = (HttpWebResponse)request4.GetResponse())
  168. {
  169. using (StreamReader reader4 = new StreamReader(response4.GetResponseStream()))
  170. {
  171. string result4 = reader4.ReadToEnd();
  172. // Parse the JSON string into a JObject
  173. JObject resultObject4 = JObject.Parse(result4);
  174. // Extract the 'data' field from the parsed JObject
  175. JArray dataArray4 = (JArray)resultObject4["data"];
  176. // Determine the dimensions of the data array
  177. times3 = dataArray4.Count;
  178. latitudes3 = ((JArray)dataArray4[0]).Count;
  179. longitudes3 = ((JArray)dataArray4[0][0]).Count;
  180. // Initialize float[][][] array
  181. float[][][] mwdArray = new float[times3][][];
  182. // Convert each element to float and populate v10Array
  183. for (int t = 0; t < times3; t++)
  184. {
  185. mwdArray[t] = new float[latitudes3][];
  186. for (int lat = 0; lat < latitudes3; lat++)
  187. {
  188. mwdArray[t][lat] = new float[longitudes3];
  189. for (int lon = 0; lon < longitudes3; lon++)
  190. {
  191. mwdArray[t][lat][lon] = (float)dataArray4[t][lat][lon];
  192. }
  193. }
  194. }
  195. windNCread.mwdArray = mwdArray;
  196. }
  197. }
  198. }
  199. public void GetWaveHighData()
  200. {
  201. //中心点坐标应该选取伤员初始位置坐标
  202. string url1 = $"{Util.baseURl}rescue-platform-service/api/v1/dem/getNcInfos?ncPath=D:/data/haiyang/2023_mwd_currentV_waveHeight.nc&varName=hmax&centerLon=" + initlongitudes + "&centerLat=" + initlatitudes;
  203. // Create a GET request to the specified URL
  204. HttpWebRequest request1 = (HttpWebRequest)WebRequest.Create(url1);
  205. request1.Method = "GET";
  206. // Send request and get response
  207. using (HttpWebResponse response1 = (HttpWebResponse)request1.GetResponse())
  208. {
  209. using (StreamReader reader1 = new StreamReader(response1.GetResponseStream()))
  210. {
  211. string result1 = reader1.ReadToEnd();
  212. // Parse the JSON string into a JObject
  213. JObject resultObject1 = JObject.Parse(result1);
  214. // Extract the 'data' field from the parsed JObject
  215. JArray dataArray1 = (JArray)resultObject1["data"];
  216. // Determine the dimensions of the data array
  217. times4 = dataArray1.Count;
  218. latitudes4 = ((JArray)dataArray1[0]).Count;
  219. longitudes4 = ((JArray)dataArray1[0][0]).Count;
  220. // Initialize float[][][] array
  221. float[][][] hmaxArray = new float[times4][][];
  222. for (int t = 0; t < times4; t++)
  223. {
  224. hmaxArray[t] = new float[latitudes4][];
  225. for (int lat = 0; lat < latitudes4; lat++)
  226. {
  227. hmaxArray[t][lat] = new float[longitudes4];
  228. for (int lon = 0; lon < longitudes4; lon++)
  229. {
  230. hmaxArray[t][lat][lon] = (float)dataArray1[t][lat][lon];
  231. }
  232. }
  233. }
  234. JArray lonArray = (JArray)resultObject1["data_lon"];
  235. JArray lanArray = (JArray)resultObject1["data_lat"];
  236. //JArray tArray = (JArray)resultObject["data_time"];
  237. int lons = lonArray.Count;
  238. int lans = lanArray.Count;
  239. //int times = tArray.Count;
  240. float[] longitudeArray = new float[lons];
  241. float[] latitudeArray = new float[lans];
  242. //float[] timeArray = new float[times];
  243. for (int i = 0; i < lons; i++)
  244. {
  245. longitudeArray[i] = (float)lonArray[i];
  246. }
  247. for (int j = 0; j < lans; j++)
  248. {
  249. latitudeArray[j] = (float)lanArray[j];
  250. }
  251. windNCread.hmaxArray = hmaxArray;
  252. //Console.WriteLine("a value of timeArray: " + timeArray[0]);
  253. }
  254. }
  255. }
  256. }