mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
formatting
This commit is contained in:
parent
8b53f78d1d
commit
dffb968f70
22
src/wkb.cpp
22
src/wkb.cpp
@ -67,7 +67,7 @@ public:
|
||||
wkbGeometryCollectionZ=1007
|
||||
};
|
||||
|
||||
wkb_reader(const char* wkb,unsigned size, wkbFormat format)
|
||||
wkb_reader(const char* wkb, unsigned size, wkbFormat format)
|
||||
: wkb_(wkb),
|
||||
size_(size),
|
||||
pos_(0),
|
||||
@ -76,16 +76,16 @@ public:
|
||||
// try to determine WKB format automatically
|
||||
if (format_ == wkbAuto)
|
||||
{
|
||||
if (size >= 44
|
||||
&& (unsigned char)(wkb_[0]) == (unsigned char)(0x00)
|
||||
&& (unsigned char)(wkb_[38]) == (unsigned char)(0x7C))
|
||||
{
|
||||
format_ = wkbSpatiaLite;
|
||||
}
|
||||
else
|
||||
{
|
||||
format_ = wkbGeneric;
|
||||
}
|
||||
if (size >= 44
|
||||
&& (unsigned char)(wkb_[0]) == (unsigned char)(0x00)
|
||||
&& (unsigned char)(wkb_[38]) == (unsigned char)(0x7C))
|
||||
{
|
||||
format_ = wkbSpatiaLite;
|
||||
}
|
||||
else
|
||||
{
|
||||
format_ = wkbGeneric;
|
||||
}
|
||||
}
|
||||
|
||||
switch (format_)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user