12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
-
- namespace WebApplication3.Clases
- {
- public static class Constants
- {
- //public const string PathZip = @"C:\Users\Admin\Desktop\";
- public const string PathZip = @"C:\Users\Admin\Documents\modflow_models\";
- //public const string PathExtract = @"C:\Users\Admin\Desktop\TestExtract\";
- public const string PathExtract = @"C:\Users\Admin\Documents\modflow_models\temp\";
- public const string PathModflow = @"C:\Users\Admin\Downloads\MF2005.1_12\MF2005.1_12\bin\mf2005.exe";
- public static readonly Dictionary<string, string> _recharge_geometry_colors = new()
- {
- { "1", "#003366" },
- { "2", "#996699" },
- { "3", "#CCFF33" },
- { "4", "#00FF99" },
- { "5", "#CC0000" },
- { "6", "#FF6600" },
- { "7", "#660099" },
- { "8", "#266A2E" }
- };
- public const string SVGFileName = "vector_image.svg";
- public const string PNGFileName = "color_map.png";
- public const string GeoJsonFileName = "vector_image.geojson";
- }
- }
|