1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060
|
/******************************************************************************
*
* Project: ILWIS Driver
* Purpose: GDALDataset driver for ILWIS translator for read/write support.
* Author: Lichun Wang, lichun@itc.nl
*
******************************************************************************
* Copyright (c) 2004, ITC
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "ilwisdataset.h"
#include <float.h>
#include <limits.h>
#include <string>
using namespace std;
// IniFile.cpp: implementation of the IniFile class.
//
//////////////////////////////////////////////////////////////////////
bool CompareAsNum::operator() (const string& s1, const string& s2) const
{
long Num1 = atoi(s1.c_str());
long Num2 = atoi(s2.c_str());
return Num1 < Num2;
}
static string TrimSpaces(const string& input)
{
// find first non space
if ( input.empty())
return string();
size_t iFirstNonSpace = input.find_first_not_of(' ');
size_t iFindLastSpace = input.find_last_not_of(' ');
if (iFirstNonSpace == string::npos || iFindLastSpace == string::npos)
return string();
return input.substr(iFirstNonSpace, iFindLastSpace - iFirstNonSpace + 1);
}
static string GetLine(VSILFILE* fil)
{
const char *p = CPLReadLineL( fil );
if (p == NULL)
return string();
CPLString osWrk = p;
osWrk.Trim();
return string(osWrk);
}
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
IniFile::IniFile(const string& filenam)
{
filename = filenam;
Load();
bChanged = false; // Start tracking changes
}
IniFile::~IniFile()
{
if (bChanged)
{
Store();
bChanged = false;
}
for (Sections::iterator iter = sections.begin(); iter != sections.end(); ++iter)
{
(*(*iter).second).clear();
delete (*iter).second;
}
sections.clear();
}
void IniFile::SetKeyValue(const string& section, const string& key, const string& value)
{
Sections::iterator iterSect = sections.find(section);
if (iterSect == sections.end())
{
// Add a new section, with one new key/value entry
SectionEntries *entries = new SectionEntries;
(*entries)[key] = value;
sections[section] = entries;
}
else
{
// Add one new key/value entry in an existing section
SectionEntries *entries = (*iterSect).second;
(*entries)[key] = value;
}
bChanged = true;
}
string IniFile::GetKeyValue(const string& section, const string& key)
{
Sections::iterator iterSect = sections.find(section);
if (iterSect != sections.end())
{
SectionEntries *entries = (*iterSect).second;
SectionEntries::iterator iterEntry = (*entries).find(key);
if (iterEntry != (*entries).end())
return (*iterEntry).second;
}
return string();
}
void IniFile::RemoveKeyValue(const string& section, const string& key)
{
Sections::iterator iterSect = sections.find(section);
if (iterSect != sections.end())
{
// The section exists, now erase entry "key"
SectionEntries *entries = (*iterSect).second;
(*entries).erase(key);
bChanged = true;
}
}
void IniFile::RemoveSection(const string& section)
{
Sections::iterator iterSect = sections.find(section);
if (iterSect != sections.end())
{
// The section exists, so remove it and all its entries.
SectionEntries *entries = (*iterSect).second;
(*entries).clear();
sections.erase(iterSect);
bChanged = true;
}
}
void IniFile::Load()
{
enum ParseState { FindSection, FindKey, ReadFindKey, StoreKey, None } state;
VSILFILE *filIni = VSIFOpenL(filename.c_str(), "r");
if (filIni == NULL)
return;
string section, key, value;
state = FindSection;
string s;
while (!VSIFEofL(filIni) || !s.empty() )
{
switch (state)
{
case FindSection:
s = GetLine(filIni);
if (s.empty())
continue;
if (s[0] == '[')
{
size_t iLast = s.find_first_of(']');
if (iLast != string::npos)
{
section = s.substr(1, iLast - 1);
state = ReadFindKey;
}
}
else
state = FindKey;
break;
case ReadFindKey:
s = GetLine(filIni); // fall through (no break)
case FindKey:
{
size_t iEqu = s.find_first_of('=');
if (iEqu != string::npos)
{
key = s.substr(0, iEqu);
value = s.substr(iEqu + 1);
state = StoreKey;
}
else
state = ReadFindKey;
}
break;
case StoreKey:
SetKeyValue(section, key, value);
state = FindSection;
break;
case None:
// Do we need to do anything? Perhaps this never occurs.
break;
}
}
VSIFCloseL(filIni);
}
void IniFile::Store()
{
VSILFILE *filIni = VSIFOpenL(filename.c_str(), "w+");
if (filIni == NULL)
return;
Sections::iterator iterSect;
for (iterSect = sections.begin(); iterSect != sections.end(); ++iterSect)
{
CPLString osLine;
// write the section name
osLine.Printf( "[%s]\r\n", (*iterSect).first.c_str());
VSIFWriteL( osLine.c_str(), 1, strlen(osLine), filIni );
SectionEntries *entries = (*iterSect).second;
SectionEntries::iterator iterEntry;
for (iterEntry = (*entries).begin(); iterEntry != (*entries).end(); ++iterEntry)
{
string key = (*iterEntry).first;
osLine.Printf( "%s=%s\r\n",
TrimSpaces(key).c_str(), (*iterEntry).second.c_str());
VSIFWriteL( osLine.c_str(), 1, strlen(osLine), filIni );
}
VSIFWriteL( "\r\n", 1, 2, filIni );
}
VSIFCloseL( filIni );
}
// End of the implementation of IniFile class. ///////////////////////
//////////////////////////////////////////////////////////////////////
static long longConv(double x) {
if ((x == rUNDEF) || (x > LONG_MAX) || (x < LONG_MIN))
return iUNDEF;
else
return (long)floor(x + 0.5);
}
string ReadElement(string section, string entry, string filename)
{
if (section.length() == 0)
return string();
if (entry.length() == 0)
return string();
if (filename.length() == 0)
return string();
IniFile MyIniFile (filename);
return MyIniFile.GetKeyValue(section, entry);;
}
bool WriteElement(string sSection, string sEntry,
string fn, string sValue)
{
if (0 == fn.length())
return false;
IniFile MyIniFile (fn);
MyIniFile.SetKeyValue(sSection, sEntry, sValue);
return true;
}
bool WriteElement(string sSection, string sEntry,
string fn, int nValue)
{
if (0 == fn.length())
return false;
char strdouble[45];
sprintf(strdouble, "%d", nValue);
string sValue = string(strdouble);
return WriteElement(sSection, sEntry, fn, sValue) != 0;
}
bool WriteElement(string sSection, string sEntry,
string fn, double dValue)
{
if (0 == fn.length())
return false;
char strdouble[45];
sprintf(strdouble, "%.6f", dValue);
string sValue = string(strdouble);
return WriteElement(sSection, sEntry, fn, sValue) != 0;
}
static CPLErr GetRowCol(string str,int &Row, int &Col)
{
string delimStr = " ,;";
size_t iPos = str.find_first_of(delimStr);
if (iPos != string::npos)
{
Row = atoi(str.substr(0, iPos).c_str());
}
else
{
CPLError( CE_Failure, CPLE_AppDefined,
"Read of RowCol failed.");
return CE_Failure;
}
iPos = str.find_last_of(delimStr);
if (iPos != string::npos)
{
Col = atoi(str.substr(iPos+1, str.length()-iPos).c_str());
}
return CE_None;
}
//! Converts ILWIS data type to GDAL data type.
static GDALDataType ILWIS2GDALType(ilwisStoreType stStoreType)
{
GDALDataType eDataType = GDT_Unknown;
switch (stStoreType){
case stByte: {
eDataType = GDT_Byte;
break;
}
case stInt:{
eDataType = GDT_Int16;
break;
}
case stLong:{
eDataType = GDT_Int32;
break;
}
case stFloat:{
eDataType = GDT_Float32;
break;
}
case stReal:{
eDataType = GDT_Float64;
break;
}
default: {
break;
}
}
return eDataType;
}
//Determine store type of ILWIS raster
static string GDALType2ILWIS(GDALDataType type)
{
string sStoreType;
sStoreType = "";
switch( type )
{
case GDT_Byte:{
sStoreType = "Byte";
break;
}
case GDT_Int16:
case GDT_UInt16:{
sStoreType = "Int";
break;
}
case GDT_Int32:
case GDT_UInt32:{
sStoreType = "Long";
break;
}
case GDT_Float32:{
sStoreType = "Float";
break;
}
case GDT_Float64:{
sStoreType = "Real";
break;
}
default:{
CPLError( CE_Failure, CPLE_NotSupported,
"Data type %s not supported by ILWIS format.\n",
GDALGetDataTypeName( type ) );
break;
}
}
return sStoreType;
}
static CPLErr GetStoreType(string pszFileName, ilwisStoreType &stStoreType)
{
string st = ReadElement("MapStore", "Type", pszFileName.c_str());
if( EQUAL(st.c_str(),"byte"))
{
stStoreType = stByte;
}
else if( EQUAL(st.c_str(),"int"))
{
stStoreType = stInt;
}
else if( EQUAL(st.c_str(),"long"))
{
stStoreType = stLong;
}
else if( EQUAL(st.c_str(),"float"))
{
stStoreType = stFloat;
}
else if( EQUAL(st.c_str(),"real"))
{
stStoreType = stReal;
}
else
{
CPLError( CE_Failure, CPLE_AppDefined,
"Unsupported ILWIS store type.");
return CE_Failure;
}
return CE_None;
}
ILWISDataset::ILWISDataset()
{
bGeoDirty = FALSE;
bNewDataset = FALSE;
pszProjection = CPLStrdup("");
adfGeoTransform[0] = 0.0;
adfGeoTransform[1] = 1.0;
adfGeoTransform[2] = 0.0;
adfGeoTransform[3] = 0.0;
adfGeoTransform[4] = 0.0;
adfGeoTransform[5] = 1.0;
}
/************************************************************************/
/* ~ILWISDataset() */
/************************************************************************/
ILWISDataset::~ILWISDataset()
{
FlushCache();
CPLFree( pszProjection );
}
/************************************************************************/
/* CollectTransformCoef() */
/* */
/* Collect the geotransform, support for the GeoRefCorners */
/* georeferencing only; We use the extent of the coordinates */
/* to determine the pixelsize in X and Y direction. Then calculate */
/* the transform coefficients from the extent and pixelsize */
/************************************************************************/
void ILWISDataset::CollectTransformCoef(string &pszRefName)
{
pszRefName = "";
string georef;
if ( EQUAL(pszFileType.c_str(),"Map") )
georef = ReadElement("Map", "GeoRef", osFileName);
else
georef = ReadElement("MapList", "GeoRef", osFileName);
//Capture the geotransform, only if the georef is not 'none',
//otherwise, the default transform should be returned.
if( (georef.length() != 0) && !EQUAL(georef.c_str(),"none"))
{
//Form the geo-referencing name
string pszBaseName = string(CPLGetBasename(georef.c_str()) );
string pszPath = string(CPLGetPath( osFileName ));
pszRefName = string(CPLFormFilename(pszPath.c_str(),
pszBaseName.c_str(),"grf" ));
//Check the geo-reference type,support for the GeoRefCorners only
string georeftype = ReadElement("GeoRef", "Type", pszRefName);
if (EQUAL(georeftype.c_str(),"GeoRefCorners"))
{
//Center or top-left corner of the pixel approach?
string IsCorner = ReadElement("GeoRefCorners", "CornersOfCorners", pszRefName);
//Collect the extent of the coordinates
string sMinX = ReadElement("GeoRefCorners", "MinX", pszRefName);
string sMinY = ReadElement("GeoRefCorners", "MinY", pszRefName);
string sMaxX = ReadElement("GeoRefCorners", "MaxX", pszRefName);
string sMaxY = ReadElement("GeoRefCorners", "MaxY", pszRefName);
//Calculate pixel size in X and Y direction from the extent
double deltaX = atof(sMaxX.c_str()) - atof(sMinX.c_str());
double deltaY = atof(sMaxY.c_str()) - atof(sMinY.c_str());
double PixelSizeX = deltaX / (double)nRasterXSize;
double PixelSizeY = deltaY / (double)nRasterYSize;
if (EQUAL(IsCorner.c_str(),"Yes"))
{
adfGeoTransform[0] = atof(sMinX.c_str());
adfGeoTransform[3] = atof(sMaxY.c_str());
}
else
{
adfGeoTransform[0] = atof(sMinX.c_str()) - PixelSizeX/2.0;
adfGeoTransform[3] = atof(sMaxY.c_str()) + PixelSizeY/2.0;
}
adfGeoTransform[1] = PixelSizeX;
adfGeoTransform[2] = 0.0;
adfGeoTransform[4] = 0.0;
adfGeoTransform[5] = -PixelSizeY;
}
}
}
/************************************************************************/
/* WriteGeoReference() */
/* */
/* Try to write a geo-reference file for the dataset to create */
/************************************************************************/
CPLErr ILWISDataset::WriteGeoReference()
{
//check wheather we should write out a georeference file.
//dataset must be north up
if( adfGeoTransform[0] != 0.0 || adfGeoTransform[1] != 1.0
|| adfGeoTransform[2] != 0.0 || adfGeoTransform[3] != 0.0
|| adfGeoTransform[4] != 0.0 || fabs(adfGeoTransform[5]) != 1.0 )
{
SetGeoTransform( adfGeoTransform ); // is this needed?
if (adfGeoTransform[2] == 0.0 && adfGeoTransform[4] == 0.0)
{
int nXSize = GetRasterXSize();
int nYSize = GetRasterYSize();
double dLLLat = (adfGeoTransform[3]
+ nYSize * adfGeoTransform[5] );
double dLLLong = (adfGeoTransform[0] );
double dURLat = (adfGeoTransform[3] );
double dURLong = (adfGeoTransform[0]
+ nXSize * adfGeoTransform[1] );
string grFileName = CPLResetExtension(osFileName, "grf" );
WriteElement("Ilwis", "Type", grFileName, "GeoRef");
WriteElement("GeoRef", "lines", grFileName, nYSize);
WriteElement("GeoRef", "columns", grFileName, nXSize);
WriteElement("GeoRef", "Type", grFileName, "GeoRefCorners");
WriteElement("GeoRefCorners", "CornersOfCorners", grFileName, "Yes");
WriteElement("GeoRefCorners", "MinX", grFileName, dLLLong);
WriteElement("GeoRefCorners", "MinY", grFileName, dLLLat);
WriteElement("GeoRefCorners", "MaxX", grFileName, dURLong);
WriteElement("GeoRefCorners", "MaxY", grFileName, dURLat);
//Re-write the GeoRef property to raster ODF
//Form band file name
string sBaseName = string(CPLGetBasename(osFileName) );
string sPath = string(CPLGetPath(osFileName));
if (nBands == 1)
{
WriteElement("Map", "GeoRef", osFileName, sBaseName + ".grf");
}
else
{
for( int iBand = 0; iBand < nBands; iBand++ )
{
if (iBand == 0)
WriteElement("MapList", "GeoRef", osFileName, sBaseName + ".grf");
char pszName[100];
sprintf(pszName, "%s_band_%d", sBaseName.c_str(),iBand + 1 );
string pszODFName = string(CPLFormFilename(sPath.c_str(),pszName,"mpr"));
WriteElement("Map", "GeoRef", pszODFName, sBaseName + ".grf");
}
}
}
}
return CE_None;
}
/************************************************************************/
/* GetProjectionRef() */
/************************************************************************/
const char *ILWISDataset::GetProjectionRef()
{
return ( pszProjection );
}
/************************************************************************/
/* SetProjection() */
/************************************************************************/
CPLErr ILWISDataset::SetProjection( const char * pszNewProjection )
{
CPLFree( pszProjection );
pszProjection = CPLStrdup( pszNewProjection );
bGeoDirty = TRUE;
return CE_None;
}
/************************************************************************/
/* GetGeoTransform() */
/************************************************************************/
CPLErr ILWISDataset::GetGeoTransform( double * padfTransform )
{
memcpy( padfTransform, adfGeoTransform, sizeof(double) * 6 );
return( CE_None );
}
/************************************************************************/
/* SetGeoTransform() */
/************************************************************************/
CPLErr ILWISDataset::SetGeoTransform( double * padfTransform )
{
memmove( adfGeoTransform, padfTransform, sizeof(double)*6 );
if (adfGeoTransform[2] == 0.0 && adfGeoTransform[4] == 0.0)
bGeoDirty = TRUE;
return CE_None;
}
bool CheckASCII(unsigned char * buf, int size)
{
for (int i = 0; i < size; ++i)
if (!isascii(buf[i]))
return false;
return true;
}
/************************************************************************/
/* Open() */
/************************************************************************/
GDALDataset *ILWISDataset::Open( GDALOpenInfo * poOpenInfo )
{
/* -------------------------------------------------------------------- */
/* Does this look like an ILWIS file */
/* -------------------------------------------------------------------- */
if( poOpenInfo->nHeaderBytes < 1 )
return NULL;
string sExt = CPLGetExtension( poOpenInfo->pszFilename );
if (!EQUAL(sExt.c_str(),"mpr") && !EQUAL(sExt.c_str(),"mpl"))
return NULL;
if (!CheckASCII(poOpenInfo->pabyHeader, poOpenInfo->nHeaderBytes))
return NULL;
string ilwistype = ReadElement("Ilwis", "Type", poOpenInfo->pszFilename);
if( ilwistype.length() == 0)
return NULL;
string sFileType; //map or map list
int iBandCount;
string mapsize;
string maptype = ReadElement("BaseMap", "Type", poOpenInfo->pszFilename);
string sBaseName = string(CPLGetBasename(poOpenInfo->pszFilename) );
string sPath = string(CPLGetPath( poOpenInfo->pszFilename));
//Verify whether it is a map list or a map
if( EQUAL(ilwistype.c_str(),"MapList") )
{
sFileType = string("MapList");
string sMaps = ReadElement("MapList", "Maps", poOpenInfo->pszFilename);
iBandCount = atoi(sMaps.c_str());
mapsize = ReadElement("MapList", "Size", poOpenInfo->pszFilename);
for (int iBand = 0; iBand < iBandCount; ++iBand )
{
//Form the band file name.
char cBandName[45];
sprintf( cBandName, "Map%d", iBand);
string sBandName = ReadElement("MapList", string(cBandName), poOpenInfo->pszFilename);
string pszBandBaseName = string(CPLGetBasename(sBandName.c_str()) );
string pszBandPath = string(CPLGetPath( sBandName.c_str()));
if ( 0 == pszBandPath.length() )
{
sBandName = string(CPLFormFilename(sPath.c_str(),
pszBandBaseName.c_str(),"mpr" ));
}
//Verify the file exetension, it must be an ILWIS raw data file
//with extension .mp#, otherwise, unsupported
//This drive only supports a map list which stores a set of ILWIS raster maps,
string sMapStoreName = ReadElement("MapStore", "Data", sBandName);
string sExt = CPLGetExtension( sMapStoreName.c_str() );
if ( !EQUALN( sExt.c_str(), "mp#", 3 ))
{
CPLError( CE_Failure, CPLE_AppDefined,
"Unsupported ILWIS data file. \n"
"can't treat as raster.\n" );
return FALSE;
}
}
}
else if(EQUAL(ilwistype.c_str(),"BaseMap") && EQUAL(maptype.c_str(),"Map"))
{
sFileType = "Map";
iBandCount = 1;
mapsize = ReadElement("Map", "Size", poOpenInfo->pszFilename);
string sMapType = ReadElement("Map", "Type", poOpenInfo->pszFilename);
ilwisStoreType stStoreType;
if (
GetStoreType(string(poOpenInfo->pszFilename), stStoreType) != CE_None )
{
//CPLError( CE_Failure, CPLE_AppDefined,
// "Unsupported ILWIS data file. \n"
// "can't treat as raster.\n" );
return FALSE;
}
}
else
{
CPLError( CE_Failure, CPLE_AppDefined,
"Unsupported ILWIS data file. \n"
"can't treat as raster.\n" );
return FALSE;
}
/* -------------------------------------------------------------------- */
/* Create a corresponding GDALDataset. */
/* -------------------------------------------------------------------- */
ILWISDataset *poDS;
poDS = new ILWISDataset();
/* -------------------------------------------------------------------- */
/* Capture raster size from ILWIS file (.mpr). */
/* -------------------------------------------------------------------- */
int Row = 0, Col = 0;
if ( GetRowCol(mapsize, Row, Col) != CE_None)
return FALSE;
poDS->nRasterXSize = Col;
poDS->nRasterYSize = Row;
poDS->osFileName = poOpenInfo->pszFilename;
poDS->pszFileType = sFileType;
/* -------------------------------------------------------------------- */
/* Create band information objects. */
/* -------------------------------------------------------------------- */
//poDS->pszFileName = new char[strlen(poOpenInfo->pszFilename) + 1];
poDS->nBands = iBandCount;
for( int iBand = 0; iBand < poDS->nBands; iBand++ )
{
poDS->SetBand( iBand+1, new ILWISRasterBand( poDS, iBand+1 ) );
}
/* -------------------------------------------------------------------- */
/* Collect the geotransform coefficients */
/* -------------------------------------------------------------------- */
string pszGeoRef;
poDS->CollectTransformCoef(pszGeoRef);
/* -------------------------------------------------------------------- */
/* Translation from ILWIS coordinate system definition */
/* -------------------------------------------------------------------- */
if( (pszGeoRef.length() != 0) && !EQUAL(pszGeoRef.c_str(),"none"))
{
// Fetch coordinate system
string csy = ReadElement("GeoRef", "CoordSystem", pszGeoRef);
string pszProj;
if( (csy.length() != 0) && !EQUAL(csy.c_str(),"unknown.csy"))
{
//Form the coordinate system file name
if( !(EQUALN( csy.c_str(), "latlon.csy", 10 )) &&
!(EQUALN( csy.c_str(), "LatlonWGS84.csy", 15 )))
{
string pszBaseName = string(CPLGetBasename(csy.c_str()) );
string pszPath = string(CPLGetPath( poDS->osFileName ));
csy = string(CPLFormFilename(pszPath.c_str(),
pszBaseName.c_str(),"csy" ));
pszProj = ReadElement("CoordSystem", "Type", csy);
if (pszProj.length() == 0 ) //default to projection
pszProj = "Projection";
}
else
{
pszProj = "LatLon";
}
if( (EQUALN( pszProj.c_str(), "LatLon", 6 )) ||
(EQUALN( pszProj.c_str(), "Projection", 10 )))
poDS->ReadProjection( csy );
}
}
/* -------------------------------------------------------------------- */
/* Initialize any PAM information. */
/* -------------------------------------------------------------------- */
poDS->SetDescription( poOpenInfo->pszFilename );
poDS->TryLoadXML();
/* -------------------------------------------------------------------- */
/* Check for external overviews. */
/* -------------------------------------------------------------------- */
poDS->oOvManager.Initialize( poDS, poOpenInfo->pszFilename, poOpenInfo->papszSiblingFiles );
return( poDS );
}
/************************************************************************/
/* FlushCache() */
/************************************************************************/
void ILWISDataset::FlushCache()
{
GDALDataset::FlushCache();
if( bGeoDirty == TRUE )
{
WriteGeoReference();
WriteProjection();
bGeoDirty = FALSE;
}
}
/************************************************************************/
/* Create() */
/* */
/* Create a new ILWIS file. */
/************************************************************************/
GDALDataset *ILWISDataset::Create(const char* pszFilename,
int nXSize, int nYSize,
int nBands, GDALDataType eType,
char** papszParmList)
{
ILWISDataset *poDS;
int iBand;
/* -------------------------------------------------------------------- */
/* Verify input options. */
/* -------------------------------------------------------------------- */
if( eType != GDT_Byte && eType != GDT_Int16 && eType != GDT_Int32
&& eType != GDT_Float32 && eType != GDT_Float64 && eType != GDT_UInt16 && eType != GDT_UInt32)
{
CPLError( CE_Failure, CPLE_AppDefined,
"Attempt to create ILWIS dataset with an illegal\n"
"data type (%s).\n",
GDALGetDataTypeName(eType) );
return NULL;
}
/* -------------------------------------------------------------------- */
/* Translate the data type. */
/* Determine store type of ILWIS raster */
/* -------------------------------------------------------------------- */
string sDomain= "value.dom";
double stepsize = 1;
string sStoreType = GDALType2ILWIS(eType);
if( EQUAL(sStoreType.c_str(),""))
return NULL;
else if( EQUAL(sStoreType.c_str(),"Real") || EQUAL(sStoreType.c_str(),"float"))
stepsize = 0;
string pszBaseName = string(CPLGetBasename( pszFilename ));
string pszPath = string(CPLGetPath( pszFilename ));
/* -------------------------------------------------------------------- */
/* Write out object definition file for each band */
/* -------------------------------------------------------------------- */
string pszODFName;
string pszDataBaseName;
string pszFileName;
char strsize[45];
sprintf(strsize, "%d %d", nYSize, nXSize);
//Form map/maplist name.
if ( nBands == 1 )
{
pszODFName = string(CPLFormFilename(pszPath.c_str(),pszBaseName.c_str(),"mpr"));
pszDataBaseName = pszBaseName;
pszFileName = CPLFormFilename(pszPath.c_str(),pszBaseName.c_str(),"mpr");
}
else
{
pszFileName = CPLFormFilename(pszPath.c_str(),pszBaseName.c_str(),"mpl");
WriteElement("Ilwis", "Type", string(pszFileName), "MapList");
WriteElement("MapList", "GeoRef", string(pszFileName), "none.grf");
WriteElement("MapList", "Size", string(pszFileName), string(strsize));
WriteElement("MapList", "Maps", string(pszFileName), nBands);
}
for( iBand = 0; iBand < nBands; iBand++ )
{
if ( nBands > 1 )
{
char pszBandName[100];
sprintf(pszBandName, "%s_band_%d", pszBaseName.c_str(),iBand + 1 );
pszODFName = string(pszBandName) + ".mpr";
pszDataBaseName = string(pszBandName);
sprintf(pszBandName, "Map%d", iBand);
WriteElement("MapList", string(pszBandName), string(pszFileName), pszODFName);
pszODFName = CPLFormFilename(pszPath.c_str(),pszDataBaseName.c_str(),"mpr");
}
/* -------------------------------------------------------------------- */
/* Write data definition per band (.mpr) */
/* -------------------------------------------------------------------- */
WriteElement("Ilwis", "Type", pszODFName, "BaseMap");
WriteElement("BaseMap", "Type", pszODFName, "Map");
WriteElement("Map", "Type", pszODFName, "MapStore");
WriteElement("BaseMap", "Domain", pszODFName, sDomain);
string pszDataName = pszDataBaseName + ".mp#";
WriteElement("MapStore", "Data", pszODFName, pszDataName);
WriteElement("MapStore", "Structure", pszODFName, "Line");
// sStoreType is used by ILWISRasterBand constructor to determine eDataType
WriteElement("MapStore", "Type", pszODFName, sStoreType);
// For now write-out a "Range" that is as broad as possible.
// If later a better range is found (by inspecting metadata in the source dataset),
// the "Range" will be overwritten by a better version.
double adfMinMax[2];
adfMinMax[0] = -9999999.9;
adfMinMax[1] = 9999999.9;
char strdouble[45];
sprintf(strdouble, "%.3f:%.3f:%3f:offset=0", adfMinMax[0], adfMinMax[1],stepsize);
string range = string(strdouble);
WriteElement("BaseMap", "Range", pszODFName, range);
WriteElement("Map", "GeoRef", pszODFName, "none.grf");
WriteElement("Map", "Size", pszODFName, string(strsize));
/* -------------------------------------------------------------------- */
/* Try to create the data file. */
/* -------------------------------------------------------------------- */
pszDataName = CPLResetExtension(pszODFName.c_str(), "mp#" );
VSILFILE *fp = VSIFOpenL( pszDataName.c_str(), "wb" );
if( fp == NULL )
{
CPLError( CE_Failure, CPLE_OpenFailed,
"Unable to create file %s.\n", pszDataName.c_str() );
return NULL;
}
VSIFCloseL( fp );
}
poDS = new ILWISDataset();
poDS->nRasterXSize = nXSize;
poDS->nRasterYSize = nYSize;
poDS->nBands = nBands;
poDS->eAccess = GA_Update;
poDS->bNewDataset = TRUE;
poDS->SetDescription(pszFilename);
poDS->osFileName = pszFileName;
poDS->pszIlwFileName = string(pszFileName);
if ( nBands == 1 )
poDS->pszFileType = "Map";
else
poDS->pszFileType = "MapList";
/* -------------------------------------------------------------------- */
/* Create band information objects. */
/* -------------------------------------------------------------------- */
for( iBand = 1; iBand <= poDS->nBands; iBand++ )
{
poDS->SetBand( iBand, new ILWISRasterBand( poDS, iBand ) );
}
return poDS;
//return (GDALDataset *) GDALOpen( pszFilename, GA_Update );
}
/************************************************************************/
/* CreateCopy() */
/************************************************************************/
GDALDataset *
ILWISDataset::CreateCopy( const char * pszFilename, GDALDataset *poSrcDS,
int bStrict, char ** papszOptions,
GDALProgressFunc pfnProgress, void * pProgressData )
{
ILWISDataset *poDS;
GDALDataType eType = GDT_Byte;
int iBand;
(void) bStrict;
int nXSize = poSrcDS->GetRasterXSize();
int nYSize = poSrcDS->GetRasterYSize();
int nBands = poSrcDS->GetRasterCount();
if( !pfnProgress( 0.0, NULL, pProgressData ) )
return NULL;
/* -------------------------------------------------------------------- */
/* Create the basic dataset. */
/* -------------------------------------------------------------------- */
for( iBand = 0; iBand < nBands; iBand++ )
{
GDALRasterBand *poBand = poSrcDS->GetRasterBand( iBand+1 );
eType = GDALDataTypeUnion( eType, poBand->GetRasterDataType() );
}
poDS = (ILWISDataset *) Create( pszFilename,
poSrcDS->GetRasterXSize(),
poSrcDS->GetRasterYSize(),
nBands,
eType, papszOptions );
if( poDS == NULL )
return NULL;
string pszBaseName = string(CPLGetBasename( pszFilename ));
string pszPath = string(CPLGetPath( pszFilename ));
/* -------------------------------------------------------------------- */
/* Copy and geo-transform and projection information. */
/* -------------------------------------------------------------------- */
double adfGeoTransform[6];
string georef = "none.grf";
//check wheather we should create georeference file.
//source dataset must be north up
if( poSrcDS->GetGeoTransform( adfGeoTransform ) == CE_None
&& (adfGeoTransform[0] != 0.0 || adfGeoTransform[1] != 1.0
|| adfGeoTransform[2] != 0.0 || adfGeoTransform[3] != 0.0
|| adfGeoTransform[4] != 0.0 || fabs(adfGeoTransform[5]) != 1.0))
{
poDS->SetGeoTransform( adfGeoTransform );
if (adfGeoTransform[2] == 0.0 && adfGeoTransform[4] == 0.0)
georef = pszBaseName + ".grf";
}
const char *pszProj = poSrcDS->GetProjectionRef();
if( pszProj != NULL && strlen(pszProj) > 0 )
poDS->SetProjection( pszProj );
/* -------------------------------------------------------------------- */
/* Create the output raster files for each band */
/* -------------------------------------------------------------------- */
for( iBand = 0; iBand < nBands; iBand++ )
{
VSILFILE *fpData;
GByte *pData;
GDALRasterBand *poBand = poSrcDS->GetRasterBand( iBand+1 );
ILWISRasterBand *desBand = (ILWISRasterBand *) poDS->GetRasterBand( iBand+1 );
/* -------------------------------------------------------------------- */
/* Translate the data type. */
/* -------------------------------------------------------------------- */
int nLineSize = nXSize * GDALGetDataTypeSize(eType) / 8;
pData = (GByte *) CPLMalloc( nLineSize );
//Determine the nodata value
int bHasNoDataValue;
double dNoDataValue = poBand->GetNoDataValue(&bHasNoDataValue);
//Determine store type of ILWIS raster
string sStoreType = GDALType2ILWIS( eType );
double stepsize = 1;
if( EQUAL(sStoreType.c_str(),""))
return NULL;
else if( EQUAL(sStoreType.c_str(),"Real") || EQUAL(sStoreType.c_str(),"float"))
stepsize = 0;
//Form the image file name, create the object definition file.
string pszODFName;
string pszDataBaseName;
if (nBands == 1)
{
pszODFName = string(CPLFormFilename(pszPath.c_str(),pszBaseName.c_str(),"mpr"));
pszDataBaseName = pszBaseName;
}
else
{
char pszName[100];
sprintf(pszName, "%s_band_%d", pszBaseName.c_str(),iBand + 1 );
pszODFName = string(CPLFormFilename(pszPath.c_str(),pszName,"mpr"));
pszDataBaseName = string(pszName);
}
/* -------------------------------------------------------------------- */
/* Write data definition file for each band (.mpr) */
/* -------------------------------------------------------------------- */
double adfMinMax[2];
int bGotMin, bGotMax;
adfMinMax[0] = poBand->GetMinimum( &bGotMin );
adfMinMax[1] = poBand->GetMaximum( &bGotMax );
if( ! (bGotMin && bGotMax) )
GDALComputeRasterMinMax((GDALRasterBandH)poBand, FALSE, adfMinMax);
if ((!CPLIsNan(adfMinMax[0])) && CPLIsFinite(adfMinMax[0]) && (!CPLIsNan(adfMinMax[1])) && CPLIsFinite(adfMinMax[1]))
{
// only write a range if we got a correct one from the source dataset (otherwise ILWIS can't show the map properly)
char strdouble[45];
sprintf(strdouble, "%.3f:%.3f:%3f:offset=0", adfMinMax[0], adfMinMax[1],stepsize);
string range = string(strdouble);
WriteElement("BaseMap", "Range", pszODFName, range);
}
WriteElement("Map", "GeoRef", pszODFName, georef);
/* -------------------------------------------------------------------- */
/* Loop over image, copy the image data. */
/* -------------------------------------------------------------------- */
CPLErr eErr = CE_None;
//For file name for raw data, and create binary files.
string pszDataFileName = CPLResetExtension(pszODFName.c_str(), "mp#" );
fpData = desBand->fpRaw;
if( fpData == NULL )
{
CPLError( CE_Failure, CPLE_OpenFailed,
"Attempt to create file `%s' failed.\n",
pszFilename );
return NULL;
}
for( int iLine = 0; iLine < nYSize && eErr == CE_None; iLine++ )
{
eErr = poBand->RasterIO( GF_Read, 0, iLine, nXSize, 1,
pData, nXSize, 1, eType,
0, 0 );
if( eErr == CE_None )
{
if (bHasNoDataValue)
{
// pData may have entries with value = dNoDataValue
// ILWIS uses a fixed value for nodata, depending on the data-type
// Therefore translate the NoDataValue from each band to ILWIS
for (int iCol = 0; iCol < nXSize; iCol++ )
{
if( EQUAL(sStoreType.c_str(),"Byte"))
{
if ( ((GByte * )pData)[iCol] == dNoDataValue )
(( GByte * )pData)[iCol] = 0;
}
else if( EQUAL(sStoreType.c_str(),"Int"))
{
if ( ((GInt16 * )pData)[iCol] == dNoDataValue )
(( GInt16 * )pData)[iCol] = shUNDEF;
}
else if( EQUAL(sStoreType.c_str(),"Long"))
{
if ( ((GInt32 * )pData)[iCol] == dNoDataValue )
(( GInt32 * )pData)[iCol] = iUNDEF;
}
else if( EQUAL(sStoreType.c_str(),"float"))
{
if ((((float * )pData)[iCol] == dNoDataValue ) || (CPLIsNan((( float * )pData)[iCol])))
(( float * )pData)[iCol] = flUNDEF;
}
else if( EQUAL(sStoreType.c_str(),"Real"))
{
if ((((double * )pData)[iCol] == dNoDataValue ) || (CPLIsNan((( double * )pData)[iCol])))
(( double * )pData)[iCol] = rUNDEF;
}
}
}
int iSize = VSIFWriteL( pData, 1, nLineSize, desBand->fpRaw );
if ( iSize < 1 )
{
CPLFree( pData );
//CPLFree( pData32 );
CPLError( CE_Failure, CPLE_FileIO,
"Write of file failed with fwrite error.");
return NULL;
}
}
if( !pfnProgress(iLine / (nYSize * nBands), NULL, pProgressData ) )
return NULL;
}
VSIFFlushL( fpData );
CPLFree( pData );
}
poDS->FlushCache();
if( !pfnProgress( 1.0, NULL, pProgressData ) )
{
CPLError( CE_Failure, CPLE_UserInterrupt,
"User terminated" );
delete poDS;
GDALDriver *poILWISDriver =
(GDALDriver *) GDALGetDriverByName( "ILWIS" );
poILWISDriver->Delete( pszFilename );
return NULL;
}
poDS->CloneInfo( poSrcDS, GCIF_PAM_DEFAULT );
return poDS;
}
/************************************************************************/
/* ILWISRasterBand() */
/************************************************************************/
ILWISRasterBand::ILWISRasterBand( ILWISDataset *poDS, int nBand )
{
string sBandName;
if ( EQUAL(poDS->pszFileType.c_str(),"Map"))
sBandName = string(poDS->osFileName);
else //map list
{
//Form the band name
char cBandName[45];
sprintf( cBandName, "Map%d", nBand-1);
sBandName = ReadElement("MapList", string(cBandName), string(poDS->osFileName));
string sInputPath = string(CPLGetPath( poDS->osFileName));
string sBandPath = string(CPLGetPath( sBandName.c_str()));
string sBandBaseName = string(CPLGetBasename( sBandName.c_str()));
if ( 0==sBandPath.length() )
sBandName = string(CPLFormFilename(sInputPath.c_str(),sBandBaseName.c_str(),"mpr" ));
else
sBandName = string(CPLFormFilename(sBandPath.c_str(),sBandBaseName.c_str(),"mpr" ));
}
if (poDS->bNewDataset)
{
// Called from Create():
// eDataType is defaulted to GDT_Byte by GDALRasterBand::GDALRasterBand
// Here we set it to match the value of sStoreType (that was set in ILWISDataset::Create)
// Unfortunately we can't take advantage of the ILWIS "ValueRange" object that would use
// the most compact storeType possible, without going through all values.
GetStoreType(sBandName, psInfo.stStoreType);
eDataType = ILWIS2GDALType(psInfo.stStoreType);
}
else // Called from Open(), thus convert ILWIS type from ODF to eDataType
GetILWISInfo(sBandName);
this->poDS = poDS;
this->nBand = nBand;
nBlockXSize = poDS->GetRasterXSize();
nBlockYSize = 1;
switch (psInfo.stStoreType)
{
case stByte:
nSizePerPixel = GDALGetDataTypeSize(GDT_Byte) / 8;
break;
case stInt:
nSizePerPixel = GDALGetDataTypeSize(GDT_Int16) / 8;
break;
case stLong:
nSizePerPixel = GDALGetDataTypeSize(GDT_Int32) / 8;
break;
case stFloat:
nSizePerPixel = GDALGetDataTypeSize(GDT_Float32) / 8;
break;
case stReal:
nSizePerPixel = GDALGetDataTypeSize(GDT_Float64) / 8;
break;
}
ILWISOpen(sBandName);
}
/************************************************************************/
/* ~ILWISRasterBand() */
/************************************************************************/
ILWISRasterBand::~ILWISRasterBand()
{
if( fpRaw != NULL )
{
VSIFCloseL( fpRaw );
fpRaw = NULL;
}
}
/************************************************************************/
/* ILWISOpen() */
/************************************************************************/
void ILWISRasterBand::ILWISOpen( string pszFileName )
{
ILWISDataset* dataset = (ILWISDataset*) poDS;
string pszDataFile;
pszDataFile = string(CPLResetExtension( pszFileName.c_str(), "mp#" ));
fpRaw = VSIFOpenL( pszDataFile.c_str(), (dataset->eAccess == GA_Update) ? "rb+" : "rb");
}
/************************************************************************/
/* ReadValueDomainProperties() */
/************************************************************************/
// Helper function for GetILWISInfo, to avoid code-duplication
// Unfortunately with side-effect (changes members psInfo and eDataType)
void ILWISRasterBand::ReadValueDomainProperties(string pszFileName)
{
string rangeString = ReadElement("BaseMap", "Range", pszFileName.c_str());
psInfo.vr = ValueRange(rangeString);
double rStep = psInfo.vr.get_rStep();
if ( rStep != 0 )
{
psInfo.bUseValueRange = true; // use ILWIS ValueRange object to convert from "raw" to "value"
double rMin = psInfo.vr.get_rLo();
double rMax = psInfo.vr.get_rHi();
if (rStep - (long)rStep == 0.0) // Integer values
{
if ( rMin >= 0 && rMax <= UCHAR_MAX)
eDataType = GDT_Byte;
else if ( rMin >= SHRT_MIN && rMax <= SHRT_MAX)
eDataType = GDT_Int16;
else if ( rMin >= 0 && rMax <= USHRT_MAX)
eDataType = GDT_UInt16;
else if ( rMin >= INT_MIN && rMax <= INT_MAX)
eDataType = GDT_Int32;
else if ( rMin >= 0 && rMax <= UINT_MAX)
eDataType = GDT_UInt32;
else
eDataType = GDT_Float64;
}
else // Floating point values
{
if ((rMin >= -FLT_MAX) && (rMax <= FLT_MAX) && (fabs(rStep) >= FLT_EPSILON)) // is "float" good enough?
eDataType = GDT_Float32;
else
eDataType = GDT_Float64;
}
}
else
{
if (psInfo.stStoreType == stFloat) // is "float" good enough?
eDataType = GDT_Float32;
else
eDataType = GDT_Float64;
}
}
/************************************************************************/
/* GetILWISInfo() */
/************************************************************************/
// Calculates members psInfo and eDataType
CPLErr ILWISRasterBand::GetILWISInfo(string pszFileName)
{
// Fill the psInfo struct with defaults.
// Get the store type from the ODF
if (GetStoreType(pszFileName, psInfo.stStoreType) != CE_None)
{
return CE_Failure;
}
psInfo.bUseValueRange = false;
psInfo.stDomain = "";
// ILWIS has several (currently 22) predefined "system-domains", that influence the data-type
// The user can also create his own domains. The possible types for these are "class", "identifier", "bool" and "value"
// The last one has Type=DomainValue
// Here we make an effort to determine the most-compact gdal-type (eDataType) that is suitable
// for the data in the current ILWIS band.
// First check against all predefined domain names (the "system-domains")
// If no match is found, read the domain ODF from disk, and get its type
// We have hardcoded the system domains here, because ILWIS may not be installed, and even if it is,
// we don't know where (thus it is useless to attempt to read a system-domain-file).
string domName = ReadElement("BaseMap", "Domain", pszFileName.c_str());
string pszBaseName = string(CPLGetBasename( domName.c_str() ));
string pszPath = string(CPLGetPath( pszFileName.c_str() ));
// Check against all "system-domains"
if ( EQUAL(pszBaseName.c_str(),"value") // is it a system domain with Type=DomainValue?
|| EQUAL(pszBaseName.c_str(),"count")
|| EQUAL(pszBaseName.c_str(),"distance")
|| EQUAL(pszBaseName.c_str(),"min1to1")
|| EQUAL(pszBaseName.c_str(),"nilto1")
|| EQUAL(pszBaseName.c_str(),"noaa")
|| EQUAL(pszBaseName.c_str(),"perc")
|| EQUAL(pszBaseName.c_str(),"radar") )
{
ReadValueDomainProperties(pszFileName);
}
else if( EQUAL(pszBaseName.c_str(),"bool")
|| EQUAL(pszBaseName.c_str(),"byte")
|| EQUAL(pszBaseName.c_str(),"bit")
|| EQUAL(pszBaseName.c_str(),"image")
|| EQUAL(pszBaseName.c_str(),"colorcmp")
|| EQUAL(pszBaseName.c_str(),"flowdirection")
|| EQUAL(pszBaseName.c_str(),"hortonratio")
|| EQUAL(pszBaseName.c_str(),"yesno") )
{
eDataType = GDT_Byte;
if( EQUAL(pszBaseName.c_str(),"image")
|| EQUAL(pszBaseName.c_str(),"colorcmp"))
psInfo.stDomain = pszBaseName;
}
else if( EQUAL(pszBaseName.c_str(),"color")
|| EQUAL(pszBaseName.c_str(),"none" )
|| EQUAL(pszBaseName.c_str(),"coordbuf")
|| EQUAL(pszBaseName.c_str(),"binary")
|| EQUAL(pszBaseName.c_str(),"string") )
{
CPLError( CE_Failure, CPLE_AppDefined,
"Unsupported ILWIS domain type.");
return CE_Failure;
}
else
{
// No match found. Assume it is a self-created domain. Read its type and decide the GDAL type.
string pszDomainFileName = string(CPLFormFilename(pszPath.c_str(),pszBaseName.c_str(),"dom" ));
string domType = ReadElement("Domain", "Type", pszDomainFileName.c_str());
if EQUAL(domType.c_str(),"domainvalue") // is it a self-created domain of type=DomainValue?
{
ReadValueDomainProperties(pszFileName);
}
else if((!EQUAL(domType.c_str(),"domainbit"))
&& (!EQUAL(domType.c_str(),"domainstring"))
&& (!EQUAL(domType.c_str(),"domaincolor"))
&& (!EQUAL(domType.c_str(),"domainbinary"))
&& (!EQUAL(domType.c_str(),"domaincoordBuf"))
&& (!EQUAL(domType.c_str(),"domaincoord")))
{
// Type is "DomainClass", "DomainBool" or "DomainIdentifier".
// For now we set the GDAL storeType be the same as the ILWIS storeType
// The user will have to convert the classes manually.
eDataType = ILWIS2GDALType(psInfo.stStoreType);
}
else
{
CPLError( CE_Failure, CPLE_AppDefined,
"Unsupported ILWIS domain type.");
return CE_Failure;
}
}
return CE_None;
}
/** This driver defines a Block to be the entire raster; The method reads
each line as a block. it reads the data into pImage.
@param nBlockXOff This must be zero for this driver
@param pImage Dump the data here
@return A CPLErr code. This implementation returns a CE_Failure if the
block offsets are non-zero, If successful, returns CE_None. */
/************************************************************************/
/* IReadBlock() */
/************************************************************************/
CPLErr ILWISRasterBand::IReadBlock( int nBlockXOff, int nBlockYOff,
void * pImage )
{
// pImage is empty; this function fills it with data from fpRaw
// (ILWIS data to foreign data)
// If the x block offset is non-zero, something is wrong.
CPLAssert( nBlockXOff == 0 );
int nBlockSize = nBlockXSize * nBlockYSize * nSizePerPixel;
if( fpRaw == NULL )
{
CPLError( CE_Failure, CPLE_OpenFailed,
"Failed to open ILWIS data file.");
return( CE_Failure );
}
/* -------------------------------------------------------------------- */
/* Handle the case of a strip in a writable file that doesn't */
/* exist yet, but that we want to read. Just set to zeros and */
/* return. */
/* -------------------------------------------------------------------- */
ILWISDataset* poIDS = (ILWISDataset*) poDS;
#ifdef notdef
if( poIDS->bNewDataset && (poIDS->eAccess == GA_Update))
{
FillWithNoData(pImage);
return CE_None;
}
#endif
VSIFSeekL( fpRaw, nBlockSize*nBlockYOff, SEEK_SET );
void *pData = (char *)CPLMalloc(nBlockSize);
if (VSIFReadL( pData, 1, nBlockSize, fpRaw ) < 1)
{
if( poIDS->bNewDataset )
{
FillWithNoData(pImage);
return CE_None;
}
else
{
CPLFree( pData );
CPLError( CE_Failure, CPLE_FileIO,
"Read of file failed with fread error.");
return CE_Failure;
}
}
// Copy the data from pData to pImage, and convert the store-type
// The data in pData has store-type = psInfo.stStoreType
// The data in pImage has store-type = eDataType
// They may not match, because we have chosen the most compact store-type,
// and for GDAL this may be different than for ILWIS.
switch (psInfo.stStoreType)
{
int iCol;
case stByte:
for( iCol = 0; iCol < nBlockXSize; iCol++ )
{
double rV = psInfo.bUseValueRange ? psInfo.vr.rValue(((GByte *) pData)[iCol]) : ((GByte *) pData)[iCol];
SetValue(pImage, iCol, rV);
}
break;
case stInt:
for( iCol = 0; iCol < nBlockXSize; iCol++ )
{
double rV = psInfo.bUseValueRange ? psInfo.vr.rValue(((GInt16 *) pData)[iCol]) : ((GInt16 *) pData)[iCol];
SetValue(pImage, iCol, rV);
}
break;
case stLong:
for( iCol = 0; iCol < nBlockXSize; iCol++ )
{
double rV = psInfo.bUseValueRange ? psInfo.vr.rValue(((GInt32 *) pData)[iCol]) : ((GInt32 *) pData)[iCol];
SetValue(pImage, iCol, rV);
}
break;
case stFloat:
for( iCol = 0; iCol < nBlockXSize; iCol++ )
((float *) pImage)[iCol] = ((float *) pData)[iCol];
break;
case stReal:
for( iCol = 0; iCol < nBlockXSize; iCol++ )
((double *) pImage)[iCol] = ((double *) pData)[iCol];
break;
default:
CPLAssert(0);
}
// Officially we should also translate "nodata" values, but at this point
// we can't tell what's the "nodata" value of the destination (foreign) dataset
CPLFree( pData );
return CE_None;
}
void ILWISRasterBand::SetValue(void *pImage, int i, double rV) {
switch ( eDataType ) {
case GDT_Byte:
((GByte *)pImage)[i] = (GByte) rV;
break;
case GDT_UInt16:
((GUInt16 *) pImage)[i] = (GUInt16) rV;
break;
case GDT_Int16:
((GInt16 *) pImage)[i] = (GInt16) rV;
break;
case GDT_UInt32:
((GUInt32 *) pImage)[i] = (GUInt32) rV;
break;
case GDT_Int32:
((GInt32 *) pImage)[i] = (GInt32) rV;
break;
case GDT_Float32:
((float *) pImage)[i] = (float) rV;
break;
case GDT_Float64:
((double *) pImage)[i] = rV;
break;
default:
CPLAssert(0);
}
}
double ILWISRasterBand::GetValue(void *pImage, int i) {
double rV = 0; // Does GDAL have an official nodata value?
switch ( eDataType ) {
case GDT_Byte:
rV = ((GByte *)pImage)[i];
break;
case GDT_UInt16:
rV = ((GUInt16 *) pImage)[i];
break;
case GDT_Int16:
rV = ((GInt16 *) pImage)[i];
break;
case GDT_UInt32:
rV = ((GUInt32 *) pImage)[i];
break;
case GDT_Int32:
rV = ((GInt32 *) pImage)[i];
break;
case GDT_Float32:
rV = ((float *) pImage)[i];
break;
case GDT_Float64:
rV = ((double *) pImage)[i];
break;
default:
CPLAssert(0);
}
return rV;
}
void ILWISRasterBand::FillWithNoData(void * pImage)
{
if (psInfo.stStoreType == stByte)
memset(pImage, 0, nBlockXSize * nBlockYSize);
else
{
switch (psInfo.stStoreType)
{
case stInt:
((GInt16*)pImage)[0] = shUNDEF;
break;
case stLong:
((GInt32*)pImage)[0] = iUNDEF;
break;
case stFloat:
((float*)pImage)[0] = flUNDEF;
break;
case stReal:
((double*)pImage)[0] = rUNDEF;
break;
default: // should there be handling for stByte?
break;
}
int iItemSize = GDALGetDataTypeSize(eDataType) / 8;
for (int i = 1; i < nBlockXSize * nBlockYSize; ++i)
memcpy( ((char*)pImage) + iItemSize * i, (char*)pImage + iItemSize * (i - 1), iItemSize);
}
}
/************************************************************************/
/* IWriteBlock() */
/* */
/************************************************************************/
CPLErr ILWISRasterBand::IWriteBlock(int nBlockXOff, int nBlockYOff,
void* pImage)
{
// pImage has data; this function reads this data and stores it to fpRaw
// (foreign data to ILWIS data)
// Note that this function will not overwrite existing data in fpRaw, but
// it will "fill gaps" marked by "nodata" values
ILWISDataset* dataset = (ILWISDataset*) poDS;
CPLAssert( dataset != NULL
&& nBlockXOff == 0
&& nBlockYOff >= 0
&& pImage != NULL );
int nXSize = dataset->GetRasterXSize();
int nBlockSize = nBlockXSize * nBlockYSize * nSizePerPixel;
void *pData = CPLMalloc(nBlockSize);
VSIFSeekL( fpRaw, nBlockSize * nBlockYOff, SEEK_SET );
bool fDataExists = (VSIFReadL( pData, 1, nBlockSize, fpRaw ) >= 1);
// Copy the data from pImage to pData, and convert the store-type
// The data in pData has store-type = psInfo.stStoreType
// The data in pImage has store-type = eDataType
// They may not match, because we have chosen the most compact store-type,
// and for GDAL this may be different than for ILWIS.
if( fDataExists )
{
// fpRaw (thus pData) already has data
// Take care to not overwrite it
// thus only fill in gaps (nodata values)
switch (psInfo.stStoreType)
{
int iCol;
case stByte:
for (iCol = 0; iCol < nXSize; iCol++ )
if ((( GByte * )pData)[iCol] == 0)
{
double rV = GetValue(pImage, iCol);
(( GByte * )pData)[iCol] = (GByte)
(psInfo.bUseValueRange ? psInfo.vr.iRaw(rV) : rV);
}
break;
case stInt:
for (iCol = 0; iCol < nXSize; iCol++ )
if ((( GInt16 * )pData)[iCol] == shUNDEF)
{
double rV = GetValue(pImage, iCol);
(( GInt16 * )pData)[iCol] = (GInt16)
(psInfo.bUseValueRange ? psInfo.vr.iRaw(rV) : rV);
}
break;
case stLong:
for (iCol = 0; iCol < nXSize; iCol++ )
if ((( GInt32 * )pData)[iCol] == iUNDEF)
{
double rV = GetValue(pImage, iCol);
(( GInt32 * )pData)[iCol] = (GInt32)
(psInfo.bUseValueRange ? psInfo.vr.iRaw(rV) : rV);
}
break;
case stFloat:
for (iCol = 0; iCol < nXSize; iCol++ )
if ((( float * )pData)[iCol] == flUNDEF)
(( float * )pData)[iCol] = ((float* )pImage)[iCol];
break;
case stReal:
for (iCol = 0; iCol < nXSize; iCol++ )
if ((( double * )pData)[iCol] == rUNDEF)
(( double * )pData)[iCol] = ((double* )pImage)[iCol];
break;
}
}
else
{
// fpRaw (thus pData) is still empty, just write the data
switch (psInfo.stStoreType)
{
int iCol;
case stByte:
for (iCol = 0; iCol < nXSize; iCol++ )
{
double rV = GetValue(pImage, iCol);
(( GByte * )pData)[iCol] = (GByte)
(psInfo.bUseValueRange ? psInfo.vr.iRaw(rV) : rV);
}
break;
case stInt:
for (iCol = 0; iCol < nXSize; iCol++ )
{
double rV = GetValue(pImage, iCol);
(( GInt16 * )pData)[iCol] = (GInt16)
(psInfo.bUseValueRange ? psInfo.vr.iRaw(rV) : rV);
}
break;
case stLong:
for (iCol = 0; iCol < nXSize; iCol++ )
{
double rV = GetValue(pImage, iCol);
((GInt32 *)pData)[iCol] = (GInt32)
(psInfo.bUseValueRange ? psInfo.vr.iRaw(rV) : rV);
}
break;
case stFloat:
for (iCol = 0; iCol < nXSize; iCol++ )
(( float * )pData)[iCol] = ((float* )pImage)[iCol];
break;
case stReal:
for (iCol = 0; iCol < nXSize; iCol++ )
(( double * )pData)[iCol] = ((double* )pImage)[iCol];
break;
}
}
// Officially we should also translate "nodata" values, but at this point
// we can't tell what's the "nodata" value of the source (foreign) dataset
VSIFSeekL( fpRaw, nBlockSize * nBlockYOff, SEEK_SET );
if (VSIFWriteL( pData, 1, nBlockSize, fpRaw ) < 1)
{
CPLFree( pData );
CPLError( CE_Failure, CPLE_FileIO,
"Write of file failed with fwrite error.");
return CE_Failure;
}
CPLFree( pData );
return CE_None;
}
/************************************************************************/
/* GetNoDataValue() */
/************************************************************************/
double ILWISRasterBand::GetNoDataValue( int *pbSuccess )
{
if( pbSuccess != NULL )
*pbSuccess = TRUE;
if( eDataType == GDT_Float64 )
return rUNDEF;
else if( eDataType == GDT_Int32)
return iUNDEF;
else if( eDataType == GDT_Int16)
return shUNDEF;
else if( eDataType == GDT_Float32)
return flUNDEF;
else if( EQUAL(psInfo.stDomain.c_str(),"image")
|| EQUAL(psInfo.stDomain.c_str(),"colorcmp"))
{
*pbSuccess = false;
return 0;
}
else
return 0;
}
/************************************************************************/
/* ValueRange() */
/************************************************************************/
double Max(double a, double b)
{ return (a>=b && a!=rUNDEF) ? a : b; }
static double doubleConv(const char* s)
{
if (s == 0) return rUNDEF;
char *endptr;
char *begin = const_cast<char*>(s);
// skip leading spaces; strtol will return 0 on a string with only spaces
// which is not what we want
while (isspace((unsigned char)*begin)) ++begin;
if (strlen(begin) == 0) return rUNDEF;
errno = 0;
double r = strtod(begin, &endptr);
if ((0 == *endptr) && (errno==0))
return r;
while (*endptr != 0) { // check trailing spaces
if (*endptr != ' ')
return rUNDEF;
endptr++;
}
return r;
}
ValueRange::ValueRange(string sRng)
{
char* sRange = new char[sRng.length() + 1];
for (unsigned int i = 0; i < sRng.length(); ++i)
sRange[i] = sRng[i];
sRange[sRng.length()] = 0;
char *p1 = strchr(sRange, ':');
if (0 == p1)
return;
char *p3 = strstr(sRange, ",offset=");
if (0 == p3)
p3 = strstr(sRange, ":offset=");
_r0 = rUNDEF;
if (0 != p3) {
_r0 = doubleConv(p3+8);
*p3 = 0;
}
char *p2 = strrchr(sRange, ':');
_rStep = 1;
if (p1 != p2) { // step
_rStep = doubleConv(p2+1);
*p2 = 0;
}
p2 = strchr(sRange, ':');
if (p2 != 0) {
*p2 = 0;
_rLo = atof(sRange);
_rHi = atof(p2+1);
}
else {
_rLo = atof(sRange);
_rHi = _rLo;
}
init(_r0);
delete [] sRange;
}
ValueRange::ValueRange(double min, double max) // step = 1
{
_rLo = min;
_rHi = max;
_rStep = 1;
init();
}
ValueRange::ValueRange(double min, double max, double step)
{
_rLo = min;
_rHi = max;
_rStep = step;
init();
}
static ilwisStoreType stNeeded(unsigned long iNr)
{
if (iNr <= 256)
return stByte;
if (iNr <= SHRT_MAX)
return stInt;
return stLong;
}
void ValueRange::init()
{
init(rUNDEF);
}
void ValueRange::init(double rRaw0)
{
try {
_iDec = 0;
if (_rStep < 0)
_rStep = 0;
double r = _rStep;
if (r <= 1e-20)
_iDec = 3;
else while (r - floor(r) > 1e-20) {
r *= 10;
_iDec++;
if (_iDec > 10)
break;
}
short iBeforeDec = 1;
double rMax = MAX(fabs(get_rLo()), fabs(get_rHi()));
if (rMax != 0)
iBeforeDec = (short)floor(log10(rMax)) + 1;
if (get_rLo() < 0)
iBeforeDec++;
_iWidth = (short) (iBeforeDec + _iDec);
if (_iDec > 0)
_iWidth++;
if (_iWidth > 12)
_iWidth = 12;
if (_rStep < 1e-06)
{
st = stReal;
_rStep = 0;
}
else {
r = get_rHi() - get_rLo();
if (r <= ULONG_MAX) {
r /= _rStep;
r += 1;
}
r += 1;
if (r > LONG_MAX)
st = stReal;
else {
st = stNeeded((unsigned long)floor(r+0.5));
if (st < stByte)
st = stByte;
}
}
if (rUNDEF != rRaw0)
_r0 = rRaw0;
else {
_r0 = 0;
if (st <= stByte)
_r0 = -1;
}
if (st > stInt)
iRawUndef = iUNDEF;
else if (st == stInt)
iRawUndef = shUNDEF;
else
iRawUndef = 0;
}
catch (std::exception*) {
st = stReal;
_r0 = 0;
_rStep = 0.0001;
_rHi = 1e300;
_rLo = -1e300;
iRawUndef = iUNDEF;
}
}
string ValueRange::ToString()
{
char buffer[200];
if (fabs(get_rLo()) > 1.0e20 || fabs(get_rHi()) > 1.0e20)
sprintf(buffer, "%g:%g:%f:offset=%g", get_rLo(), get_rHi(), get_rStep(), get_rRaw0());
else if (get_iDec() >= 0)
sprintf(buffer, "%.*f:%.*f:%.*f:offset=%.0f", get_iDec(), get_rLo(), get_iDec(), get_rHi(), get_iDec(), get_rStep(), get_rRaw0());
else
sprintf(buffer, "%f:%f:%f:offset=%.0f", get_rLo(), get_rHi(), get_rStep(), get_rRaw0());
return string(buffer);
}
double ValueRange::rValue(int iRaw)
{
if (iRaw == iUNDEF || iRaw == iRawUndef)
return rUNDEF;
double rVal = iRaw + _r0;
rVal *= _rStep;
if (get_rLo() == get_rHi())
return rVal;
double rEpsilon = _rStep == 0.0 ? 1e-6 : _rStep / 3.0; // avoid any rounding problems with an epsilon directly based on the
// the stepsize
if ((rVal - get_rLo() < -rEpsilon) || (rVal - get_rHi() > rEpsilon))
return rUNDEF;
return rVal;
}
int ValueRange::iRaw(double rValue)
{
if (rValue == rUNDEF) // || !fContains(rValue))
return iUNDEF;
double rEpsilon = _rStep == 0.0 ? 1e-6 : _rStep / 3.0;
if (rValue - get_rLo() < -rEpsilon) // take a little rounding tolerance
return iUNDEF;
else if (rValue - get_rHi() > rEpsilon) // take a little rounding tolerance
return iUNDEF;
rValue /= _rStep;
double rVal = floor(rValue+0.5);
rVal -= _r0;
long iVal;
iVal = longConv(rVal);
return iVal;
}
/************************************************************************/
/* GDALRegister_ILWIS() */
/************************************************************************/
void GDALRegister_ILWIS()
{
GDALDriver *poDriver;
if( GDALGetDriverByName( "ILWIS" ) == NULL )
{
poDriver = new GDALDriver();
poDriver->SetDescription( "ILWIS" );
poDriver->SetMetadataItem( GDAL_DMD_LONGNAME,
"ILWIS Raster Map" );
poDriver->SetMetadataItem( GDAL_DMD_EXTENSION, "mpr/mpl" );
poDriver->SetMetadataItem( GDAL_DMD_CREATIONDATATYPES,
"Byte Int16 Int32 Float64" );
poDriver->SetMetadataItem( GDAL_DCAP_VIRTUALIO, "YES" );
poDriver->pfnOpen = ILWISDataset::Open;
poDriver->pfnCreate = ILWISDataset::Create;
poDriver->pfnCreateCopy = ILWISDataset::CreateCopy;
GetGDALDriverManager()->RegisterDriver( poDriver );
}
}
|