Constants.cs 1.2KB

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WebApplication3.Clases
  6. {
  7. public static class Constants
  8. {
  9. //public const string PathZip = @"C:\Users\Admin\Desktop\";
  10. public const string PathZip = @"C:\Users\Admin\Documents\modflow_models\";
  11. //public const string PathExtract = @"C:\Users\Admin\Desktop\TestExtract\";
  12. public const string PathExtract = @"C:\Users\Admin\Documents\modflow_models\temp\";
  13. public const string PathModflow = @"C:\Users\Admin\Downloads\MF2005.1_12\MF2005.1_12\bin\mf2005.exe";
  14. public static readonly Dictionary<string, string> _recharge_geometry_colors = new()
  15. {
  16. { "1", "#003366" },
  17. { "2", "#996699" },
  18. { "3", "#CCFF33" },
  19. { "4", "#00FF99" },
  20. { "5", "#CC0000" },
  21. { "6", "#FF6600" },
  22. { "7", "#660099" },
  23. { "8", "#266A2E" }
  24. };
  25. public const string SVGFileName = "vector_image.svg";
  26. public const string PNGFileName = "color_map.png";
  27. public const string GeoJsonFileName = "vector_image.geojson";
  28. }
  29. }