shapereader
Read ESRI shapefiles
shp-pointz.h
Go to the documentation of this file.
1/*
2 * Read ESRI shapefiles
3 *
4 * Copyright (C) 2023 Andreas Vögele
5 *
6 * This library is free software; you can redistribute it and/or modify it
7 * under either the terms of the ISC License or the same terms as Perl.
8 */
9
10/* SPDX-License-Identifier: ISC OR Artistic-1.0-Perl OR GPL-1.0-or-later */
11
16#ifndef _SHAPEREADER_SHP_POINTZ_H
17#define _SHAPEREADER_SHP_POINTZ_H
18
25typedef struct shp_pointz_t {
26 double x;
27 double y;
28 double z;
29 double m;
31
32#endif
PointZ.
Definition: shp-pointz.h:25
double z
Z coordinate.
Definition: shp-pointz.h:28
double m
Measure.
Definition: shp-pointz.h:29
double x
X coordinate.
Definition: shp-pointz.h:26
double y
Y coordinate.
Definition: shp-pointz.h:27