aspose-gis-net 25.7.0__py3-none-win32.whl → 25.9.0__py3-none-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aspose-gis-net might be problematic. Click here for more details.

Files changed (105) hide show
  1. aspose/assemblies/gis/Aspose.GIS.dll +0 -0
  2. aspose/assemblies/gis/Microsoft.Data.Sqlite.dll +0 -0
  3. aspose/assemblies/gis/SQLitePCLRaw.batteries_v2.dll +0 -0
  4. aspose/assemblies/gis/SQLitePCLRaw.core.dll +0 -0
  5. aspose/assemblies/gis/SQLitePCLRaw.provider.e_sqlite3.dll +0 -0
  6. aspose/assemblies/gis/WrpInterop.Aspose.Gis.dll +0 -0
  7. aspose/assemblies/gis/e_sqlite3.dll +0 -0
  8. aspose/gis/__init__.pyi +606 -76
  9. aspose/gis/common/__init__.pyi +101 -9
  10. aspose/gis/common/formats/__init__.pyi +2 -0
  11. aspose/gis/common/formats/dbase/__init__.pyi +21 -0
  12. aspose/gis/common/formats/gdbtable/__init__.pyi +38 -1
  13. aspose/gis/common/formats/mapinfo/__init__.pyi +50 -7
  14. aspose/gis/common/formats/mapinfo/graphicalobjects/__init__.pyi +42 -1
  15. aspose/gis/common/formats/mapinfo/interchangeformat/__init__.pyi +49 -5
  16. aspose/gis/common/formats/mapinfo/styling/__init__.pyi +34 -0
  17. aspose/gis/common/formats/mapinfo/tabformat/__init__.pyi +2 -0
  18. aspose/gis/common/formats/mapinfo/tabformat/map/__init__.pyi +71 -11
  19. aspose/gis/common/formats/wkb/__init__.pyi +2 -0
  20. aspose/gis/common/formats/wkt/__init__.pyi +28 -0
  21. aspose/gis/common/formats/xml/__init__.pyi +14 -0
  22. aspose/gis/common/io/__init__.pyi +33 -8
  23. aspose/gis/epsg/__init__.pyi +71 -0
  24. aspose/gis/formats/__init__.pyi +2 -0
  25. aspose/gis/formats/bmpw/__init__.pyi +2 -0
  26. aspose/gis/formats/csv/__init__.pyi +9 -0
  27. aspose/gis/formats/database/__init__.pyi +5 -0
  28. aspose/gis/formats/database/dataediting/__init__.pyi +2 -0
  29. aspose/gis/formats/database/fromdefinition/__init__.pyi +2 -0
  30. aspose/gis/formats/esriascii/__init__.pyi +6 -0
  31. aspose/gis/formats/esrijson/__init__.pyi +6 -0
  32. aspose/gis/formats/filegdb/__init__.pyi +9 -0
  33. aspose/gis/formats/gdal/__init__.pyi +8 -0
  34. aspose/gis/formats/geojson/__init__.pyi +6 -0
  35. aspose/gis/formats/geojsonseq/__init__.pyi +6 -0
  36. aspose/gis/formats/geopackage/__init__.pyi +746 -0
  37. aspose/gis/formats/geotiff/__init__.pyi +6 -0
  38. aspose/gis/formats/gml/__init__.pyi +6 -0
  39. aspose/gis/formats/gpx/__init__.pyi +6 -0
  40. aspose/gis/formats/infile/__init__.pyi +6 -0
  41. aspose/gis/formats/inmemory/__init__.pyi +2 -0
  42. aspose/gis/formats/jpegw/__init__.pyi +2 -0
  43. aspose/gis/formats/kml/__init__.pyi +526 -0
  44. aspose/gis/formats/kml/specificfields/__init__.pyi +1131 -0
  45. aspose/gis/formats/kml/styles/__init__.pyi +41 -2
  46. aspose/gis/formats/mapinfointerchange/__init__.pyi +6 -0
  47. aspose/gis/formats/mapinfotab/__init__.pyi +6 -0
  48. aspose/gis/formats/osmxml/__init__.pyi +6 -0
  49. aspose/gis/formats/pngw/__init__.pyi +2 -0
  50. aspose/gis/formats/postgis/__init__.pyi +6 -0
  51. aspose/gis/formats/shapefile/__init__.pyi +6 -0
  52. aspose/gis/formats/sqlserver/__init__.pyi +6 -0
  53. aspose/gis/formats/tiffw/__init__.pyi +2 -0
  54. aspose/gis/formats/topojson/__init__.pyi +15 -0
  55. aspose/gis/formats/worldfile/__init__.pyi +2 -0
  56. aspose/gis/formats/xyztile/__init__.pyi +17 -0
  57. aspose/gis/geometries/__init__.pyi +853 -324
  58. aspose/gis/geotools/__init__.pyi +46 -0
  59. aspose/gis/geotools/extensions/__init__.pyi +2 -0
  60. aspose/gis/geotools/layersmap/__init__.pyi +17 -0
  61. aspose/gis/geotools/mapbuilder/__init__.pyi +9 -0
  62. aspose/gis/geotools/wayanalyzer/__init__.pyi +14 -0
  63. aspose/gis/imagemetadata/__init__.pyi +5 -3
  64. aspose/gis/indexing/__init__.pyi +10 -0
  65. aspose/gis/indexing/bplustree/__init__.pyi +5 -0
  66. aspose/gis/indexing/qixtree/__init__.pyi +5 -0
  67. aspose/gis/indexing/rtree/__init__.pyi +5 -0
  68. aspose/gis/labeling/__init__.pyi +34 -0
  69. aspose/gis/labeling/line/__init__.pyi +26 -0
  70. aspose/gis/painting/__init__.pyi +87 -8
  71. aspose/gis/projections/__init__.pyi +16 -0
  72. aspose/gis/raster/__init__.pyi +36 -0
  73. aspose/gis/raster/web/__init__.pyi +8 -0
  74. aspose/gis/relationship/__init__.pyi +2 -0
  75. aspose/gis/relationship/joins/__init__.pyi +10 -0
  76. aspose/gis/rendering/__init__.pyi +126 -10
  77. aspose/gis/rendering/colorizers/__init__.pyi +39 -10
  78. aspose/gis/rendering/formats/__init__.pyi +2 -0
  79. aspose/gis/rendering/formats/bmp/__init__.pyi +2 -0
  80. aspose/gis/rendering/formats/jpeg/__init__.pyi +2 -0
  81. aspose/gis/rendering/formats/png/__init__.pyi +2 -0
  82. aspose/gis/rendering/formats/svg/__init__.pyi +2 -0
  83. aspose/gis/rendering/labelings/__init__.pyi +73 -10
  84. aspose/gis/rendering/sld/__init__.pyi +5 -0
  85. aspose/gis/rendering/symbolizers/__init__.pyi +193 -28
  86. aspose/gis/spatialreferencing/__init__.pyi +504 -154
  87. aspose/gis/topology/__init__.pyi +39 -0
  88. aspose/gis/topology/algorithms/__init__.pyi +2 -0
  89. aspose/gis/topology/buffer/__init__.pyi +8 -0
  90. aspose/gis/topology/graph/__init__.pyi +7 -0
  91. aspose/gis.cp310-win32.pyd +0 -0
  92. aspose/gis.cp311-win32.pyd +0 -0
  93. aspose/gis.cp312-win32.pyd +0 -0
  94. aspose/gis.cp313-win32.pyd +0 -0
  95. aspose/gis.cp35-win32.pyd +0 -0
  96. aspose/gis.cp36-win32.pyd +0 -0
  97. aspose/gis.cp37-win32.pyd +0 -0
  98. aspose/gis.cp38-win32.pyd +0 -0
  99. aspose/gis.cp39-win32.pyd +0 -0
  100. aspose/pydrawing/__init__.pyi +29 -7
  101. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/METADATA +6 -3
  102. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/RECORD +106 -102
  103. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/WHEEL +0 -0
  104. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/entry_points.txt +0 -0
  105. {aspose_gis_net-25.7.0.dist-info → aspose_gis_net-25.9.0.dist-info}/top_level.txt +0 -0
@@ -35,6 +35,7 @@ import aspose.gis.formats.filegdb
35
35
  import aspose.gis.formats.gdal
36
36
  import aspose.gis.formats.geojson
37
37
  import aspose.gis.formats.geojsonseq
38
+ import aspose.gis.formats.geopackage
38
39
  import aspose.gis.formats.geotiff
39
40
  import aspose.gis.formats.gml
40
41
  import aspose.gis.formats.gpx
@@ -42,6 +43,7 @@ import aspose.gis.formats.infile
42
43
  import aspose.gis.formats.inmemory
43
44
  import aspose.gis.formats.jpegw
44
45
  import aspose.gis.formats.kml
46
+ import aspose.gis.formats.kml.specificfields
45
47
  import aspose.gis.formats.kml.styles
46
48
  import aspose.gis.formats.mapinfointerchange
47
49
  import aspose.gis.formats.mapinfotab
@@ -92,6 +94,13 @@ import aspose.gis.topology.graph
92
94
  class Axis:
93
95
  '''An axis describes one dimension of SRS.'''
94
96
 
97
+ def __init__(self, name : str, direction : aspose.gis.spatialreferencing.AxisDirection) -> None:
98
+ '''Creates new instance.
99
+
100
+ :param name: Name of the axis.
101
+ :param direction: Direction of the axis.'''
102
+ raise NotImplementedError()
103
+
95
104
  @property
96
105
  def name(self) -> str:
97
106
  '''Name of this axis.'''
@@ -126,6 +135,28 @@ class Axis:
126
135
  class BursaWolfParameters:
127
136
  '''Class that contains parameters of Bursa-Wolf formula to transform to another datum.'''
128
137
 
138
+ @overload
139
+ def __init__(self, dx : float, dy : float, dz : float) -> None:
140
+ '''Creates new instance of :py:class:`aspose.gis.spatialreferencing.BursaWolfParameters`.
141
+
142
+ :param dx: Dx in meters.
143
+ :param dy: Dy in meters.
144
+ :param dz: Dz in meters.'''
145
+ raise NotImplementedError()
146
+
147
+ @overload
148
+ def __init__(self, dx : float, dy : float, dz : float, rx : float, ry : float, rz : float, scale : float) -> None:
149
+ '''Creates new instance of :py:class:`aspose.gis.spatialreferencing.BursaWolfParameters`.
150
+
151
+ :param dx: Dx in meters.
152
+ :param dy: Dy in meters.
153
+ :param dz: Dz in meters.
154
+ :param rx: Rx in seconds.
155
+ :param ry: Ry in seconds.
156
+ :param rz: Rz in seconds.
157
+ :param scale: Scale in parts per million.'''
158
+ raise NotImplementedError()
159
+
129
160
  def equals(self, other : aspose.gis.spatialreferencing.BursaWolfParameters) -> bool:
130
161
  '''Indicates whether the current object is equal to another object of the same type.
131
162
 
@@ -133,8 +164,11 @@ class BursaWolfParameters:
133
164
  :returns: true if the current object is equal to the ``other`` parameter; otherwise, false.'''
134
165
  raise NotImplementedError()
135
166
 
136
- null : aspose.gis.spatialreferencing.BursaWolfParameters
137
- '''Special value, indicating that parameters are unknown.'''
167
+ @property
168
+ def null(self) -> aspose.gis.spatialreferencing.BursaWolfParameters:
169
+ '''Special value, indicating that parameters are unknown.'''
170
+ raise NotImplementedError()
171
+
138
172
  @property
139
173
  def dx(self) -> float:
140
174
  '''Dx in meters.'''
@@ -353,24 +387,51 @@ class CompoundSpatialReferenceSystem(SpatialReferenceSystem):
353
387
  '''Identifier of this identifiable object.'''
354
388
  raise NotImplementedError()
355
389
 
356
- wgs84 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
357
- '''WGS 84 (EPSG:4326) spatial reference system.'''
358
- web_mercator : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
359
- '''Web Mercator (EPSG:3857) spatial reference system.'''
360
- wgs72 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
361
- '''WGS 72 (EPSG:4322) spatial reference system.'''
362
- nad83 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
363
- '''NAD 83 (EPSG:4269) spatial reference system.'''
364
- etrs89 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
365
- '''ETRS 89 (EPSG:4258) spatial reference system.'''
366
- etrs_89_lambert_conformal_conic : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
367
- '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
368
- etrs_89_lambert_azimuthal_equal_area : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
369
- '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
370
- osgb36 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
371
- '''OSGB 36 (EPSG:4277) spatial reference system.'''
372
- osgb_36_british_national_grid : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
373
- '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
390
+ @property
391
+ def wgs84(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
392
+ '''WGS 84 (EPSG:4326) spatial reference system.'''
393
+ raise NotImplementedError()
394
+
395
+ @property
396
+ def web_mercator(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
397
+ '''Web Mercator (EPSG:3857) spatial reference system.'''
398
+ raise NotImplementedError()
399
+
400
+ @property
401
+ def wgs72(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
402
+ '''WGS 72 (EPSG:4322) spatial reference system.'''
403
+ raise NotImplementedError()
404
+
405
+ @property
406
+ def nad83(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
407
+ '''NAD 83 (EPSG:4269) spatial reference system.'''
408
+ raise NotImplementedError()
409
+
410
+ @property
411
+ def etrs89(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
412
+ '''ETRS 89 (EPSG:4258) spatial reference system.'''
413
+ raise NotImplementedError()
414
+
415
+ @property
416
+ def etrs_89_lambert_conformal_conic(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
417
+ '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
418
+ raise NotImplementedError()
419
+
420
+ @property
421
+ def etrs_89_lambert_azimuthal_equal_area(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
422
+ '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
423
+ raise NotImplementedError()
424
+
425
+ @property
426
+ def osgb36(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
427
+ '''OSGB 36 (EPSG:4277) spatial reference system.'''
428
+ raise NotImplementedError()
429
+
430
+ @property
431
+ def osgb_36_british_national_grid(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
432
+ '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
433
+ raise NotImplementedError()
434
+
374
435
  @property
375
436
  def is_valid(self) -> bool:
376
437
  '''Same as :py:func:`aspose.gis.spatialreferencing.SpatialReferenceSystem.validate`, but don\'t return error message.'''
@@ -469,6 +530,15 @@ class CompoundSpatialReferenceSystem(SpatialReferenceSystem):
469
530
  class Ellipsoid(IdentifiableObject):
470
531
  '''Ellipsoid represents an ellipsoid, which approximates earth.'''
471
532
 
533
+ def __init__(self, name : str, semi_major_axis : float, inverse_flattening : float, identifier : aspose.gis.spatialreferencing.Identifier) -> None:
534
+ '''Creates new Ellipsoid.
535
+
536
+ :param name: Name of the ellipsoid.
537
+ :param semi_major_axis: Semi major axis of ellipsoid.
538
+ :param inverse_flattening: Inverse flattening of ellipsoid. Should be 0 to create a spheroid.
539
+ :param identifier: Identifier of the ellipsoid.'''
540
+ raise NotImplementedError()
541
+
472
542
  @overload
473
543
  @staticmethod
474
544
  def is_equivalent(ellipsoid1 : aspose.gis.spatialreferencing.Ellipsoid, ellipsoid2 : aspose.gis.spatialreferencing.Ellipsoid) -> bool:
@@ -504,14 +574,26 @@ class Ellipsoid(IdentifiableObject):
504
574
  '''Identifier of this identifiable object.'''
505
575
  raise NotImplementedError()
506
576
 
507
- wgs84 : aspose.gis.spatialreferencing.Ellipsoid
508
- '''WGS 84 Ellipsoid.'''
509
- wgs72 : aspose.gis.spatialreferencing.Ellipsoid
510
- '''WGS 72 Ellipsoid.'''
511
- grs80 : aspose.gis.spatialreferencing.Ellipsoid
512
- '''GRS 1980 Ellipsoid.'''
513
- airy : aspose.gis.spatialreferencing.Ellipsoid
514
- '''Airy ellipsoid.'''
577
+ @property
578
+ def wgs84(self) -> aspose.gis.spatialreferencing.Ellipsoid:
579
+ '''WGS 84 Ellipsoid.'''
580
+ raise NotImplementedError()
581
+
582
+ @property
583
+ def wgs72(self) -> aspose.gis.spatialreferencing.Ellipsoid:
584
+ '''WGS 72 Ellipsoid.'''
585
+ raise NotImplementedError()
586
+
587
+ @property
588
+ def grs80(self) -> aspose.gis.spatialreferencing.Ellipsoid:
589
+ '''GRS 1980 Ellipsoid.'''
590
+ raise NotImplementedError()
591
+
592
+ @property
593
+ def airy(self) -> aspose.gis.spatialreferencing.Ellipsoid:
594
+ '''Airy ellipsoid.'''
595
+ raise NotImplementedError()
596
+
515
597
  @property
516
598
  def is_valid(self) -> bool:
517
599
  '''Detects whether ellipsoid is valid: its semi major axis is more then 0 and inverse flattening is positive or equal to 0.'''
@@ -715,24 +797,51 @@ class GeocentricSpatialReferenceSystem(SpatialReferenceSystem):
715
797
  '''Identifier of this identifiable object.'''
716
798
  raise NotImplementedError()
717
799
 
718
- wgs84 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
719
- '''WGS 84 (EPSG:4326) spatial reference system.'''
720
- web_mercator : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
721
- '''Web Mercator (EPSG:3857) spatial reference system.'''
722
- wgs72 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
723
- '''WGS 72 (EPSG:4322) spatial reference system.'''
724
- nad83 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
725
- '''NAD 83 (EPSG:4269) spatial reference system.'''
726
- etrs89 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
727
- '''ETRS 89 (EPSG:4258) spatial reference system.'''
728
- etrs_89_lambert_conformal_conic : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
729
- '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
730
- etrs_89_lambert_azimuthal_equal_area : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
731
- '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
732
- osgb36 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
733
- '''OSGB 36 (EPSG:4277) spatial reference system.'''
734
- osgb_36_british_national_grid : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
735
- '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
800
+ @property
801
+ def wgs84(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
802
+ '''WGS 84 (EPSG:4326) spatial reference system.'''
803
+ raise NotImplementedError()
804
+
805
+ @property
806
+ def web_mercator(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
807
+ '''Web Mercator (EPSG:3857) spatial reference system.'''
808
+ raise NotImplementedError()
809
+
810
+ @property
811
+ def wgs72(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
812
+ '''WGS 72 (EPSG:4322) spatial reference system.'''
813
+ raise NotImplementedError()
814
+
815
+ @property
816
+ def nad83(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
817
+ '''NAD 83 (EPSG:4269) spatial reference system.'''
818
+ raise NotImplementedError()
819
+
820
+ @property
821
+ def etrs89(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
822
+ '''ETRS 89 (EPSG:4258) spatial reference system.'''
823
+ raise NotImplementedError()
824
+
825
+ @property
826
+ def etrs_89_lambert_conformal_conic(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
827
+ '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
828
+ raise NotImplementedError()
829
+
830
+ @property
831
+ def etrs_89_lambert_azimuthal_equal_area(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
832
+ '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
833
+ raise NotImplementedError()
834
+
835
+ @property
836
+ def osgb36(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
837
+ '''OSGB 36 (EPSG:4277) spatial reference system.'''
838
+ raise NotImplementedError()
839
+
840
+ @property
841
+ def osgb_36_british_national_grid(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
842
+ '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
843
+ raise NotImplementedError()
844
+
736
845
  @property
737
846
  def is_valid(self) -> bool:
738
847
  '''Same as :py:func:`aspose.gis.spatialreferencing.SpatialReferenceSystem.validate`, but don\'t return error message.'''
@@ -834,6 +943,9 @@ class GeocentricSpatialReferenceSystemParameters:
834
943
  Parameters have reasonable defaults, so you will have to assign only some of them.
835
944
  If you assign to any parameter, a default value will be used.'''
836
945
 
946
+ def __init__(self) -> None:
947
+ raise NotImplementedError()
948
+
837
949
  @property
838
950
  def name(self) -> str:
839
951
  '''Name of geocentric SRS. Default is "Unnamed".'''
@@ -922,6 +1034,17 @@ class GeocentricSpatialReferenceSystemParameters:
922
1034
  class GeographicDatum(IdentifiableObject):
923
1035
  '''Geographic datum relates longitude and latitude to particular place on earth.'''
924
1036
 
1037
+ def __init__(self, name : str, ellipsoid : aspose.gis.spatialreferencing.Ellipsoid, to_wgs_84_parameters : aspose.gis.spatialreferencing.BursaWolfParameters, identifier : aspose.gis.spatialreferencing.Identifier) -> None:
1038
+ '''Creates new instance.
1039
+
1040
+ :param name: Name of this datum.
1041
+ :param ellipsoid: Ellipsoid of this datum. Can\'t be null.
1042
+ :param to_wgs_84_parameters: Parameters, that can be given to bursa wolf formula, to convert coordinates in this datum to coordinates in WGS84 datum.
1043
+ If this datum is close to WGS84 and no transformation needed, pass bursa wolf parameters with all values set to 0.
1044
+ If null, ToWgs84 will be set to :py:attr:`aspose.gis.spatialreferencing.BursaWolfParameters.is_null` parameters.
1045
+ :param identifier: Identifier of this datum.'''
1046
+ raise NotImplementedError()
1047
+
925
1048
  @overload
926
1049
  @staticmethod
927
1050
  def is_equivalent(datum1 : aspose.gis.spatialreferencing.GeographicDatum, datum2 : aspose.gis.spatialreferencing.GeographicDatum) -> bool:
@@ -959,16 +1082,31 @@ class GeographicDatum(IdentifiableObject):
959
1082
  '''Identifier of this identifiable object.'''
960
1083
  raise NotImplementedError()
961
1084
 
962
- wgs84 : aspose.gis.spatialreferencing.GeographicDatum
963
- '''WGS 84 datum.'''
964
- wgs72 : aspose.gis.spatialreferencing.GeographicDatum
965
- '''WGS 72 datum.'''
966
- nad83 : aspose.gis.spatialreferencing.GeographicDatum
967
- '''NAD 83 datum.'''
968
- etrs89 : aspose.gis.spatialreferencing.GeographicDatum
969
- '''ETRS 89 datum.'''
970
- osgb36 : aspose.gis.spatialreferencing.GeographicDatum
971
- '''OSGB 1936 datum.'''
1085
+ @property
1086
+ def wgs84(self) -> aspose.gis.spatialreferencing.GeographicDatum:
1087
+ '''WGS 84 datum.'''
1088
+ raise NotImplementedError()
1089
+
1090
+ @property
1091
+ def wgs72(self) -> aspose.gis.spatialreferencing.GeographicDatum:
1092
+ '''WGS 72 datum.'''
1093
+ raise NotImplementedError()
1094
+
1095
+ @property
1096
+ def nad83(self) -> aspose.gis.spatialreferencing.GeographicDatum:
1097
+ '''NAD 83 datum.'''
1098
+ raise NotImplementedError()
1099
+
1100
+ @property
1101
+ def etrs89(self) -> aspose.gis.spatialreferencing.GeographicDatum:
1102
+ '''ETRS 89 datum.'''
1103
+ raise NotImplementedError()
1104
+
1105
+ @property
1106
+ def osgb36(self) -> aspose.gis.spatialreferencing.GeographicDatum:
1107
+ '''OSGB 1936 datum.'''
1108
+ raise NotImplementedError()
1109
+
972
1110
  @property
973
1111
  def ellipsoid(self) -> aspose.gis.spatialreferencing.Ellipsoid:
974
1112
  '''Ellipsoid, used in this datum to approximate Earth.'''
@@ -1159,24 +1297,51 @@ class GeographicSpatialReferenceSystem(SpatialReferenceSystem):
1159
1297
  '''Identifier of this identifiable object.'''
1160
1298
  raise NotImplementedError()
1161
1299
 
1162
- wgs84 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1163
- '''WGS 84 (EPSG:4326) spatial reference system.'''
1164
- web_mercator : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1165
- '''Web Mercator (EPSG:3857) spatial reference system.'''
1166
- wgs72 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1167
- '''WGS 72 (EPSG:4322) spatial reference system.'''
1168
- nad83 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1169
- '''NAD 83 (EPSG:4269) spatial reference system.'''
1170
- etrs89 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1171
- '''ETRS 89 (EPSG:4258) spatial reference system.'''
1172
- etrs_89_lambert_conformal_conic : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1173
- '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
1174
- etrs_89_lambert_azimuthal_equal_area : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1175
- '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
1176
- osgb36 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1177
- '''OSGB 36 (EPSG:4277) spatial reference system.'''
1178
- osgb_36_british_national_grid : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1179
- '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
1300
+ @property
1301
+ def wgs84(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1302
+ '''WGS 84 (EPSG:4326) spatial reference system.'''
1303
+ raise NotImplementedError()
1304
+
1305
+ @property
1306
+ def web_mercator(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
1307
+ '''Web Mercator (EPSG:3857) spatial reference system.'''
1308
+ raise NotImplementedError()
1309
+
1310
+ @property
1311
+ def wgs72(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1312
+ '''WGS 72 (EPSG:4322) spatial reference system.'''
1313
+ raise NotImplementedError()
1314
+
1315
+ @property
1316
+ def nad83(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1317
+ '''NAD 83 (EPSG:4269) spatial reference system.'''
1318
+ raise NotImplementedError()
1319
+
1320
+ @property
1321
+ def etrs89(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1322
+ '''ETRS 89 (EPSG:4258) spatial reference system.'''
1323
+ raise NotImplementedError()
1324
+
1325
+ @property
1326
+ def etrs_89_lambert_conformal_conic(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
1327
+ '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
1328
+ raise NotImplementedError()
1329
+
1330
+ @property
1331
+ def etrs_89_lambert_azimuthal_equal_area(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
1332
+ '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
1333
+ raise NotImplementedError()
1334
+
1335
+ @property
1336
+ def osgb36(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1337
+ '''OSGB 36 (EPSG:4277) spatial reference system.'''
1338
+ raise NotImplementedError()
1339
+
1340
+ @property
1341
+ def osgb_36_british_national_grid(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
1342
+ '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
1343
+ raise NotImplementedError()
1344
+
1180
1345
  @property
1181
1346
  def is_valid(self) -> bool:
1182
1347
  '''Same as :py:func:`aspose.gis.spatialreferencing.SpatialReferenceSystem.validate`, but don\'t return error message.'''
@@ -1280,6 +1445,9 @@ class GeographicSpatialReferenceSystemParameters:
1280
1445
  Parameters have reasonable defaults, so you will have to assign only some of them.
1281
1446
  If you assign to any parameter, a default value will be used.'''
1282
1447
 
1448
+ def __init__(self) -> None:
1449
+ raise NotImplementedError()
1450
+
1283
1451
  @property
1284
1452
  def name(self) -> str:
1285
1453
  '''Name of geographic SRS. Default is "Unnamed".'''
@@ -1374,6 +1542,13 @@ class Identifier:
1374
1542
  '''Represents an identifier - a reference to external description of an object.
1375
1543
  If you create a SRS from WKT, :py:class:`aspose.gis.spatialreferencing.Identifier` corresponds to "AUTHORITY" keyword.'''
1376
1544
 
1545
+ def __init__(self, authority_name : str, authority_unique_identifier : str) -> None:
1546
+ '''Create new instance.
1547
+
1548
+ :param authority_name: :py:attr:`aspose.gis.spatialreferencing.Identifier.authority_name`.
1549
+ :param authority_unique_identifier: :py:attr:`aspose.gis.spatialreferencing.Identifier.authority_unique_identifier`.'''
1550
+ raise NotImplementedError()
1551
+
1377
1552
  @staticmethod
1378
1553
  def epsg(epsg_code : int) -> aspose.gis.spatialreferencing.Identifier:
1379
1554
  '''Creates new Identifier that represents EPSG identifier with code ``epsgCode``.
@@ -1411,6 +1586,14 @@ class Identifier:
1411
1586
  class LocalDatum(IdentifiableObject):
1412
1587
  '''Indicates method used for measurements in local spatial reference system.'''
1413
1588
 
1589
+ def __init__(self, name : str, datum_type : int, identifier : aspose.gis.spatialreferencing.Identifier) -> None:
1590
+ '''Create new instance.
1591
+
1592
+ :param name: name of datum.
1593
+ :param datum_type: integer number, representing type of datum.
1594
+ :param identifier: identifier of datum.'''
1595
+ raise NotImplementedError()
1596
+
1414
1597
  @property
1415
1598
  def name(self) -> str:
1416
1599
  '''Name of this object.'''
@@ -1609,24 +1792,51 @@ class LocalSpatialReferenceSystem(SpatialReferenceSystem):
1609
1792
  '''Identifier of this identifiable object.'''
1610
1793
  raise NotImplementedError()
1611
1794
 
1612
- wgs84 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1613
- '''WGS 84 (EPSG:4326) spatial reference system.'''
1614
- web_mercator : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1615
- '''Web Mercator (EPSG:3857) spatial reference system.'''
1616
- wgs72 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1617
- '''WGS 72 (EPSG:4322) spatial reference system.'''
1618
- nad83 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1619
- '''NAD 83 (EPSG:4269) spatial reference system.'''
1620
- etrs89 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1621
- '''ETRS 89 (EPSG:4258) spatial reference system.'''
1622
- etrs_89_lambert_conformal_conic : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1623
- '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
1624
- etrs_89_lambert_azimuthal_equal_area : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1625
- '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
1626
- osgb36 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1627
- '''OSGB 36 (EPSG:4277) spatial reference system.'''
1628
- osgb_36_british_national_grid : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1629
- '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
1795
+ @property
1796
+ def wgs84(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1797
+ '''WGS 84 (EPSG:4326) spatial reference system.'''
1798
+ raise NotImplementedError()
1799
+
1800
+ @property
1801
+ def web_mercator(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
1802
+ '''Web Mercator (EPSG:3857) spatial reference system.'''
1803
+ raise NotImplementedError()
1804
+
1805
+ @property
1806
+ def wgs72(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1807
+ '''WGS 72 (EPSG:4322) spatial reference system.'''
1808
+ raise NotImplementedError()
1809
+
1810
+ @property
1811
+ def nad83(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1812
+ '''NAD 83 (EPSG:4269) spatial reference system.'''
1813
+ raise NotImplementedError()
1814
+
1815
+ @property
1816
+ def etrs89(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1817
+ '''ETRS 89 (EPSG:4258) spatial reference system.'''
1818
+ raise NotImplementedError()
1819
+
1820
+ @property
1821
+ def etrs_89_lambert_conformal_conic(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
1822
+ '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
1823
+ raise NotImplementedError()
1824
+
1825
+ @property
1826
+ def etrs_89_lambert_azimuthal_equal_area(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
1827
+ '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
1828
+ raise NotImplementedError()
1829
+
1830
+ @property
1831
+ def osgb36(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
1832
+ '''OSGB 36 (EPSG:4277) spatial reference system.'''
1833
+ raise NotImplementedError()
1834
+
1835
+ @property
1836
+ def osgb_36_british_national_grid(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
1837
+ '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
1838
+ raise NotImplementedError()
1839
+
1630
1840
  @property
1631
1841
  def is_valid(self) -> bool:
1632
1842
  '''Same as :py:func:`aspose.gis.spatialreferencing.SpatialReferenceSystem.validate`, but don\'t return error message.'''
@@ -1725,6 +1935,14 @@ class LocalSpatialReferenceSystem(SpatialReferenceSystem):
1725
1935
  class PrimeMeridian(IdentifiableObject):
1726
1936
  '''PrimeMeridian represents a meridian at which longitude is defined to be 0.'''
1727
1937
 
1938
+ def __init__(self, name : str, longitude : float, identifier : aspose.gis.spatialreferencing.Identifier) -> None:
1939
+ '''Creates new instance.
1940
+
1941
+ :param name: Name of this prime meridian.
1942
+ :param longitude: Longitude of prime meridian relative to Greenwich in degrees.
1943
+ :param identifier: Identifier of prime meridian.'''
1944
+ raise NotImplementedError()
1945
+
1728
1946
  @property
1729
1947
  def name(self) -> str:
1730
1948
  '''Name of this object.'''
@@ -1740,8 +1958,11 @@ class PrimeMeridian(IdentifiableObject):
1740
1958
  '''Identifier of this identifiable object.'''
1741
1959
  raise NotImplementedError()
1742
1960
 
1743
- greenwich : aspose.gis.spatialreferencing.PrimeMeridian
1744
- '''Greenwich meridian.'''
1961
+ @property
1962
+ def greenwich(self) -> aspose.gis.spatialreferencing.PrimeMeridian:
1963
+ '''Greenwich meridian.'''
1964
+ raise NotImplementedError()
1965
+
1745
1966
  @property
1746
1967
  def longitude(self) -> float:
1747
1968
  '''Distance from Greenwich meridian to prime meridian in degrees.'''
@@ -1927,24 +2148,51 @@ class ProjectedSpatialReferenceSystem(SpatialReferenceSystem):
1927
2148
  '''Identifier of this identifiable object.'''
1928
2149
  raise NotImplementedError()
1929
2150
 
1930
- wgs84 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1931
- '''WGS 84 (EPSG:4326) spatial reference system.'''
1932
- web_mercator : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1933
- '''Web Mercator (EPSG:3857) spatial reference system.'''
1934
- wgs72 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1935
- '''WGS 72 (EPSG:4322) spatial reference system.'''
1936
- nad83 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1937
- '''NAD 83 (EPSG:4269) spatial reference system.'''
1938
- etrs89 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1939
- '''ETRS 89 (EPSG:4258) spatial reference system.'''
1940
- etrs_89_lambert_conformal_conic : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1941
- '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
1942
- etrs_89_lambert_azimuthal_equal_area : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1943
- '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
1944
- osgb36 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
1945
- '''OSGB 36 (EPSG:4277) spatial reference system.'''
1946
- osgb_36_british_national_grid : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
1947
- '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
2151
+ @property
2152
+ def wgs84(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2153
+ '''WGS 84 (EPSG:4326) spatial reference system.'''
2154
+ raise NotImplementedError()
2155
+
2156
+ @property
2157
+ def web_mercator(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
2158
+ '''Web Mercator (EPSG:3857) spatial reference system.'''
2159
+ raise NotImplementedError()
2160
+
2161
+ @property
2162
+ def wgs72(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2163
+ '''WGS 72 (EPSG:4322) spatial reference system.'''
2164
+ raise NotImplementedError()
2165
+
2166
+ @property
2167
+ def nad83(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2168
+ '''NAD 83 (EPSG:4269) spatial reference system.'''
2169
+ raise NotImplementedError()
2170
+
2171
+ @property
2172
+ def etrs89(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2173
+ '''ETRS 89 (EPSG:4258) spatial reference system.'''
2174
+ raise NotImplementedError()
2175
+
2176
+ @property
2177
+ def etrs_89_lambert_conformal_conic(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
2178
+ '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
2179
+ raise NotImplementedError()
2180
+
2181
+ @property
2182
+ def etrs_89_lambert_azimuthal_equal_area(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
2183
+ '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
2184
+ raise NotImplementedError()
2185
+
2186
+ @property
2187
+ def osgb36(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2188
+ '''OSGB 36 (EPSG:4277) spatial reference system.'''
2189
+ raise NotImplementedError()
2190
+
2191
+ @property
2192
+ def osgb_36_british_national_grid(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
2193
+ '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
2194
+ raise NotImplementedError()
2195
+
1948
2196
  @property
1949
2197
  def is_valid(self) -> bool:
1950
2198
  '''Same as :py:func:`aspose.gis.spatialreferencing.SpatialReferenceSystem.validate`, but don\'t return error message.'''
@@ -2066,6 +2314,10 @@ class ProjectedSpatialReferenceSystemParameters:
2066
2314
  :py:attr:`aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystemParameters.projection_method_name` and :py:attr:`aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystemParameters.base` don\'t have defaults -
2067
2315
  you have to assign some non value to this properties.'''
2068
2316
 
2317
+ def __init__(self) -> None:
2318
+ '''Creates new instance.'''
2319
+ raise NotImplementedError()
2320
+
2069
2321
  def add_projection_parameter(self, parameter_name : str, value : float) -> None:
2070
2322
  '''Adds projection parameter to this SRS. If parameter with such name already was added - update it.
2071
2323
 
@@ -2418,24 +2670,51 @@ class SpatialReferenceSystem(IdentifiableObject):
2418
2670
  '''Identifier of this identifiable object.'''
2419
2671
  raise NotImplementedError()
2420
2672
 
2421
- wgs84 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2422
- '''WGS 84 (EPSG:4326) spatial reference system.'''
2423
- web_mercator : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
2424
- '''Web Mercator (EPSG:3857) spatial reference system.'''
2425
- wgs72 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2426
- '''WGS 72 (EPSG:4322) spatial reference system.'''
2427
- nad83 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2428
- '''NAD 83 (EPSG:4269) spatial reference system.'''
2429
- etrs89 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2430
- '''ETRS 89 (EPSG:4258) spatial reference system.'''
2431
- etrs_89_lambert_conformal_conic : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
2432
- '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
2433
- etrs_89_lambert_azimuthal_equal_area : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
2434
- '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
2435
- osgb36 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2436
- '''OSGB 36 (EPSG:4277) spatial reference system.'''
2437
- osgb_36_british_national_grid : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
2438
- '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
2673
+ @property
2674
+ def wgs84(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2675
+ '''WGS 84 (EPSG:4326) spatial reference system.'''
2676
+ raise NotImplementedError()
2677
+
2678
+ @property
2679
+ def web_mercator(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
2680
+ '''Web Mercator (EPSG:3857) spatial reference system.'''
2681
+ raise NotImplementedError()
2682
+
2683
+ @property
2684
+ def wgs72(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2685
+ '''WGS 72 (EPSG:4322) spatial reference system.'''
2686
+ raise NotImplementedError()
2687
+
2688
+ @property
2689
+ def nad83(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2690
+ '''NAD 83 (EPSG:4269) spatial reference system.'''
2691
+ raise NotImplementedError()
2692
+
2693
+ @property
2694
+ def etrs89(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2695
+ '''ETRS 89 (EPSG:4258) spatial reference system.'''
2696
+ raise NotImplementedError()
2697
+
2698
+ @property
2699
+ def etrs_89_lambert_conformal_conic(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
2700
+ '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
2701
+ raise NotImplementedError()
2702
+
2703
+ @property
2704
+ def etrs_89_lambert_azimuthal_equal_area(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
2705
+ '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
2706
+ raise NotImplementedError()
2707
+
2708
+ @property
2709
+ def osgb36(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
2710
+ '''OSGB 36 (EPSG:4277) spatial reference system.'''
2711
+ raise NotImplementedError()
2712
+
2713
+ @property
2714
+ def osgb_36_british_national_grid(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
2715
+ '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
2716
+ raise NotImplementedError()
2717
+
2439
2718
  @property
2440
2719
  def is_valid(self) -> bool:
2441
2720
  '''Same as :py:func:`aspose.gis.spatialreferencing.SpatialReferenceSystem.validate`, but don\'t return error message.'''
@@ -2527,6 +2806,13 @@ class SpatialReferenceSystem(IdentifiableObject):
2527
2806
  class SpatialReferenceSystemTransformation:
2528
2807
  '''Spatial reference system transformation transforms geometries from source spatial reference system to target spatial reference system.'''
2529
2808
 
2809
+ def __init__(self, source_srs : aspose.gis.spatialreferencing.SpatialReferenceSystem, target_srs : aspose.gis.spatialreferencing.SpatialReferenceSystem) -> None:
2810
+ '''Creates new instance.
2811
+
2812
+ :param source_srs: Source :py:class:`aspose.gis.spatialreferencing.SpatialReferenceSystem`.
2813
+ :param target_srs: Target :py:class:`aspose.gis.spatialreferencing.SpatialReferenceSystem`.'''
2814
+ raise NotImplementedError()
2815
+
2530
2816
  def transform(self, geometry : aspose.gis.geometries.IGeometry) -> aspose.gis.geometries.Geometry:
2531
2817
  '''Transforms geometry from source spatial reference system to target spatial reference system.
2532
2818
 
@@ -2548,10 +2834,30 @@ class SpatialReferenceSystemTransformation:
2548
2834
  class TransformationException:
2549
2835
  '''Transformation exception is thrown when error occurs during transformation of coordinate or during transformation creation.'''
2550
2836
 
2837
+ @overload
2838
+ def __init__(self) -> None:
2839
+ '''Create new instance.'''
2840
+ raise NotImplementedError()
2841
+
2842
+ @overload
2843
+ def __init__(self, message : str) -> None:
2844
+ '''Create new instance.
2845
+
2846
+ :param message: Error message.'''
2847
+ raise NotImplementedError()
2848
+
2551
2849
 
2552
2850
  class Unit(IdentifiableObject):
2553
2851
  '''Represent measurement unit.'''
2554
2852
 
2853
+ def __init__(self, name : str, factor : float, identifier : aspose.gis.spatialreferencing.Identifier) -> None:
2854
+ '''Create new instance.
2855
+
2856
+ :param name: Name of unit.
2857
+ :param factor: Factor to meter, if this is length unit, or to radian, if this is angle unit.
2858
+ :param identifier: Identifier of unit.'''
2859
+ raise NotImplementedError()
2860
+
2555
2861
  def apply(self, value : float) -> float:
2556
2862
  '''Converts argument to unit, described by this instance.
2557
2863
 
@@ -2581,12 +2887,21 @@ class Unit(IdentifiableObject):
2581
2887
  '''Identifier of this identifiable object.'''
2582
2888
  raise NotImplementedError()
2583
2889
 
2584
- meter : aspose.gis.rendering.Unit
2585
- '''Get Unit that represents meters.'''
2586
- radian : aspose.gis.rendering.Unit
2587
- '''Get Unit that represents radians.'''
2588
- degree : aspose.gis.rendering.Unit
2589
- '''Get Unit that represents degrees.'''
2890
+ @property
2891
+ def meter(self) -> aspose.gis.rendering.Unit:
2892
+ '''Get Unit that represents meters.'''
2893
+ raise NotImplementedError()
2894
+
2895
+ @property
2896
+ def radian(self) -> aspose.gis.rendering.Unit:
2897
+ '''Get Unit that represents radians.'''
2898
+ raise NotImplementedError()
2899
+
2900
+ @property
2901
+ def degree(self) -> aspose.gis.rendering.Unit:
2902
+ '''Get Unit that represents degrees.'''
2903
+ raise NotImplementedError()
2904
+
2590
2905
  @property
2591
2906
  def factor(self) -> float:
2592
2907
  '''Factor to meter, if this is length unit, factor to radian, if this is angle unit.'''
@@ -2596,6 +2911,14 @@ class Unit(IdentifiableObject):
2596
2911
  class VerticalDatum(IdentifiableObject):
2597
2912
  '''Indicates method used for vertical measurements.'''
2598
2913
 
2914
+ def __init__(self, name : str, datum_type : int, identifier : aspose.gis.spatialreferencing.Identifier) -> None:
2915
+ '''Create new instance.
2916
+
2917
+ :param name: name of datum.
2918
+ :param datum_type: integer number, representing type of datum.
2919
+ :param identifier: identifier of datum.'''
2920
+ raise NotImplementedError()
2921
+
2599
2922
  @property
2600
2923
  def name(self) -> str:
2601
2924
  '''Name of this object.'''
@@ -2794,24 +3117,51 @@ class VerticalSpatialReferenceSystem(SpatialReferenceSystem):
2794
3117
  '''Identifier of this identifiable object.'''
2795
3118
  raise NotImplementedError()
2796
3119
 
2797
- wgs84 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2798
- '''WGS 84 (EPSG:4326) spatial reference system.'''
2799
- web_mercator : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
2800
- '''Web Mercator (EPSG:3857) spatial reference system.'''
2801
- wgs72 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2802
- '''WGS 72 (EPSG:4322) spatial reference system.'''
2803
- nad83 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2804
- '''NAD 83 (EPSG:4269) spatial reference system.'''
2805
- etrs89 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2806
- '''ETRS 89 (EPSG:4258) spatial reference system.'''
2807
- etrs_89_lambert_conformal_conic : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
2808
- '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
2809
- etrs_89_lambert_azimuthal_equal_area : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
2810
- '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
2811
- osgb36 : aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem
2812
- '''OSGB 36 (EPSG:4277) spatial reference system.'''
2813
- osgb_36_british_national_grid : aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem
2814
- '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
3120
+ @property
3121
+ def wgs84(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
3122
+ '''WGS 84 (EPSG:4326) spatial reference system.'''
3123
+ raise NotImplementedError()
3124
+
3125
+ @property
3126
+ def web_mercator(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
3127
+ '''Web Mercator (EPSG:3857) spatial reference system.'''
3128
+ raise NotImplementedError()
3129
+
3130
+ @property
3131
+ def wgs72(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
3132
+ '''WGS 72 (EPSG:4322) spatial reference system.'''
3133
+ raise NotImplementedError()
3134
+
3135
+ @property
3136
+ def nad83(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
3137
+ '''NAD 83 (EPSG:4269) spatial reference system.'''
3138
+ raise NotImplementedError()
3139
+
3140
+ @property
3141
+ def etrs89(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
3142
+ '''ETRS 89 (EPSG:4258) spatial reference system.'''
3143
+ raise NotImplementedError()
3144
+
3145
+ @property
3146
+ def etrs_89_lambert_conformal_conic(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
3147
+ '''ETRS 89 / Lambert Conformal Conic (EPSG:3034) spatial reference system.'''
3148
+ raise NotImplementedError()
3149
+
3150
+ @property
3151
+ def etrs_89_lambert_azimuthal_equal_area(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
3152
+ '''ETRS 89 / ETRS Lambert Azimuthal Equal Area (EPSG:3035) spatial reference system.'''
3153
+ raise NotImplementedError()
3154
+
3155
+ @property
3156
+ def osgb36(self) -> aspose.gis.spatialreferencing.GeographicSpatialReferenceSystem:
3157
+ '''OSGB 36 (EPSG:4277) spatial reference system.'''
3158
+ raise NotImplementedError()
3159
+
3160
+ @property
3161
+ def osgb_36_british_national_grid(self) -> aspose.gis.spatialreferencing.ProjectedSpatialReferenceSystem:
3162
+ '''OSGB 36 / British National Grid (EPSG:27700) spatial reference system.'''
3163
+ raise NotImplementedError()
3164
+
2815
3165
  @property
2816
3166
  def is_valid(self) -> bool:
2817
3167
  '''Same as :py:func:`aspose.gis.spatialreferencing.SpatialReferenceSystem.validate`, but don\'t return error message.'''