Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature 1810 shapes #2005

Merged
merged 28 commits into from
Jan 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9d54845
Per #1810, adding initial hooks for processing genesis shapefiles via…
JohnHalleyGotway Nov 22, 2021
d23f19a
Merge branch 'develop' into feature_1810_shapes
JohnHalleyGotway Dec 1, 2021
e93f221
Merge branch 'develop' into feature_1810_shapes
JohnHalleyGotway Dec 9, 2021
b2a1fae
Merge branch 'develop' into feature_1810_shapes
JohnHalleyGotway Dec 16, 2021
5ff5268
Per #1810, make formatting of revision histories consistent as 'MET #…
JohnHalleyGotway Dec 16, 2021
209ebc9
Per #1810, move grid_closed_poly.h/.cc from the gen_vx_mask applicati…
JohnHalleyGotway Dec 17, 2021
96170dc
Per #1810, update gen_vx_mask to call GridClosedPolyArray::set() inst…
JohnHalleyGotway Dec 17, 2021
aa16d55
Per #1810, no real changes, just formatting header.
JohnHalleyGotway Jan 3, 2022
83b2e65
Per #1810, add vx_gis.h library header file.
JohnHalleyGotway Jan 3, 2022
72cee22
Per #1810, add DbfFile class
JohnHalleyGotway Jan 5, 2022
cd66c81
Per #1810, update the makefile for tc_gen to link to the vx_gis library.
JohnHalleyGotway Jan 5, 2022
b054189
Per #1810, update the ProbGenPCTInfo class so that it can be used to …
JohnHalleyGotway Jan 5, 2022
615064f
Per #1810, complete logic in score_genesis_shape.
JohnHalleyGotway Jan 5, 2022
3ab9944
Per #1810, fix bug in tc_gen writing PJC and PRC output lines for gen…
JohnHalleyGotway Jan 5, 2022
de57793
Per #1810, add a tc_gen call to demonstrate the verification of genes…
JohnHalleyGotway Jan 5, 2022
7202f2f
Per #1810, update the tc_gen documentation with details about the -sh…
JohnHalleyGotway Jan 5, 2022
5e384d6
Per #1810, round the shapefile timestamp to nearest synoptic time (00…
JohnHalleyGotway Jan 6, 2022
3362ba4
Per #1810, the ShpArray template class needed an n_elements() member …
JohnHalleyGotway Jan 7, 2022
014e87c
Per #1810, define ShpPolyRecord::clear() so that the contents of the …
JohnHalleyGotway Jan 7, 2022
d0b99fd
Per #1810, add GenShapeInfo and GenShapeInfoArray classes in the vx_t…
JohnHalleyGotway Jan 7, 2022
70e7d93
Per #1810, update the ProbGenPCTInfo and TCGenVxOpt with changes to h…
JohnHalleyGotway Jan 7, 2022
f4c1dc4
Per #1810, lots and lots of changes to tc-gen to support genesis shap…
JohnHalleyGotway Jan 7, 2022
3f70c61
Per #1810, update the TC-Gen shapefile unit test to demonstrate the u…
JohnHalleyGotway Jan 7, 2022
72efdb2
Per #1810, updates to tc-gen documentation.
JohnHalleyGotway Jan 7, 2022
7faf34f
Per #1810, list shapetype_to_string.h first.
JohnHalleyGotway Jan 7, 2022
bd99a7b
Per #1810, remove commented out lines to avoid confusion.
JohnHalleyGotway Jan 7, 2022
637da5d
Per #1810, very minor clean up removing a blank line and unnecessary …
JohnHalleyGotway Jan 10, 2022
a384eff
Merge branch 'develop' into feature_1810_shapes
JohnHalleyGotway Jan 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 58 additions & 15 deletions met/docs/Users_Guide/tc-gen.rst

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion met/src/basic/vx_config/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ include ${top_srcdir}/Make-include
# Yacc/lex flags

AM_YFLAGS = --defines=config.tab.h -p config
#AM_LFLAGS = --prefix=config --outfile=lex.yy.c

# The library

Expand Down
1 change: 0 additions & 1 deletion met/src/libcode/vx_color/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ include ${top_srcdir}/Make-include
# YACC/LEX flags

AM_YFLAGS = --defines=color_parser_yacc.h -p color
#AM_LFLAGS = --prefix=color --outfile=lex.yy.c

# The library

Expand Down
28 changes: 10 additions & 18 deletions met/src/libcode/vx_gis/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,16 @@ include ${top_srcdir}/Make-include

noinst_LIBRARIES = libvx_gis.a

libvx_gis_a_SOURCES = shapetype_to_string.h \
shapetype_to_string.cc \
dbf_file.cc \
dbf_file.h \
shp_array.h \
shp_file.cc \
shp_file.h \
shp_point_record.cc \
shp_point_record.h \
shp_poly_record.cc \
shp_poly_record.h \
shp_types.h \
shx_file.cc \
shx_file.h




libvx_gis_a_SOURCES = \
shapetype_to_string.cc shapetype_to_string.h \
dbf_file.cc dbf_file.h \
shx_file.cc shx_file.h \
shp_file.cc shp_file.h \
shp_types.h \
shp_array.h \
shp_point_record.cc shp_point_record.h \
shp_poly_record.cc shp_poly_record.h \
vx_gis.h
libvx_gis_a_CPPFLAGS = ${MET_CPPFLAGS}

# If we are in development mode, generate the "to_string" files and
Expand Down
Loading