Program.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using Azylee.Core.DataUtils.DateTimeUtils;
  2. using Azylee.Core.IOUtils.ImageUtils;
  3. using Azylee.YeahWeb.BaiDuWebAPI.GPSAPI;
  4. using Azylee.YeahWeb.TencentWebAPI.PictureAI;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace Test.YeahWeb
  11. {
  12. class Program
  13. {
  14. static void Main(string[] args)
  15. {
  16. PictureScener.GetInfo(1107006764,(int)TimeStampTool.Get(), "fa577ce340859f9fe",);
  17. //if (GPSConverter.DeviceGPSToBaiduGPS("iAe652kYOgleRHUYQkW1E8MIHEptnMb5", 120.379235583333, 36.19172925, out double x, out double y))
  18. //{
  19. // Console.WriteLine($"120.379235583333 - 36.19172925");
  20. // Console.WriteLine($"{x} - {y}");
  21. //}
  22. //GPSInfoWebModel model = GPSInfoTool.GetInfo("iAe652kYOgleRHUYQkW1E8MIHEptnMb5", 40.039669, 252.129464);
  23. //if (model != null)
  24. //{
  25. // GPSInfoModel info = model.ToGPSInfoModel();
  26. // Console.WriteLine(info);
  27. //}
  28. Console.ReadLine();
  29. }
  30. }
  31. }