hadoop入门学习 mapreduce求解 天气数据 2002年整年数据的最高气温
2022-06-12 11:40:55 186.9MB hadoop
1
资源包含文件:开发设计报告word+项目源码 天气应用的开发,这个是一个比较重要的项目尝试,目的是将之前整理过的东西再好好串接起来。首先先找到一个合适的 API 接口,通过资料查询,有一个蛮好的推荐——和风天气。 详细介绍参考:https://biyezuopin.blog.csdn.net/article/details/122926703?spm=1001.2014.3001.5502
2022-06-11 14:04:14 11.06MB Java 天气预报 天气APP 和风天气
MeteoNook Alpha 创建的“动物穿越:新视野”天气预报工具。 这是对原始概念验证工具的完全重写,现在将Vue.js与BootstrapVue结合使用,并使用Rust编写内核。 官方版本可在以下获得: : 这里的文档和代码(除非另有说明)是(c)2020 Ash Wolf(“ Ninji”),可根据LICENSE文件中的GNU Affero通用公共许可证3.0获得。 特别感谢以下贡献者: v1的测试和建议:Ahri,Alexis,andrewtabs,astro,capstone,ctar17,Denna,GoldenCrater,rainbowannie,robotic_scarab 西班牙语翻译校对: 意大利语翻译:索德加 法语翻译: 德语翻译: 德语(CH)翻译: 中文(简体)翻译: 中文(繁体)翻译: 台湾翻译:陈慧琳 日语翻译: ,
2022-06-10 21:55:18 2.47MB Vue
1
多方渠道,整理了大神的作品,包括去雾,定位,字符分割识别
2022-06-10 14:06:23 14.37MB 源代码
1
SwiftWeather--简洁的Swift天气应用
2022-06-09 10:49:13 33.39MB Swift开发-完整项目
1
爬取天气
2022-06-08 15:53:51 910B
1
天气查询APP,两种JSON解析方式 /** * 原始json数据解析 * */ // JSONObject jsonObject = new JSONObject(res); // String reason=jsonObject.getString("reason"); // if (reason.equals("参数不正确")){ // handler.sendEmptyMessage(1); // return; // } // JSONObject result=jsonObject.getJSONObject("result"); // JSONObject realtime=result.getJSONObject("realtime"); // JSONObject life=result.getJSONObject("life"); // JSONObject wind=realtime.getJSONObject("wind"); // String time=realtime.getString("time"); // JSONObject weather=realtime.getJSONObject("weather"); // String date=realtime.getString("date"); // dateStr=time+date; // weekStr=realtime.getString("week"); // calendarStr=realtime.getString("moon"); // windpowerStr=wind.getString("direct")+" "+wind.getString("power"); // weatherStr=weather.getString("info"); // temperatureStr=weather.getString("temperature"); // JSONObject info=life.getJSONObject("info"); // JSONArray kongtiao=info.getJSONArray("kongtiao"); // JSONArray yundong=info.getJSONArray("yundong"); // JSONArray ziwaixian=info.getJSONArray("ziwaixian"); // ACStr=kongtiao.getString(0)+" "+kongtiao.getString(1); // sportStr=yundong.getString(0)+" "+yundong.getString(1); // lightStr=ziwaixian.getString(0)+" "+ziwaixian.getString(1); /** * Gson数据解析 */ WheatherBean wheatherBean=new Gson().fromJson(res,WheatherBean.class); String reason=wheatherBean.getReason(); if (reason.equals("参数不正确")){ handler.sendEmptyMessage(1); return; } WheatherBean.ResultBean resultBean=wheatherBean.getResult(); WheatherBean.ResultBean.RealtimeBean realtimeBean=resultBean.getRealtime(); WheatherBean.ResultBean.RealtimeBean.WindBean windBean=realtimeBean.getWind(); String time=realtimeBean.getTime(); WheatherBean.ResultBean.RealtimeBean.WeatherBean weatherBean=realtimeBean.getWeather(); String date=realtimeBean.getDate(); dateStr=time+date; weekStr=realtimeBean.getWeek(); calendarStr=realtimeBean.getMoon(); windpowerStr=windBean.getDirect()+" "+windBean.getPower(); temperatureStr=weatherBean.getTemperature(); weatherStr=weatherBean.getInfo(); WheatherBean.ResultBean.LifeBean lifeBean=resultBean.getLife(); WheatherBean.ResultBean.LifeBean.InfoBean infoBean=lifeBean.getInfo(); List kongtiao=infoBean.getKongtiao(); List yundong=infoBean.getYundong(); List ziwaixian=infoBean.getZiwaixian(); ACStr=kongtiao.get(0)+" "+kongtiao.get(1); sportStr=yundong.get(0)+" "+yundong.get(1); lightStr=ziwaixian.get(0)+" "+ziwaixian.get(1); }
2022-06-08 14:51:52 28.85MB Json
1
本项目是一个简单的天气获取的小例子源码,使用php.weather.sina.com.cn的天气数据接口和百度地图提供的定位服务。会自动定位到当前城市然后获取前后三天范围的天气数据,代码有注释。之前也介绍过很多关于天气项目的源码,感兴趣的朋友可以在网站首页右侧分类里面找下
2022-06-07 20:14:11 902KB 天气预报
1
Java写的天气预报软件
2022-06-07 14:01:51 89KB java 源码软件 开发语言
本程序实现了获取当前位置,通过定位信息去查询天气信息,也可以输入城市,或者从全国的城市中选择城市来查询天气信息,可以查询未来7天的天气预报!
2022-06-07 11:43:33 1.57MB 天气预报 定位 天气
1