mirror of
https://github.com/csharpee/Map-Projections.git
synced 2025-12-10 00:00:19 -05:00
Final Product
I finally got the exportations to all work. I'm ready for the release!
This commit is contained in:
parent
522569a11d
commit
e307b6d535
@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017 Justin Kunimune
|
||||
Copyright (c) 2018 Justin Kunimune
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
|
||||
BIN
MapAnalyzer.jar
BIN
MapAnalyzer.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
18
build.xml
18
build.xml
@ -40,22 +40,22 @@
|
||||
|
||||
<target name="deploy" depends="build">
|
||||
<exec executable="javapackager">
|
||||
<arg line="-deploy -native exe -srcfiles MapDesignerRaster.jar;LICENSE.md;input -appclass apps.MapDesignerRaster -outdir build -outfile MapDesignerRaster"/>
|
||||
<arg line="-deploy -native exe -srcdir ${dir.jarfile} -srcfiles MapDesignerRaster.jar;LICENSE.md;input -appclass apps.MapDesignerRaster -outdir build -outfile MapDesignerRaster"/>
|
||||
<arg line="-name "Map Designer Raster" -title "Map Designer (Raster)" -description "Design oblique raster world maps in different projections""/>
|
||||
<arg line="-vendor "Justin Kunimune" -Bcopyright="Copyright (c) 2017 Justin Kunimune""/>
|
||||
<arg line="-BappVersion=3.2 -Bicon=res\raster.ico -BlicenseFile=LICENSE.md"/>
|
||||
<arg line="-vendor "Justin Kunimune" -Bcopyright="Copyright (c) 2018 Justin Kunimune""/>
|
||||
<arg line="-BappVersion=3.3 -Bicon=res\raster.ico -BlicenseFile=LICENSE.md"/>
|
||||
</exec>
|
||||
<exec executable="javapackager">
|
||||
<arg line="-deploy -native exe -srcfiles MapDesignerVector.jar;LICENSE.md;input -appclass apps.MapDesignerVector -outdir build -outfile MapDesignerVector"/>
|
||||
<arg line="-deploy -native exe -srcdir ${dir.jarfile} -srcfiles MapDesignerVector.jar;LICENSE.md;input -appclass apps.MapDesignerVector -outdir build -outfile MapDesignerVector"/>
|
||||
<arg line="-name "Map Designer Vector" -title "Map Designer (Vector)" -description "Design oblique vector world maps in different projections""/>
|
||||
<arg line="-vendor "Justin Kunimune" -Bcopyright="Copyright (c) 2017 Justin Kunimune""/>
|
||||
<arg line="-BappVersion=3.2 -Bicon=res\vector.ico -BlicenseFile=LICENSE.md"/>
|
||||
<arg line="-vendor "Justin Kunimune" -Bcopyright="Copyright (c) 2018 Justin Kunimune""/>
|
||||
<arg line="-BappVersion=3.3 -Bicon=res\vector.ico -BlicenseFile=LICENSE.md"/>
|
||||
</exec>
|
||||
<exec executable="javapackager">
|
||||
<arg line="-deploy -native exe -srcfiles MapAnalyzer.jar;LICENSE.md;input -appclass apps.MapAnalyzer -outdir build -outfile MapAnalyzer"/>
|
||||
<arg line="-deploy -native exe -srcdir ${dir.jarfile} -srcfiles MapAnalyzer.jar;LICENSE.md -appclass apps.MapAnalyzer -outdir build -outfile MapAnalyzer"/>
|
||||
<arg line="-name "Map Analyzer" -title "Map Analyzer" -description "Compare distortion graphs and metrics for different map projections.""/>
|
||||
<arg line="-vendor "Justin Kunimune" -Bcopyright="Copyright (c) 2017 Justin Kunimune""/>
|
||||
<arg line="-BappVersion=3.2 -Bicon=res\analyz.ico -BlicenseFile=LICENSE.md"/>
|
||||
<arg line="-vendor "Justin Kunimune" -Bcopyright="Copyright (c) 2018 Justin Kunimune""/>
|
||||
<arg line="-BappVersion=3.3 -Bicon=res\analyz.ico -BlicenseFile=LICENSE.md"/>
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
|
||||
@ -70,7 +70,7 @@ public class MapAnalyzer extends MapApplication {
|
||||
|
||||
private static final double LN_10 = Math.log(10);
|
||||
|
||||
private static final int CHART_WIDTH = 420;
|
||||
private static final int CHART_WIDTH = 500;
|
||||
private static final int FINE_SAMP_NUM = 2048;
|
||||
private static final double GLOBE_RES = .01;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user