Skip to content

Commit 36706c0

Browse files
committed
version 1.1.0 updates
1 parent 5864fd2 commit 36706c0

26 files changed

Lines changed: 88 additions & 17 deletions

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ Adheres to [Semantic Versioning](http://semver.org/).
44

55
---
66

7-
## 1.0.1 (TBD)
7+
## 1.1.0 (TBD)
88

9-
* TBD
9+
* CRS to PROJ (PROJ.4) parser
10+
* Original text value stored precision for double values
11+
* Common Geo Datums, Ellipsoids, and Prime Meridians
12+
* Additional common Operation Method aliases
13+
* Temporal Datum method name correction, setOriginDateTime, previously setStartDateTime
1014

1115
## [1.0.0](https://github.com/ngageoint/coordinate-reference-systems-java/releases/tag/1.0.0) (06-24-2021)
1216

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>mil.nga</groupId>
55
<artifactId>crs</artifactId>
6-
<version>1.0.1</version>
6+
<version>1.1.0</version>
77
<packaging>jar</packaging>
88
<name>Coordinate Reference Systems</name>
99
<url>https://github.com/ngageoint/coordinate-reference-systems-java</url>

src/main/java/mil/nga/crs/common/Axis.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ public Double getMeridian() {
183183
* Get the meridian text
184184
*
185185
* @return meridian text
186+
* @since 1.1.0
186187
*/
187188
public String getMeridianText() {
188189
return meridianText;
@@ -213,6 +214,7 @@ public void setMeridian(Double meridian) {
213214
*
214215
* @param meridian
215216
* meridian
217+
* @since 1.1.0
216218
*/
217219
public void setMeridian(String meridian) {
218220
this.meridianText = meridian;
@@ -251,6 +253,7 @@ public Double getBearing() {
251253
* Get the bearing text
252254
*
253255
* @return bearing text
256+
* @since 1.1.0
254257
*/
255258
public String getBearingText() {
256259
return bearingText;
@@ -281,6 +284,7 @@ public void setBearing(Double bearing) {
281284
*
282285
* @param bearing
283286
* bearing text
287+
* @since 1.1.0
284288
*/
285289
public void setBearing(String bearing) {
286290
this.bearingText = bearing;

src/main/java/mil/nga/crs/common/DateTime.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@ public Double getFraction() {
429429
* Get the fraction text
430430
*
431431
* @return fraction text
432+
* @since 1.1.0
432433
*/
433434
public String getFractionText() {
434435
return fractionText;
@@ -460,6 +461,7 @@ public void setFraction(Double fraction) {
460461
*
461462
* @param fraction
462463
* fraction
464+
* @since 1.1.0
463465
*/
464466
public void setFraction(String fraction) {
465467
Double value = fraction != null ? Double.parseDouble(fraction) : null;

src/main/java/mil/nga/crs/common/DatumEnsemble.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ public DatumEnsemble(String name, DatumEnsembleMember member,
7979
* member
8080
* @param accuracy
8181
* accuracy
82+
* @since 1.1.0
8283
*/
8384
public DatumEnsemble(String name, DatumEnsembleMember member,
8485
String accuracy) {
@@ -113,6 +114,7 @@ public DatumEnsemble(String name, List<DatumEnsembleMember> members,
113114
* members
114115
* @param accuracy
115116
* accuracy
117+
* @since 1.1.0
116118
*/
117119
public DatumEnsemble(String name, List<DatumEnsembleMember> members,
118120
String accuracy) {
@@ -212,6 +214,7 @@ public double getAccuracy() {
212214
* Get the accuracy text
213215
*
214216
* @return accuracy text
217+
* @since 1.1.0
215218
*/
216219
public String getAccuracyText() {
217220
return accuracyText;
@@ -233,6 +236,7 @@ public void setAccuracy(double accuracy) {
233236
*
234237
* @param accuracy
235238
* accuracy
239+
* @since 1.1.0
236240
*/
237241
public void setAccuracy(String accuracy) {
238242
this.accuracyText = accuracy;

src/main/java/mil/nga/crs/common/Dynamic.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public Dynamic(double referenceEpoch) {
6363
*
6464
* @param referenceEpoch
6565
* reference epoch
66+
* @since 1.1.0
6667
*/
6768
public Dynamic(String referenceEpoch) {
6869
setReferenceEpoch(referenceEpoch);
@@ -81,6 +82,7 @@ public double getReferenceEpoch() {
8182
* Get the reference epoch text
8283
*
8384
* @return reference epoch text
85+
* @since 1.1.0
8486
*/
8587
public String getReferenceEpochText() {
8688
return referenceEpochText;
@@ -102,6 +104,7 @@ public void setReferenceEpoch(double referenceEpoch) {
102104
*
103105
* @param referenceEpoch
104106
* reference epoch
107+
* @since 1.1.0
105108
*/
106109
public void setReferenceEpoch(String referenceEpoch) {
107110
this.referenceEpochText = referenceEpoch;

src/main/java/mil/nga/crs/common/GeographicBoundingBox.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ public GeographicBoundingBox(double lowerLeftLatitude,
9898
* upper right latitude
9999
* @param upperRightLongitude
100100
* upper right longitude
101+
* @since 1.1.0
101102
*/
102103
public GeographicBoundingBox(String lowerLeftLatitude,
103104
String lowerLeftLongitude, String upperRightLatitude,
@@ -121,6 +122,7 @@ public double getLowerLeftLatitude() {
121122
* Get the lower left latitude text
122123
*
123124
* @return lower left latitude text
125+
* @since 1.1.0
124126
*/
125127
public String getLowerLeftLatitudeText() {
126128
return lowerLeftLatitudeText;
@@ -142,6 +144,7 @@ public void setLowerLeftLatitude(double lowerLeftLatitude) {
142144
*
143145
* @param lowerLeftLatitude
144146
* lower left latitude
147+
* @since 1.1.0
145148
*/
146149
public void setLowerLeftLatitude(String lowerLeftLatitude) {
147150
this.lowerLeftLatitudeText = lowerLeftLatitude;
@@ -161,6 +164,7 @@ public double getLowerLeftLongitude() {
161164
* Get the lower left longitude text
162165
*
163166
* @return lower left longitude text
167+
* @since 1.1.0
164168
*/
165169
public String getLowerLeftLongitudeText() {
166170
return lowerLeftLongitudeText;
@@ -182,6 +186,7 @@ public void setLowerLeftLongitude(double lowerLeftLongitude) {
182186
*
183187
* @param lowerLeftLongitude
184188
* lower left longitude
189+
* @since 1.1.0
185190
*/
186191
public void setLowerLeftLongitude(String lowerLeftLongitude) {
187192
this.lowerLeftLongitudeText = lowerLeftLongitude;
@@ -201,6 +206,7 @@ public double getUpperRightLatitude() {
201206
* Set the upper right latitude text
202207
*
203208
* @return upper right latitude text
209+
* @since 1.1.0
204210
*/
205211
public String getUpperRightLatitudeText() {
206212
return upperRightLatitudeText;
@@ -222,6 +228,7 @@ public void setUpperRightLatitude(double upperRightLatitude) {
222228
*
223229
* @param upperRightLatitude
224230
* upper right latitude
231+
* @since 1.1.0
225232
*/
226233
public void setUpperRightLatitude(String upperRightLatitude) {
227234
this.upperRightLatitudeText = upperRightLatitude;
@@ -241,6 +248,7 @@ public double getUpperRightLongitude() {
241248
* Set the upper right longitude text
242249
*
243250
* @return upper right longitude text
251+
* @since 1.1.0
244252
*/
245253
public String getUpperRightLongitudeText() {
246254
return upperRightLongitudeText;
@@ -262,6 +270,7 @@ public void setUpperRightLongitude(double upperRightLongitude) {
262270
*
263271
* @param upperRightLongitude
264272
* upper right longitude
273+
* @since 1.1.0
265274
*/
266275
public void setUpperRightLongitude(String upperRightLongitude) {
267276
this.upperRightLongitudeText = upperRightLongitude;

src/main/java/mil/nga/crs/common/Unit.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ public Unit(UnitType type, String name, double conversionFactor) {
9090
* name
9191
* @param conversionFactor
9292
* conversion factor
93+
* @since 1.1.0
9394
*/
9495
public Unit(UnitType type, String name, String conversionFactor) {
9596
setType(type);
@@ -148,6 +149,7 @@ public Double getConversionFactor() {
148149
* Get the conversion factor text
149150
*
150151
* @return conversion factor text
152+
* @since 1.1.0
151153
*/
152154
public String getConversionFactorText() {
153155
return conversionFactorText;
@@ -180,6 +182,7 @@ public void setConversionFactor(Double conversionFactor) {
180182
*
181183
* @param conversionFactor
182184
* conversion factor
185+
* @since 1.1.0
183186
*/
184187
public void setConversionFactor(String conversionFactor) {
185188
this.conversionFactorText = conversionFactor;
@@ -256,6 +259,7 @@ public void addIdentifiers(List<Identifier> identifiers) {
256259
* @param unit
257260
* unit
258261
* @return true if equal names
262+
* @since 1.1.0
259263
*/
260264
public boolean equalsName(Unit unit) {
261265
return name.equalsIgnoreCase(unit.getName());

src/main/java/mil/nga/crs/common/Units.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Common Units
1010
*
1111
* @author osbornb
12+
* @since 1.1.0
1213
*/
1314
public enum Units {
1415

src/main/java/mil/nga/crs/common/VerticalExtent.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public VerticalExtent(double minimumHeight, double maximumHeight) {
7070
* minimum height
7171
* @param maximumHeight
7272
* maximum height
73+
* @since 1.1.0
7374
*/
7475
public VerticalExtent(String minimumHeight, String maximumHeight) {
7576
this(minimumHeight, maximumHeight, null);
@@ -101,6 +102,7 @@ public VerticalExtent(double minimumHeight, double maximumHeight,
101102
* maximum height
102103
* @param unit
103104
* unit (length)
105+
* @since 1.1.0
104106
*/
105107
public VerticalExtent(String minimumHeight, String maximumHeight,
106108
Unit unit) {
@@ -122,6 +124,7 @@ public double getMinimumHeight() {
122124
* Get the minimum height text
123125
*
124126
* @return minimum height text
127+
* @since 1.1.0
125128
*/
126129
public String getMinimumHeightText() {
127130
return minimumHeightText;
@@ -143,6 +146,7 @@ public void setMinimumHeight(double minimumHeight) {
143146
*
144147
* @param minimumHeight
145148
* minimum height
149+
* @since 1.1.0
146150
*/
147151
public void setMinimumHeight(String minimumHeight) {
148152
this.minimumHeightText = minimumHeight;
@@ -162,6 +166,7 @@ public double getMaximumHeight() {
162166
* Get the maximum height text
163167
*
164168
* @return maximum height text
169+
* @since 1.1.0
165170
*/
166171
public String getMaximumHeightText() {
167172
return maximumHeightText;
@@ -183,6 +188,7 @@ public void setMaximumHeight(double maximumHeight) {
183188
*
184189
* @param maximumHeight
185190
* maximum height
191+
* @since 1.1.0
186192
*/
187193
public void setMaximumHeight(String maximumHeight) {
188194
this.maximumHeightText = maximumHeight;

0 commit comments

Comments
 (0)