|
@@ -7,9 +7,12 @@ import com.gyee.common.util.DateUtils;
|
|
|
import com.gyee.runeconomy.dto.DataVo;
|
|
|
import com.gyee.runeconomy.dto.WindspeedVo;
|
|
|
import com.gyee.runeconomy.dto.pewpVo;
|
|
|
+import com.gyee.runeconomy.dto.speed.PowerPointData;
|
|
|
+import com.gyee.runeconomy.dto.speed.WindDirectionALG;
|
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
|
import com.gyee.runeconomy.model.auto.ProBasicPowerstation;
|
|
|
import com.gyee.runeconomy.model.auto.ProBasicPowerstationPoint;
|
|
|
+import com.gyee.runeconomy.model.auto.ProBasicWeatherStation;
|
|
|
import com.gyee.runeconomy.service.auto.IProBasicPowerstationPointService;
|
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay1Service;
|
|
|
import com.gyee.runeconomy.util.realtimesource.IEdosUtil;
|
|
@@ -36,7 +39,7 @@ public class WindresourceanalysisService {
|
|
|
|
|
|
public List<WindspeedVo> Comprehensive(String Data) throws Exception {
|
|
|
|
|
|
- List<ProBasicPowerstation> wplsf = CacheContext.wplsf;
|
|
|
+ List<ProBasicWeatherStation> wplsf = CacheContext.weawpls.stream().filter(w -> w.getWindpowerstationId().endsWith("FDC_STA")).collect(Collectors.toList());
|
|
|
|
|
|
//转换时间为Date类型
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
@@ -60,62 +63,48 @@ public class WindresourceanalysisService {
|
|
|
Date endTime = calendar1.getTime();
|
|
|
|
|
|
ProBasicPowerstationPoint pjfs = null;
|
|
|
- List<WindspeedVo> vos = new ArrayList<>();
|
|
|
- for (ProBasicPowerstation wp : wplsf) {
|
|
|
-
|
|
|
- pjfs = proBasicPowerstationPointService.getPowerstationPoint(wp.getId(), ContantXk.GCGZQD);
|
|
|
-
|
|
|
- if (pjfs != null && pjfs != null) {
|
|
|
- List<PointData> pjfsls = edosUtil.getHistoryDatasRaw(pjfs.getNemCode(), startTime.getTime() / 1000, endTime.getTime() / 1000);
|
|
|
-
|
|
|
- if (pjfsls != null && !pjfsls.isEmpty()) {
|
|
|
-
|
|
|
- List<PointData> filterls = new ArrayList<>();
|
|
|
- for (PointData po : pjfsls) {
|
|
|
- if (po.getPointValueInDouble() > 10) {
|
|
|
- filterls.add(po);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- if (!filterls.isEmpty()) {
|
|
|
-
|
|
|
- Date beginTime1 = new Date(filterls.get(0).getPointTime());
|
|
|
- Date endTime1 = new Date(filterls.get(filterls.size() - 1).getPointTime());
|
|
|
+ ProBasicPowerstationPoint pjfx = null;
|
|
|
|
|
|
- double hours = DateUtils.hoursDiff(beginTime1, endTime1);
|
|
|
+ List<WindspeedVo> vos = new ArrayList<>();
|
|
|
|
|
|
- DoubleSummaryStatistics summaryStatistics = filterls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
|
|
|
+ for (ProBasicWeatherStation wp : wplsf) {
|
|
|
+ if (wp.getId().contains("GJYF02")) continue;
|
|
|
|
|
|
- double sum = filterls.stream()
|
|
|
- .mapToDouble(PointData::getPointValueInDouble)
|
|
|
- .sum();
|
|
|
+ pjfs = proBasicPowerstationPointService.getPowerstationPoint(wp.getId(), ContantXk.FCCFTFS70);
|
|
|
+ pjfx = proBasicPowerstationPointService.getPowerstationPoint(wp.getId(), ContantXk.FCCFTFX70);
|
|
|
|
|
|
- WindspeedVo vo = new WindspeedVo();
|
|
|
- vo.setWpid(wp.getId());
|
|
|
- vo.setName(wp.getName());
|
|
|
+ List<ProBasicPowerstation> collect = CacheContext.wplsf.stream().filter(c -> c.getId().equals(wp.getWindpowerstationId())).collect(Collectors.toList());
|
|
|
|
|
|
- //日最大风速
|
|
|
- vo.setZdfs(StringUtils.round(summaryStatistics.getMax() /1000, 2));
|
|
|
-// vo.getPjfs(StringUtils.round(summaryStatistics.getAverage()));
|
|
|
+ WindspeedVo vo = new WindspeedVo();
|
|
|
|
|
|
- vos.add(vo);
|
|
|
- //日最小风速
|
|
|
-// pewp.setRzxfs(StringUtils.round(summaryStatistics.getMin(), 2));
|
|
|
+ if (pjfs.getNemCode() != null && !pjfs.getNemCode().equals("INITIAL")) {
|
|
|
|
|
|
- double avg = StringUtils.round(summaryStatistics.getAverage(), 2);
|
|
|
+ List<PointData> maxs = edosUtil.getHistStat(pjfs, startTime.getTime() / 1000, endTime.getTime() / 1000, (long) 1, null, 0);
|
|
|
+ List<PointData> mins = edosUtil.getHistStat(pjfs, startTime.getTime() / 1000, endTime.getTime() / 1000, (long) 1, null, 1);
|
|
|
+ List<PointData> ave = edosUtil.getHistStat(pjfs, startTime.getTime() / 1000, endTime.getTime() / 1000, (long) 1, null, 2);
|
|
|
|
|
|
- double result = new BigDecimal(avg * hours).divide(new BigDecimal(1000), 2, RoundingMode.HALF_EVEN).doubleValue();
|
|
|
-// vo.setZfzd(StringUtils.round(result,2));
|
|
|
+ double avenum = ave.get(0).getPointValueInDouble();
|
|
|
+ double maxsnum = maxs.get(0).getPointValueInDouble();
|
|
|
+ double minsnum = mins.get(0).getPointValueInDouble();
|
|
|
|
|
|
- //日平均风速
|
|
|
-// pewp.setRpjfs(result);
|
|
|
+ vo.setWpid(wp.getWindpowerstationId());
|
|
|
+ vo.setName(collect.get(0).getName());
|
|
|
+ vo.setPjfs(StringUtils.round(avenum, 2));
|
|
|
+ vo.setZdfs(StringUtils.round(maxsnum, 2));
|
|
|
+ vo.setZxfs(StringUtils.round(minsnum, 2));
|
|
|
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
+ if (pjfx.getNemCode() != null && !pjfs.getNemCode().equals("INITIAL")) {
|
|
|
+ List<PointData> maxs = edosUtil.getHistStat(pjfx, startTime.getTime() / 1000, endTime.getTime() / 1000, (long) 1, null, 0);
|
|
|
+ List<PointData> mins = edosUtil.getHistStat(pjfx, startTime.getTime() / 1000, endTime.getTime() / 1000, (long) 1, null, 1);
|
|
|
+ List<PointData> ave = edosUtil.getHistStat(pjfx, startTime.getTime() / 1000, endTime.getTime() / 1000, (long) 1, null, 2);
|
|
|
|
|
|
- }
|
|
|
+ double avefx = ave.get(0).getPointValueInDouble();
|
|
|
+ vo.setPjfx(StringUtils.round(avefx, 2));
|
|
|
+ vos.add(vo);
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
return vos;
|
|
@@ -166,7 +155,7 @@ public class WindresourceanalysisService {
|
|
|
|
|
|
pjfs = proBasicPowerstationPointService.getPowerstationPoint(wp.getId(), ContantXk.GCGZQD);
|
|
|
|
|
|
- if (pjfs != null && pjfs != null) {
|
|
|
+ if (pjfs != null) {
|
|
|
List<PointData> pjfsls = edosUtil.getHistoryDatasRaw(pjfs.getNemCode(), startTime.getTime() / 1000, endTime.getTime() / 1000);
|
|
|
|
|
|
if (pjfsls != null && !pjfsls.isEmpty()) {
|
|
@@ -179,43 +168,43 @@ public class WindresourceanalysisService {
|
|
|
}
|
|
|
|
|
|
|
|
|
- if (!filterls.isEmpty()) {
|
|
|
+ if (!filterls.isEmpty()) {
|
|
|
|
|
|
- Date beginTime1 = new Date(filterls.get(0).getPointTime());
|
|
|
- Date endTime1 = new Date(filterls.get(filterls.size() - 1).getPointTime());
|
|
|
+ Date beginTime1 = new Date(filterls.get(0).getPointTime());
|
|
|
+ Date endTime1 = new Date(filterls.get(filterls.size() - 1).getPointTime());
|
|
|
|
|
|
- double hours = DateUtils.hoursDiff(beginTime1, endTime1);
|
|
|
+ double hours = DateUtils.hoursDiff(beginTime1, endTime1);
|
|
|
|
|
|
- DoubleSummaryStatistics summaryStatistics = filterls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
|
|
|
+ DoubleSummaryStatistics summaryStatistics = filterls.stream().mapToDouble(PointData::getPointValueInDouble).summaryStatistics();
|
|
|
|
|
|
- double sum = filterls.stream()
|
|
|
- .mapToDouble(PointData::getPointValueInDouble)
|
|
|
- .sum();
|
|
|
- pewpVo vo = new pewpVo();
|
|
|
- vo.setWpid(wp.getId());
|
|
|
- vo.setName(wp.getName());
|
|
|
+ double sum = filterls.stream()
|
|
|
+ .mapToDouble(PointData::getPointValueInDouble)
|
|
|
+ .sum();
|
|
|
+ pewpVo vo = new pewpVo();
|
|
|
+ vo.setWpid(wp.getId());
|
|
|
+ vo.setName(wp.getName());
|
|
|
|
|
|
- //日最大辐照度
|
|
|
- vo.setZdfdz(StringUtils.round(summaryStatistics.getMax() /1000, 2));
|
|
|
- vo.setRcsj(beginTime1);
|
|
|
- vo.setRlsj(endTime1);
|
|
|
- vo.setCxsj(hours);
|
|
|
- vos.add(vo);
|
|
|
- //日最小风速
|
|
|
+ //日最大辐照度
|
|
|
+ vo.setZdfdz(StringUtils.round(summaryStatistics.getMax() / 1000, 2));
|
|
|
+ vo.setRcsj(beginTime1);
|
|
|
+ vo.setRlsj(endTime1);
|
|
|
+ vo.setCxsj(hours);
|
|
|
+ vos.add(vo);
|
|
|
+ //日最小风速
|
|
|
// pewp.setRzxfs(StringUtils.round(summaryStatistics.getMin(), 2));
|
|
|
|
|
|
- double avg = StringUtils.round(summaryStatistics.getAverage(), 2);
|
|
|
+ double avg = StringUtils.round(summaryStatistics.getAverage(), 2);
|
|
|
|
|
|
- double result = new BigDecimal(avg * hours).divide(new BigDecimal(1000), 2, RoundingMode.HALF_EVEN).doubleValue();
|
|
|
- vo.setZfzd(StringUtils.round(result,2));
|
|
|
+ double result = new BigDecimal(avg * hours).divide(new BigDecimal(1000), 2, RoundingMode.HALF_EVEN).doubleValue();
|
|
|
+ vo.setZfzd(StringUtils.round(result, 2));
|
|
|
|
|
|
- //日平均风速
|
|
|
+ //日平均风速
|
|
|
// pewp.setRpjfs(result);
|
|
|
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -223,7 +212,7 @@ public class WindresourceanalysisService {
|
|
|
}
|
|
|
|
|
|
|
|
|
- public List<DataVo> GroupRealtimevalue(String Data) throws Exception {
|
|
|
+ public List<DataVo> GroupRealtimevalue(String wpid, String Data) throws Exception {
|
|
|
|
|
|
List<DataVo> vos = new ArrayList<DataVo>();
|
|
|
|
|
@@ -240,28 +229,272 @@ public class WindresourceanalysisService {
|
|
|
|
|
|
Date startTime = calendar.getTime();
|
|
|
|
|
|
+// Calendar calendar1 = Calendar.getInstance();
|
|
|
+// calendar1.setTime(date);
|
|
|
+// calendar1.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+// calendar1.set(Calendar.MINUTE, 59);
|
|
|
+// calendar1.set(Calendar.SECOND, 59);
|
|
|
+//
|
|
|
+// Date endTime = calendar1.getTime();
|
|
|
Calendar calendar1 = Calendar.getInstance();
|
|
|
calendar1.setTime(date);
|
|
|
- calendar1.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
- calendar1.set(Calendar.MINUTE, 59);
|
|
|
- calendar1.set(Calendar.SECOND, 59);
|
|
|
|
|
|
+ // 获取当前日期
|
|
|
+ Calendar today = Calendar.getInstance();
|
|
|
+ today.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
+ today.set(Calendar.MINUTE, 0);
|
|
|
+ today.set(Calendar.SECOND, 0);
|
|
|
+
|
|
|
+ // 判断是否是当天
|
|
|
+ if (calendar1.get(Calendar.YEAR) == today.get(Calendar.YEAR) &&
|
|
|
+ calendar1.get(Calendar.DAY_OF_YEAR) == today.get(Calendar.DAY_OF_YEAR)) {
|
|
|
+ // 当天,设置endTime为当前时间
|
|
|
+ Date now = new Date();
|
|
|
+ calendar1.setTime(now);
|
|
|
+ } else {
|
|
|
+ // 非当天,设置endTime为传入的date的23:59:59
|
|
|
+ calendar1.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar1.set(Calendar.MINUTE, 59);
|
|
|
+ calendar1.set(Calendar.SECOND, 59);
|
|
|
+ }
|
|
|
Date endTime = calendar1.getTime();
|
|
|
ProBasicPowerstationPoint gzzs = null;
|
|
|
- List<ProBasicPowerstation> wplsG = CacheContext.wplsG.stream().filter(c->c.getOrderNum().equals(15)).collect(Collectors.toList());
|
|
|
- gzzs = proBasicPowerstationPointService.getPowerstationPoint(wplsG.get(0).getId(), ContantXk.GCGZQD);
|
|
|
+// List<ProBasicPowerstation> wplsG = CacheContext.wplsG.stream().filter(c->c.getOrderNum().equals(15)).collect(Collectors.toList());
|
|
|
+ gzzs = proBasicPowerstationPointService.getPowerstationPoint(wpid, ContantXk.GCGZQD);
|
|
|
+
|
|
|
+
|
|
|
+ List<PointData> gzzsls = edosUtil.getHistoryDatasRaw(gzzs.getNemCode(), startTime.getTime() / 1000, endTime.getTime() / 1000);
|
|
|
+ double temp6 = 0;
|
|
|
+ for (int i = 0; i < gzzsls.size(); i++) {
|
|
|
+ DataVo vo = new DataVo();
|
|
|
+ temp6 = gzzsls.get(i).getPointValueInDouble();
|
|
|
+ vo.setValue6(com.gyee.runeconomy.util.StringUtils.round(temp6, 2));
|
|
|
+ vo.setTime(gzzsls.get(i).getPointTime());
|
|
|
+ vos.add(vo);
|
|
|
+ }
|
|
|
|
|
|
+ return vos;
|
|
|
+ }
|
|
|
|
|
|
- List<PointData> gzzsls = edosUtil.getHistoryDatasRaw(gzzs.getNemCode(), startTime.getTime() / 1000, endTime.getTime() / 1000);
|
|
|
- double temp6 = 0;
|
|
|
- for (int i = 0; i < gzzsls.size(); i++) {
|
|
|
- DataVo vo = new DataVo();
|
|
|
- temp6 = gzzsls.get(i).getPointValueInDouble();
|
|
|
- vo.setValue6(com.gyee.runeconomy.util.StringUtils.round(temp6, 2));
|
|
|
- vo.setTime(gzzsls.get(i).getPointTime());
|
|
|
- vos.add(vo);
|
|
|
- }
|
|
|
+ public List<DataVo> fdGroupRealtimevalue(String wpid, String Data) throws Exception {
|
|
|
+
|
|
|
+ List<DataVo> vos = new ArrayList<DataVo>();
|
|
|
+
|
|
|
+ //转换时间为Date类型
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+ Date date = sdf.parse(Data);
|
|
|
+
|
|
|
+ Calendar calendar = Calendar.getInstance();
|
|
|
+ calendar.setTime(date);
|
|
|
+ calendar.add(Calendar.DAY_OF_MONTH, -1);
|
|
|
+ calendar.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar.set(Calendar.MINUTE, 59);
|
|
|
+ calendar.set(Calendar.SECOND, 59);
|
|
|
+
|
|
|
+ Date startTime = calendar.getTime();
|
|
|
+
|
|
|
+// Calendar calendar1 = Calendar.getInstance();
|
|
|
+// calendar1.setTime(date);
|
|
|
+// calendar1.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+// calendar1.set(Calendar.MINUTE, 59);
|
|
|
+// calendar1.set(Calendar.SECOND, 59);
|
|
|
+//
|
|
|
+// Date endTime = calendar1.getTime();
|
|
|
+
|
|
|
+ Calendar calendar1 = Calendar.getInstance();
|
|
|
+ calendar1.setTime(date);
|
|
|
+
|
|
|
+ // 获取当前日期
|
|
|
+ Calendar today = Calendar.getInstance();
|
|
|
+ today.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
+ today.set(Calendar.MINUTE, 0);
|
|
|
+ today.set(Calendar.SECOND, 0);
|
|
|
+
|
|
|
+ // 判断是否是当天
|
|
|
+ if (calendar1.get(Calendar.YEAR) == today.get(Calendar.YEAR) &&
|
|
|
+ calendar1.get(Calendar.DAY_OF_YEAR) == today.get(Calendar.DAY_OF_YEAR)) {
|
|
|
+ // 当天,设置endTime为当前时间
|
|
|
+ Date now = new Date();
|
|
|
+ calendar1.setTime(now);
|
|
|
+ } else {
|
|
|
+ // 非当天,设置endTime为传入的date的23:59:59
|
|
|
+ calendar1.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar1.set(Calendar.MINUTE, 59);
|
|
|
+ calendar1.set(Calendar.SECOND, 59);
|
|
|
+ }
|
|
|
+ Date endTime = calendar1.getTime();
|
|
|
+
|
|
|
+
|
|
|
+ ProBasicPowerstationPoint gzzs = null;
|
|
|
+ List<ProBasicWeatherStation> wplsf = null;
|
|
|
+ if (wpid.contains("GJY_FDC")) {
|
|
|
+ wplsf = CacheContext.weawpls.stream().filter(w -> w.getWindpowerstationId().equals(wpid) && w.getId().contains("GJYF01")).collect(Collectors.toList());
|
|
|
+ } else {
|
|
|
+ wplsf = CacheContext.weawpls.stream().filter(w -> w.getWindpowerstationId().equals(wpid)).collect(Collectors.toList());
|
|
|
+ }
|
|
|
+
|
|
|
+ gzzs = proBasicPowerstationPointService.getPowerstationPoint(wplsf.get(0).getId(), ContantXk.FCCFTFS70);
|
|
|
+
|
|
|
+
|
|
|
+// List<PointData> gzzsls = edosUtil.getHistoryDatasRaw(gzzs.getNemCode(), startTime.getTime() / 1000, endTime.getTime() / 1000);
|
|
|
+ List<PointData> gzzsls = edosUtil.getHistoryDatasSnap(gzzs, startTime.getTime() / 1000, endTime.getTime() / 1000, null, 900L);
|
|
|
+
|
|
|
+ double temp6 = 0;
|
|
|
+ for (int i = 0; i < gzzsls.size(); i++) {
|
|
|
+ DataVo vo = new DataVo();
|
|
|
+ temp6 = gzzsls.get(i).getPointValueInDouble();
|
|
|
+ vo.setValue6(StringUtils.round(temp6, 2));
|
|
|
+ vo.setTime(gzzsls.get(i).getPointTime());
|
|
|
+ vos.add(vo);
|
|
|
+ }
|
|
|
|
|
|
return vos;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 风向玫瑰图\风向频率玫瑰图
|
|
|
+ *
|
|
|
+ * @param wpid 预处理数据的id
|
|
|
+ * @param mode 0:单台风机 1:多台风机合并
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Object fxRoses(String wpid, int mode, String Data) throws Exception {
|
|
|
+
|
|
|
+ List<ProBasicWeatherStation> wplsf = CacheContext.weawpls.stream().filter(w -> w.getWindpowerstationId().equals(wpid)).collect(Collectors.toList());
|
|
|
+
|
|
|
+ //转换时间为Date类型
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+ Date date = sdf.parse(Data);
|
|
|
+
|
|
|
+ Calendar calendar = Calendar.getInstance();
|
|
|
+ calendar.setTime(date);
|
|
|
+ calendar.add(Calendar.DAY_OF_MONTH, -1);
|
|
|
+ calendar.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar.set(Calendar.MINUTE, 59);
|
|
|
+ calendar.set(Calendar.SECOND, 59);
|
|
|
+
|
|
|
+ Date startTime = calendar.getTime();
|
|
|
+
|
|
|
+ Calendar calendar1 = Calendar.getInstance();
|
|
|
+ calendar1.setTime(date);
|
|
|
+
|
|
|
+ // 获取当前日期
|
|
|
+ Calendar today = Calendar.getInstance();
|
|
|
+ today.set(Calendar.HOUR_OF_DAY, 0);
|
|
|
+ today.set(Calendar.MINUTE, 0);
|
|
|
+ today.set(Calendar.SECOND, 0);
|
|
|
+
|
|
|
+ // 判断是否是当天
|
|
|
+ if (calendar1.get(Calendar.YEAR) == today.get(Calendar.YEAR) &&
|
|
|
+ calendar1.get(Calendar.DAY_OF_YEAR) == today.get(Calendar.DAY_OF_YEAR)) {
|
|
|
+ // 当天,设置endTime为当前时间
|
|
|
+ Date now = new Date();
|
|
|
+ calendar1.setTime(now);
|
|
|
+ } else {
|
|
|
+ // 非当天,设置endTime为传入的date的23:59:59
|
|
|
+ calendar1.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ calendar1.set(Calendar.MINUTE, 59);
|
|
|
+ calendar1.set(Calendar.SECOND, 59);
|
|
|
+ }
|
|
|
+ Date endTime = calendar1.getTime();
|
|
|
+
|
|
|
+ ProBasicPowerstationPoint pjfs = null;
|
|
|
+ ProBasicPowerstationPoint pjfx = null;
|
|
|
+
|
|
|
+ List<WindspeedVo> vos = new ArrayList<>();
|
|
|
+
|
|
|
+ for (ProBasicWeatherStation ww : wplsf) {
|
|
|
+ if (ww.getId().contains("GJYF02")) continue;
|
|
|
+
|
|
|
+ pjfs = proBasicPowerstationPointService.getPowerstationPoint(ww.getId(), ContantXk.FCCFTFS70);
|
|
|
+ pjfx = proBasicPowerstationPointService.getPowerstationPoint(ww.getId(), ContantXk.FCCFTFX70);
|
|
|
+
|
|
|
+ List<ProBasicPowerstation> collect = CacheContext.wplsf.stream().filter(c -> c.getId().equals(ww.getWindpowerstationId())).collect(Collectors.toList());
|
|
|
+
|
|
|
+ if (pjfs.getNemCode() != null && !pjfs.getNemCode().equals("INITIAL")) {
|
|
|
+
|
|
|
+ List<PointData> pjfsls = edosUtil.getHistoryDatasSnap(pjfs, startTime.getTime() / 1000, endTime.getTime() / 1000, null, 900L);
|
|
|
+ List<PointData> pjfxls = edosUtil.getHistoryDatasSnap(pjfx, startTime.getTime() / 1000, endTime.getTime() / 1000, null, 900L);
|
|
|
+
|
|
|
+ double temp1 = 0;
|
|
|
+ for (int i = 0; i < pjfsls.size(); i++) {
|
|
|
+ WindspeedVo vo = new WindspeedVo();
|
|
|
+ temp1 = pjfsls.get(i).getPointValueInDouble();
|
|
|
+ vo.setWpid(ww.getId());
|
|
|
+ vo.setHours(pjfsls.get(i).getPointTime());
|
|
|
+ vo.setPjfs(temp1);
|
|
|
+ vos.add(vo);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (pjfxls != null && pjfxls.size() > 1) {
|
|
|
+ vos.stream().forEach(i -> {
|
|
|
+ Optional<PointData> optional = pjfxls.stream()
|
|
|
+ .filter(j -> j.getPointTime().equals(i.getHours()))
|
|
|
+ .findFirst();
|
|
|
+ if (optional.isPresent()) {
|
|
|
+ PointData tqinfoday = optional.get();
|
|
|
+ i.setPjfx(tqinfoday.getPointValueInDouble());
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ List<Object> result = new ArrayList<>();
|
|
|
+ if (mode == 0){
|
|
|
+
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ List<PowerPointData> ls = new ArrayList<>();
|
|
|
+ for (WindspeedVo v : vos) {
|
|
|
+ PowerPointData data = new PowerPointData();
|
|
|
+ data.setFx(v.getPjfx());
|
|
|
+ data.setSpeed(v.getPjfs());
|
|
|
+ ls.add(data);
|
|
|
+ }
|
|
|
+ map.put("wt", wpid);
|
|
|
+ map.put("roses", WindDirectionALG.fxRoses(ls));
|
|
|
+ map.put("count", WindDirectionALG.fxCountRoses(ls));
|
|
|
+// map.put("radar", WindDirectionALG.fxRadarRoses(ls));
|
|
|
+// map.put("frequency", WindDirectionALG.windDeviationPoint(ls));
|
|
|
+ result.add(map);
|
|
|
+
|
|
|
+ }
|
|
|
+ if (mode == 1){
|
|
|
+ List<PowerPointData> ls = new ArrayList<>();
|
|
|
+ for (WindspeedVo obj : vos)
|
|
|
+ ls.addAll(csvParse(obj));
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("wt", "merge");
|
|
|
+ map.put("roses", WindDirectionALG.fxRoses(ls));
|
|
|
+ map.put("count", WindDirectionALG.fxCountRoses(ls));
|
|
|
+// map.put("radar", WindDirectionALG.fxRadarRoses(ls));
|
|
|
+// map.put("frequency", WindDirectionALG.windDeviationPoint(ls));
|
|
|
+ result.add(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * csv 文件解析成对象
|
|
|
+ * @param obj
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<PowerPointData> csvParse(WindspeedVo obj){
|
|
|
+ List<PowerPointData> ls = new ArrayList<>();
|
|
|
+// List<String> content = FileUtil.readFile(obj.getPath(), true);
|
|
|
+// for (int i = 1; i < content.size(); i++){
|
|
|
+// String[] split = content.get(i).split(",");
|
|
|
+ PowerPointData data = new PowerPointData();
|
|
|
+// if (data.getSpeed() < 0 || data.getPower() < 0)
|
|
|
+// continue;
|
|
|
+ data.setWtId(obj.getWpid());
|
|
|
+ data.setFx(obj.getPjfx());
|
|
|
+ data.setSpeed(obj.getPjfs());
|
|
|
+ ls.add(data);
|
|
|
+// }
|
|
|
+ return ls;
|
|
|
+ }
|
|
|
}
|