Changeset 13441 in josm
- Timestamp:
- 2018-02-18T22:04:03+01:00 (7 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data_nodist/projection/projection-reference-data
r13422 r13441 45881 45881 -160.07590829432814,32.11980859496357,-1.507518480579749E7,3571559.760558292 45882 45882 60.39325329944734,-8.89613845560865,6634638.778015221,-989205.463034758 45883 <EPSG:53026> +proj=stere +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs <>45884 40.42376185284917,36.89322879284906,4107255.971710112,4754605.86787299545885 -94.55718062357333,-2.9569970243057213,-1.3778069452766148E7,-713966.16396211345886 -109.37778469627341,66.87517335137669,-5428075.389411426,1.3473961573441872E745887 83.3250015628625,-61.29966292162436,5756276.921630432,-1.0585663346410455E745888 51.50577089554389,-5.272671963280075,6130745.113452208,-722887.33640205645889 -48.66531456772225,76.08115949811803,-1985932.242183774,1.0672337822148724E745890 47.41811879043098,-14.282330978918125,5491292.010941673,-1898531.04001387145891 -49.24282044156655,19.749998876468112,-5626735.978917658,2666995.86541915545892 45883 <EPSG:53028> +proj=cass +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m +no_defs <> 45893 45884 0.8578209028332946,5.758150627748947,94904.00671269,640348.421641093 … … 45917 45908 179.97821016834962,-22.600499677645132,1.8505676332751736E7,-2500296.421571374 45918 45909 -101.27859431467866,75.32867211875893,-2864467.891709976,8363623.966195609 45919 <EPSG:54026> +proj=stere +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs <>45920 107.59420860233638,62.16807985119611,1.3300667394706957E7,2.6252485023742866E745921 79.47062843598161,77.24374979370869,5356352.618325572,2.390397331620702E745922 -163.12295470459568,-55.26739984042287,-9371944.971985318,-4.6252381662244335E745923 -167.1113672686503,32.44572532708382,-2.737357860736383E7,7.749597928365001E745924 -93.31039725344527,44.02903546429987,-1.917036796802695E7,1.8438170025579017E745925 -10.119643837451605,68.44991126675434,-1214431.461080506,1.7384674665194422E745926 -24.145525272274455,34.7645275912879,-4906122.009879157,8269174.57033568145927 -133.17972355191225,17.083735579939727,-5.149636426121571E7,2.155811698059414E745928 45910 <EPSG:54028> +proj=cass +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs <> 45929 45911 -0.9415625415552098,-58.16518999118915,-55418.84717627,-6450068.264050342 -
trunk/data_nodist/projection/projection-regression-test-data
r13395 r13441 15929 15929 en 612336.6663195428 -6004596.491506822 15930 15930 ll2 -31.606909554154495 95.38371313695333 15931 EPSG:5302615932 ll 69.21901002534425 168.0954218302436515933 en 1.8712296762823246E7 1.0819158560322696E715934 ll2 69.21901002534425 168.0954218302436515935 15931 EPSG:53028 15936 15932 ll -35.72259959292767 0.08011233833985498 … … 16125 16121 en -5064010.776136052 6540685.607089906 16126 16122 ll2 58.98219418668685 -88.06214048573408 16127 EPSG:5402616128 ll 49.0603674470659 -67.8168496799660516129 en -7549337.1735777985 6285110.70117277716130 ll2 49.06036744706591 -67.8168496799660516131 16123 EPSG:54028 16132 16124 ll 21.630537363040688 0.6844020151189876 -
trunk/scripts/BuildProjectionDefinitions.java
r13395 r13441 46 46 private static int noEsri = 0; 47 47 private static int noOmercNoBounds = 0; 48 private static int noEquatorStereo = 0; 48 49 49 50 /** … … 111 112 System.out.println(String.format(" * projection is Oblique Mercator (requires bounds), but no bounds specified: %d entries", noOmercNoBounds)); 112 113 } 114 if (noEquatorStereo > 0) { 115 System.out.println(String.format(" * projection is Equatorial Stereographic (see #15970): %d entries", noEquatorStereo)); 116 } 113 117 System.out.println(); 114 118 System.out.println(String.format("written %d entries from %s", noJosm, JOSM_EPSG_FILE)); … … 194 198 noOmercNoBounds++; 195 199 } 200 // TODO: implement equatorial stereographic, see https://josm.openstreetmap.de/ticket/15970 201 if (result && "stere".equals(proj) && "0".equals(parameters.get(CustomProjection.Param.lat_0.key))) { 202 result = false; 203 noEquatorStereo++; 204 } 196 205 197 206 return result; -
trunk/test/unit/org/openstreetmap/josm/data/osm/search/SearchCompilerTest.java
r13430 r13441 53 53 @Rule 54 54 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 55 public JOSMTestRules test = new JOSMTestRules().preferences(); 55 public JOSMTestRules test = new JOSMTestRules().preferences().timeout(20000); 56 56 57 57 /** -
trunk/test/unit/org/openstreetmap/josm/io/CertificateAmendmentTest.java
r11943 r13441 26 26 @Rule 27 27 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 28 public JOSMTestRules test = new JOSMTestRules().platform().https(); 28 public JOSMTestRules test = new JOSMTestRules().platform().https().timeout(20000); 29 29 30 30 /**
Note:
See TracChangeset
for help on using the changeset viewer.