自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (2)
  • 收藏
  • 关注

原创 构建tree

集合构建tree

2022-08-29 15:24:40 147 1

原创 springboot集成redisMessage

工具、版本开发工具:IntelliJ IDEAJDK:1.8spring-boot:2.5.6(事例使用,可根据自己版本调整)maven:3.6.3依赖jar <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </d

2022-03-17 14:50:27 5932

原创 spring boot集成quartz scheduler

工具、版本开发工具:IntelliJ IDEAJDK:1.8spring-boot:2.5.6(事例使用,可根据自己版本调整)maven:3.6.3依赖jar <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </d

2021-11-27 13:49:40 9840

原创 spring-boot集成webSocket

工具、版本开发工具:IntelliJ IDEAJDK:1.8spring-boot:2.6.0(事例使用,可根据自己版本调整)maven:3.6.3依赖jar <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId>

2021-11-26 17:27:55 6922

原创 spring-boot集MQTT服务

spring-boot集MQTT服务工具、版本开发工具:IntelliJ IDEAJDK:1.8spring-boot:2.6.0(事例使用,可根据自己版本调整)maven:3.6.3依赖jar<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId>

2021-11-26 16:12:23 297

地图坐标转化(gps - 火星 - 百度).rar

package com.map; public class GPSConverterUtils { public static final String BAIDU_LBS_TYPE = "bd09ll"; public static double pi = 3.1415926535897932384626; public static double a = 6378245.0; public static double ee = 0.00669342162296594323; /** * 84 to 火星坐标系 (GCJ-02) World Geodetic System ==> Mars Geodetic System * 天地图 转 火星 * @param lat * @param lon */ public static GPS gps84_To_Gcj02(double lat, double lon) { if (outOfChina(lat, lon)) { return null; } double dLat = transformLat(lon - 105.0, lat - 35.0); double dLon = transformLon(lon - 105.0, lat - 35.0); double radLat = lat / 180.0 * pi; double magic = Math.sin(radLat); magic = 1 - ee * magic * magic; double sqrtMagic = Math.sqrt(magic); dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * pi); dLon = (dLon * 180.0) / (a / sqrtMagic * Math.cos(radLat) * pi); double mgLat = lat + dLat; double mgLon = lon + dLon; return new GPS(mgLat, mgLon); } /** * * 火星坐标系 (GCJ-02) to 84 * * @param lon * @param lat * @return *火星转天地图 */ public static GPS gcj_To_Gps84(double lat, double lon) { GPS gps = transform(lat, lon); double lontitude = lon * 2 - gps.getLon(); double latitude = lat * 2 - gps.getLat(); return new GPS(latitude, lontitude); } /** * 火星坐标系 (GCJ-02) 与百度坐标系 (BD-09) 的转换算法 将 GCJ-02 坐标转换成 BD-09 坐标 *火星转百度 * @param gg_lat * @param gg_lon */ public static GPS gcj02_To_Bd09(double gg_lat, double gg_lon) { double x = gg_lon, y = gg_lat; double z = Math.sqrt(x * x + y * y) + 0.00002 * Math.sin(y * pi); double theta = Math.atan2(y, x) + 0.000003 * Math.cos(x * pi); double bd_lon = z * Math.cos(theta) + 0.0065; double bd_lat = z * Math.sin(theta) + 0.006;

2020-03-05

apache-tomcat-8.5.12.tar

apache-tomcat-8.5.12.tar 开发工具,maven必备利器

2019-09-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除