-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
4,098 additions
and
4,103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
regression.out | ||
regression.diffs | ||
results/ | ||
tmp_check/ | ||
log/ | ||
Makefile | ||
sqldefines.h | ||
regression.out | ||
regression.diffs | ||
results/ | ||
tmp_check/ | ||
log/ | ||
Makefile | ||
sqldefines.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
{ | ||
"name": "pointcloud", | ||
"abstract": "LIDAR data support type and functions", | ||
"description": "Point and Patch types for LIDAR storage. Aggregate and access functions. JSON and binary serializations. Compression.", | ||
"version": "1.0.0", | ||
"release_status": "unstable", | ||
"maintainer": "Paul Ramsey", | ||
"license": "bsd", | ||
"provides": { | ||
"pointcloud": { | ||
"abstract": "LIDAR point and patch types and functions", | ||
"version": "1.0.0", | ||
"file": "", | ||
"docfile": "" | ||
} | ||
} | ||
"prereqs": { | ||
"runtime": { | ||
"requires": { | ||
} | ||
} | ||
}, | ||
"generated_by": "Paul Ramsey", | ||
"resources": { | ||
"bugtracker": { | ||
"web": "https://github.com/pgpointcloud/pointcloud" | ||
}, | ||
"repository": { | ||
"url": "", | ||
"web": "https://github.com/pgpointcloud/pointcloud", | ||
"type": "git" | ||
} | ||
}, | ||
"meta-spec": { | ||
"version": "1.0.0", | ||
"url": "http://pgxn.org/meta/spec.txt" | ||
}, | ||
"tags": [ | ||
"gis", "lidar" | ||
] | ||
} | ||
{ | ||
"name": "pointcloud", | ||
"abstract": "LIDAR data support type and functions", | ||
"description": "Point and Patch types for LIDAR storage. Aggregate and access functions. JSON and binary serializations. Compression.", | ||
"version": "1.0.0", | ||
"release_status": "unstable", | ||
"maintainer": "Paul Ramsey", | ||
"license": "bsd", | ||
"provides": { | ||
"pointcloud": { | ||
"abstract": "LIDAR point and patch types and functions", | ||
"version": "1.0.0", | ||
"file": "", | ||
"docfile": "" | ||
} | ||
} | ||
"prereqs": { | ||
"runtime": { | ||
"requires": { | ||
} | ||
} | ||
}, | ||
"generated_by": "Paul Ramsey", | ||
"resources": { | ||
"bugtracker": { | ||
"web": "https://github.com/pgpointcloud/pointcloud" | ||
}, | ||
"repository": { | ||
"url": "", | ||
"web": "https://github.com/pgpointcloud/pointcloud", | ||
"type": "git" | ||
} | ||
}, | ||
"meta-spec": { | ||
"version": "1.0.0", | ||
"url": "http://pgxn.org/meta/spec.txt" | ||
}, | ||
"tags": [ | ||
"gis", "lidar" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
# pointcloud | ||
|
||
include ../config.mk | ||
|
||
SQLPP = @SQLPP@ | ||
|
||
OBJS = \ | ||
pc_inout.o \ | ||
pc_access.o \ | ||
pc_editor.o \ | ||
pc_pgsql.o | ||
|
||
SED = sed | ||
EXTENSION = pointcloud | ||
EXTVERSION=$(shell cat ../Version.config) | ||
EXTVERSION_MAJOR=$(shell cut -d. -f1,2 ../Version.config) | ||
MODULE_big = $(EXTENSION)-$(EXTVERSION_MAJOR) | ||
UPGRADABLE = 1.1.0 1.1.1 | ||
|
||
UPGRADES = \ | ||
$(shell echo $(UPGRADABLE) | \ | ||
$(SED) 's/^/$(EXTENSION)--/' | \ | ||
$(SED) 's/$$/--$(EXTVERSION).sql/' | \ | ||
$(SED) 's/ /--$(EXTVERSION).sql $(EXTENSION)--/g') \ | ||
$(EXTENSION)--$(EXTVERSION)--$(EXTVERSION)next.sql \ | ||
$(EXTENSION)--$(EXTVERSION)next--$(EXTVERSION).sql | ||
|
||
DATA_built = \ | ||
$(EXTENSION).control \ | ||
$(EXTENSION)--$(EXTVERSION).sql \ | ||
$(UPGRADES) | ||
|
||
REGRESS = pointcloud pointcloud_columns schema | ||
|
||
ifneq ("$(LAZPERF_STATUS)", "disabled") | ||
REGRESS += pointcloud-laz | ||
endif | ||
|
||
# Add in build/link flags for lib | ||
PG_CPPFLAGS += -I../lib | ||
SHLIB_LINK += ../lib/$(LIB_A) ../lib/$(LIB_A_LAZPERF) -lstdc++ $(filter -lm, $(LIBS)) $(XML2_LDFLAGS) $(ZLIB_LDFLAGS) | ||
|
||
# We are going to use PGXS for sure | ||
include $(PGXS) | ||
|
||
$(EXTENSION).control: $(EXTENSION).control.in Makefile | ||
$(SED) -e 's/#POINTCLOUD_VERSION#/$(EXTVERSION)/' \ | ||
-e 's/#POINTCLOUD_VERSION_MAJOR#/$(EXTVERSION_MAJOR)/' $< > $@ | ||
|
||
$(EXTENSION)--$(EXTVERSION).sql: $(EXTENSION).sql.in Makefile | ||
$(SQLPP) -I. $< | $(SED) -e 's/#POINTCLOUD_VERSION#/$(EXTVERSION)/' > $@ | ||
|
||
# NOTE: relies on PERL being defined by PGXS | ||
$(EXTENSION)--%--$(EXTVERSION).sql: $(EXTENSION)--$(EXTVERSION).sql ../util/proc_upgrade.pl | ||
cat $< | ../util/proc_upgrade.pl > $@ | ||
|
||
$(EXTENSION)--%--$(EXTVERSION)next.sql: $(EXTENSION)--$(EXTVERSION)next--$(EXTVERSION).sql | ||
ln -f $< $@ | ||
# pointcloud | ||
|
||
include ../config.mk | ||
|
||
SQLPP = @SQLPP@ | ||
|
||
OBJS = \ | ||
pc_inout.o \ | ||
pc_access.o \ | ||
pc_editor.o \ | ||
pc_pgsql.o | ||
|
||
SED = sed | ||
EXTENSION = pointcloud | ||
EXTVERSION=$(shell cat ../Version.config) | ||
EXTVERSION_MAJOR=$(shell cut -d. -f1,2 ../Version.config) | ||
MODULE_big = $(EXTENSION)-$(EXTVERSION_MAJOR) | ||
UPGRADABLE = 1.1.0 1.1.1 | ||
|
||
UPGRADES = \ | ||
$(shell echo $(UPGRADABLE) | \ | ||
$(SED) 's/^/$(EXTENSION)--/' | \ | ||
$(SED) 's/$$/--$(EXTVERSION).sql/' | \ | ||
$(SED) 's/ /--$(EXTVERSION).sql $(EXTENSION)--/g') \ | ||
$(EXTENSION)--$(EXTVERSION)--$(EXTVERSION)next.sql \ | ||
$(EXTENSION)--$(EXTVERSION)next--$(EXTVERSION).sql | ||
|
||
DATA_built = \ | ||
$(EXTENSION).control \ | ||
$(EXTENSION)--$(EXTVERSION).sql \ | ||
$(UPGRADES) | ||
|
||
REGRESS = pointcloud pointcloud_columns schema | ||
|
||
ifneq ("$(LAZPERF_STATUS)", "disabled") | ||
REGRESS += pointcloud-laz | ||
endif | ||
|
||
# Add in build/link flags for lib | ||
PG_CPPFLAGS += -I../lib | ||
SHLIB_LINK += ../lib/$(LIB_A) ../lib/$(LIB_A_LAZPERF) -lstdc++ $(filter -lm, $(LIBS)) $(XML2_LDFLAGS) $(ZLIB_LDFLAGS) | ||
|
||
# We are going to use PGXS for sure | ||
include $(PGXS) | ||
|
||
$(EXTENSION).control: $(EXTENSION).control.in Makefile | ||
$(SED) -e 's/#POINTCLOUD_VERSION#/$(EXTVERSION)/' \ | ||
-e 's/#POINTCLOUD_VERSION_MAJOR#/$(EXTVERSION_MAJOR)/' $< > $@ | ||
|
||
$(EXTENSION)--$(EXTVERSION).sql: $(EXTENSION).sql.in Makefile | ||
$(SQLPP) -I. $< | $(SED) -e 's/#POINTCLOUD_VERSION#/$(EXTVERSION)/' > $@ | ||
|
||
# NOTE: relies on PERL being defined by PGXS | ||
$(EXTENSION)--%--$(EXTVERSION).sql: $(EXTENSION)--$(EXTVERSION).sql ../util/proc_upgrade.pl | ||
cat $< | ../util/proc_upgrade.pl > $@ | ||
|
||
$(EXTENSION)--%--$(EXTVERSION)next.sql: $(EXTENSION)--$(EXTVERSION)next--$(EXTVERSION).sql | ||
ln -f $< $@ |
Oops, something went wrong.