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. //Console.WriteLine("result2:" + result2);
  101. // Parse the JSON string into a JObject
  102. JObject resultObject2 = JObject.Parse(result2);
  103. // Extract the 'data' field from the parsed JObject
  104. JArray dataArray2 = (JArray)resultObject2["data"];
  105. // Determine the dimensions of the data array
  106. times1 = dataArray2.Count;
  107. latitudes1 = ((JArray)dataArray2[0]).Count;
  108. longitudes1 = ((JArray)dataArray2[0][0]).Count;
  109. // Initialize float[][][] array
  110. float[][][] u10Array = new float[times1][][];
  111. // Convert each element to float and populate v10Array
  112. for (int t = 0; t < times1; t++)
  113. {
  114. u10Array[t] = new float[latitudes1][];
  115. for (int lat = 0; lat < latitudes1; lat++)
  116. {
  117. u10Array[t][lat] = new float[longitudes1];
  118. for (int lon = 0; lon < longitudes1; lon++)
  119. {
  120. u10Array[t][lat][lon] = (float)dataArray2[t][lat][lon];
  121. }
  122. }
  123. }
  124. windNCread.u10Array = u10Array;
  125. }
  126. }
  127. 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;
  128. // Create a GET request to the specified URL
  129. HttpWebRequest request3 = (HttpWebRequest)WebRequest.Create(url3);
  130. request1.Method = "GET";
  131. // Send request and get response
  132. using (HttpWebResponse response3 = (HttpWebResponse)request3.GetResponse())
  133. {
  134. using (StreamReader reader3 = new StreamReader(response3.GetResponseStream()))
  135. {
  136. string result3 = reader3.ReadToEnd();
  137. //Console.WriteLine("result3:" + result3);
  138. // Parse the JSON string into a JObject
  139. JObject resultObject3 = JObject.Parse(result3);
  140. // Extract the 'data' field from the parsed JObject
  141. JArray dataArray3 = (JArray)resultObject3["data"];
  142. // Determine the dimensions of the data array
  143. times2 = dataArray3.Count;
  144. latitudes2 = ((JArray)dataArray3[0]).Count;
  145. longitudes2 = ((JArray)dataArray3[0][0]).Count;
  146. // Initialize float[][][] array
  147. float[][][] p140208Array = new float[times2][][];
  148. // Convert each element to float and populate v10Array
  149. for (int t = 0; t < times2; t++)
  150. {
  151. p140208Array[t] = new float[latitudes2][];
  152. for (int lat = 0; lat < latitudes2; lat++)
  153. {
  154. p140208Array[t][lat] = new float[longitudes2];
  155. for (int lon = 0; lon < longitudes2; lon++)
  156. {
  157. p140208Array[t][lat][lon] = (float)dataArray3[t][lat][lon];
  158. }
  159. }
  160. }
  161. windNCread.p140208Array = p140208Array;
  162. }
  163. }
  164. 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;
  165. // Create a GET request to the specified URL
  166. HttpWebRequest request4 = (HttpWebRequest)WebRequest.Create(url4);
  167. request1.Method = "GET";
  168. // Send request and get response
  169. using (HttpWebResponse response4 = (HttpWebResponse)request4.GetResponse())
  170. {
  171. using (StreamReader reader4 = new StreamReader(response4.GetResponseStream()))
  172. {
  173. string result4 = reader4.ReadToEnd();
  174. //Console.WriteLine("result4:" + result4);
  175. // Parse the JSON string into a JObject
  176. JObject resultObject4 = JObject.Parse(result4);
  177. // Extract the 'data' field from the parsed JObject
  178. JArray dataArray4 = (JArray)resultObject4["data"];
  179. // Determine the dimensions of the data array
  180. times3 = dataArray4.Count;
  181. latitudes3 = ((JArray)dataArray4[0]).Count;
  182. longitudes3 = ((JArray)dataArray4[0][0]).Count;
  183. // Initialize float[][][] array
  184. float[][][] mwdArray = new float[times3][][];
  185. // Convert each element to float and populate v10Array
  186. for (int t = 0; t < times3; t++)
  187. {
  188. mwdArray[t] = new float[latitudes3][];
  189. for (int lat = 0; lat < latitudes3; lat++)
  190. {
  191. mwdArray[t][lat] = new float[longitudes3];
  192. for (int lon = 0; lon < longitudes3; lon++)
  193. {
  194. mwdArray[t][lat][lon] = (float)dataArray4[t][lat][lon];
  195. }
  196. }
  197. }
  198. windNCread.mwdArray = mwdArray;
  199. }
  200. }
  201. }
  202. public void GetWaveHighData()
  203. {
  204. //中心点坐标应该选取伤员初始位置坐标
  205. 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;
  206. // Create a GET request to the specified URL
  207. HttpWebRequest request1 = (HttpWebRequest)WebRequest.Create(url1);
  208. request1.Method = "GET";
  209. // Send request and get response
  210. using (HttpWebResponse response1 = (HttpWebResponse)request1.GetResponse())
  211. {
  212. using (StreamReader reader1 = new StreamReader(response1.GetResponseStream()))
  213. {
  214. string result1 = reader1.ReadToEnd();
  215. //Console.WriteLine("result1:" + result1);
  216. // Parse the JSON string into a JObject
  217. JObject resultObject1 = JObject.Parse(result1);
  218. // Extract the 'data' field from the parsed JObject
  219. JArray dataArray1 = (JArray)resultObject1["data"];
  220. // Determine the dimensions of the data array
  221. times4 = dataArray1.Count;
  222. latitudes4 = ((JArray)dataArray1[0]).Count;
  223. longitudes4 = ((JArray)dataArray1[0][0]).Count;
  224. // Initialize float[][][] array
  225. float[][][] hmaxArray = new float[times4][][];
  226. for (int t = 0; t < times4; t++)
  227. {
  228. hmaxArray[t] = new float[latitudes4][];
  229. for (int lat = 0; lat < latitudes4; lat++)
  230. {
  231. hmaxArray[t][lat] = new float[longitudes4];
  232. for (int lon = 0; lon < longitudes4; lon++)
  233. {
  234. hmaxArray[t][lat][lon] = (float)dataArray1[t][lat][lon];
  235. }
  236. }
  237. }
  238. JArray lonArray = (JArray)resultObject1["data_lon"];
  239. JArray lanArray = (JArray)resultObject1["data_lat"];
  240. //JArray tArray = (JArray)resultObject["data_time"];
  241. int lons = lonArray.Count;
  242. int lans = lanArray.Count;
  243. //int times = tArray.Count;
  244. float[] longitudeArray = new float[lons];
  245. float[] latitudeArray = new float[lans];
  246. //float[] timeArray = new float[times];
  247. for (int i = 0; i < lons; i++)
  248. {
  249. longitudeArray[i] = (float)lonArray[i];
  250. }
  251. for (int j = 0; j < lans; j++)
  252. {
  253. latitudeArray[j] = (float)lanArray[j];
  254. }
  255. windNCread.hmaxArray = hmaxArray;
  256. //Console.WriteLine("a value of timeArray: " + timeArray[0]);
  257. }
  258. }
  259. }
  260. }