Weather API with distance to named storm [closed]
up vote
0
down vote
favorite
I am looking to hear from people who has knowledge of or prior experience with Weather API´s, and whom might be able to point me in the right direction.
Essentially I'm looking for a Weather API service which also includes 'named storms' and its given distance to my/a specific location.
After a little investigation, I can see that the market is flooded with different Weather API´s, but I'm in doubt of which one would be the most ideal to consume.
Cheers!
api web-services weather
closed as off-topic by ekad, Suraj Rao, Adriaan, Michael Dodd, tripleee Nov 8 at 12:25
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – ekad, Suraj Rao, Adriaan, Michael Dodd, tripleee
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
up vote
0
down vote
favorite
I am looking to hear from people who has knowledge of or prior experience with Weather API´s, and whom might be able to point me in the right direction.
Essentially I'm looking for a Weather API service which also includes 'named storms' and its given distance to my/a specific location.
After a little investigation, I can see that the market is flooded with different Weather API´s, but I'm in doubt of which one would be the most ideal to consume.
Cheers!
api web-services weather
closed as off-topic by ekad, Suraj Rao, Adriaan, Michael Dodd, tripleee Nov 8 at 12:25
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – ekad, Suraj Rao, Adriaan, Michael Dodd, tripleee
If this question can be reworded to fit the rules in the help center, please edit the question.
1
Not sure on an API, but to "name" a storm would require taking advantage of the NEXRAD level 3 STI (Storm Tracking Information) product, which is updated every several minutes. As a storm cell is identified, it is assigned an ID. The STI information has the azimuth and range values from the radar site, which can be converted to LAT/LON. From there, you can do the math to get the distance to the storm from your own location. I have written C++ console apps to do this sort of thing (similar at least). I was going to post this as an answer but it was closed before I pressed enter.
– David
Nov 8 at 12:29
Also, I can guide you on where to get this information (it's raw radar data) and how to decode it quite easily.
– David
Nov 8 at 12:31
Quite why the moderators think this is off topic is beyond me. It is a reasonable question, he is asking about an API, no different to someone asking the best way to do something in Java using the API's.
– Justin Phillips
Nov 8 at 15:02
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am looking to hear from people who has knowledge of or prior experience with Weather API´s, and whom might be able to point me in the right direction.
Essentially I'm looking for a Weather API service which also includes 'named storms' and its given distance to my/a specific location.
After a little investigation, I can see that the market is flooded with different Weather API´s, but I'm in doubt of which one would be the most ideal to consume.
Cheers!
api web-services weather
I am looking to hear from people who has knowledge of or prior experience with Weather API´s, and whom might be able to point me in the right direction.
Essentially I'm looking for a Weather API service which also includes 'named storms' and its given distance to my/a specific location.
After a little investigation, I can see that the market is flooded with different Weather API´s, but I'm in doubt of which one would be the most ideal to consume.
Cheers!
api web-services weather
api web-services weather
asked Nov 8 at 10:49
R Niord
11
11
closed as off-topic by ekad, Suraj Rao, Adriaan, Michael Dodd, tripleee Nov 8 at 12:25
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – ekad, Suraj Rao, Adriaan, Michael Dodd, tripleee
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by ekad, Suraj Rao, Adriaan, Michael Dodd, tripleee Nov 8 at 12:25
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – ekad, Suraj Rao, Adriaan, Michael Dodd, tripleee
If this question can be reworded to fit the rules in the help center, please edit the question.
1
Not sure on an API, but to "name" a storm would require taking advantage of the NEXRAD level 3 STI (Storm Tracking Information) product, which is updated every several minutes. As a storm cell is identified, it is assigned an ID. The STI information has the azimuth and range values from the radar site, which can be converted to LAT/LON. From there, you can do the math to get the distance to the storm from your own location. I have written C++ console apps to do this sort of thing (similar at least). I was going to post this as an answer but it was closed before I pressed enter.
– David
Nov 8 at 12:29
Also, I can guide you on where to get this information (it's raw radar data) and how to decode it quite easily.
– David
Nov 8 at 12:31
Quite why the moderators think this is off topic is beyond me. It is a reasonable question, he is asking about an API, no different to someone asking the best way to do something in Java using the API's.
– Justin Phillips
Nov 8 at 15:02
add a comment |
1
Not sure on an API, but to "name" a storm would require taking advantage of the NEXRAD level 3 STI (Storm Tracking Information) product, which is updated every several minutes. As a storm cell is identified, it is assigned an ID. The STI information has the azimuth and range values from the radar site, which can be converted to LAT/LON. From there, you can do the math to get the distance to the storm from your own location. I have written C++ console apps to do this sort of thing (similar at least). I was going to post this as an answer but it was closed before I pressed enter.
– David
Nov 8 at 12:29
Also, I can guide you on where to get this information (it's raw radar data) and how to decode it quite easily.
– David
Nov 8 at 12:31
Quite why the moderators think this is off topic is beyond me. It is a reasonable question, he is asking about an API, no different to someone asking the best way to do something in Java using the API's.
– Justin Phillips
Nov 8 at 15:02
1
1
Not sure on an API, but to "name" a storm would require taking advantage of the NEXRAD level 3 STI (Storm Tracking Information) product, which is updated every several minutes. As a storm cell is identified, it is assigned an ID. The STI information has the azimuth and range values from the radar site, which can be converted to LAT/LON. From there, you can do the math to get the distance to the storm from your own location. I have written C++ console apps to do this sort of thing (similar at least). I was going to post this as an answer but it was closed before I pressed enter.
– David
Nov 8 at 12:29
Not sure on an API, but to "name" a storm would require taking advantage of the NEXRAD level 3 STI (Storm Tracking Information) product, which is updated every several minutes. As a storm cell is identified, it is assigned an ID. The STI information has the azimuth and range values from the radar site, which can be converted to LAT/LON. From there, you can do the math to get the distance to the storm from your own location. I have written C++ console apps to do this sort of thing (similar at least). I was going to post this as an answer but it was closed before I pressed enter.
– David
Nov 8 at 12:29
Also, I can guide you on where to get this information (it's raw radar data) and how to decode it quite easily.
– David
Nov 8 at 12:31
Also, I can guide you on where to get this information (it's raw radar data) and how to decode it quite easily.
– David
Nov 8 at 12:31
Quite why the moderators think this is off topic is beyond me. It is a reasonable question, he is asking about an API, no different to someone asking the best way to do something in Java using the API's.
– Justin Phillips
Nov 8 at 15:02
Quite why the moderators think this is off topic is beyond me. It is a reasonable question, he is asking about an API, no different to someone asking the best way to do something in Java using the API's.
– Justin Phillips
Nov 8 at 15:02
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
1
Not sure on an API, but to "name" a storm would require taking advantage of the NEXRAD level 3 STI (Storm Tracking Information) product, which is updated every several minutes. As a storm cell is identified, it is assigned an ID. The STI information has the azimuth and range values from the radar site, which can be converted to LAT/LON. From there, you can do the math to get the distance to the storm from your own location. I have written C++ console apps to do this sort of thing (similar at least). I was going to post this as an answer but it was closed before I pressed enter.
– David
Nov 8 at 12:29
Also, I can guide you on where to get this information (it's raw radar data) and how to decode it quite easily.
– David
Nov 8 at 12:31
Quite why the moderators think this is off topic is beyond me. It is a reasonable question, he is asking about an API, no different to someone asking the best way to do something in Java using the API's.
– Justin Phillips
Nov 8 at 15:02