shapereader
Read ESRI shapefiles
shp-pointm.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_POINTM_H
17#define _SHAPEREADER_SHP_POINTM_H
18
25typedef struct shp_pointm_t {
26 double x;
27 double y;
28 double m;
30
31#endif
PointM.
Definition: shp-pointm.h:25
double y
Y coordinate.
Definition: shp-pointm.h:27
double x
X coordinate.
Definition: shp-pointm.h:26
double m
Measure.
Definition: shp-pointm.h:28