summaryrefslogtreecommitdiff
path: root/inst/kmzread.m
blob: 7dcc4ad35996e82e9b7e02b78e94c60e9b60ef7f (plain)
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
## Copyright (C) 2018-2020 Philip Nienhuis
## 
## This program is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
## 
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
## 
## You should have received a copy of the GNU General Public License
## along with this program.  If not, see
## <https://www.gnu.org/licenses/>.

## -*- texinfo -*- 
## @deftypefn {} {@var{retval} =} kmzread (@var{fname}, @dots{})
## Read a compressed Google kmz file and return its contents in a struct.
##
## See 'help kmlread' for more information.
##
## @seealso{kmlread}
## @end deftypefn

## Author: Philip Nienhuis <prnienhuis@users.sf.net>
## Created: 2018-05-13

function out = kmzread (fzname, varargin)

  ## Check filename etc.
  [~, fn, ext] = fileparts (fzname);
  if (isempty (ext))
    ext = ".kmz";
    fzname = [fzname ext];
  elseif (! strcmp (lower (ext), ".kmz"))
    error ("kmzread: filename extension should be '.kmz'");
  endif

  ## Unpack into temp directory
  tmpd = tempdir;
  fl = unzip (fzname, tempdir);
  if (isempty (fl{1}))
    ## Unzip failed. Check if a previous unzipped doc.kml file exists and wipe it
    if (unlink ([tempdir filesep "doc.kml"]) == 0)
      ## Yep existed, now try again
      fl = unzip (fzname, tempdir);
    else
      error ("kmzread: couldn't unzip %s", fzname);
    endif
  endif
  flname = [tempdir fl{1}];

  unwind_protect
    ## Read file
    out = kmlread (flname, varargin{:});
  unwind_protect_cleanup
    ## Delete unpacked file
    unlink (flname);
  end_unwind_protect

endfunction