# Map Projections

**URL:** https://mapwindow.discourse.group/t/map-projections/765
**Category:** Uncategorized
**Created:** [November 6, 2020, 1:33am UTC](https://mapwindow.discourse.group/t/map-projections/765 "2020-11-06T01:33:23Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![lang](https://avatars.discourse-cdn.com/v4/letter/l/0ea827/32.png) [@lang](https://mapwindow.discourse.group/u/lang)
#### Post date: [November 6, 2020, 1:33am UTC](https://mapwindow.discourse.group/t/map-projections/765/1 "2020-11-06T01:33:24Z")

</div>

How many map projections available in MWG? Like in tkMapProjection? If there are more, where are they?

Thanks!

---

<div class="post-metadata">

### Author: ![jerryfaust](https://yyz2.discourse-cdn.com/free1/user_avatar/mapwindow.discourse.group/jerryfaust/32/378_2.png) [@jerryfaust](https://mapwindow.discourse.group/u/jerryfaust)
#### Post date: [November 6, 2020, 7:22pm UTC](https://mapwindow.discourse.group/t/map-projections/765/2 "2020-11-06T19:22:13Z")

</div>

Hello lang

The [tkMapProjection enum](https://www.mapwindow.org/documentation/mapwingis4.9/_enumerations_8cs.html#ad7975e2723bbf83d20e1820bb0020dd7) represents just the commonly used projections.

However, beyond those, you can use the GeoProjection class, and call [SetWellKnownGeoCS](https://www.mapwindow.org/documentation/mapwingis4.9/class_geo_projection.html#a74df7aa57ebdfc4c412fede6496e4401), with the [following enumeration](https://www.mapwindow.org/documentation/mapwingis4.9/_coordinate_01systems_8cs.html#a67e83d11410b054cde7bd62e2bd2ab95). Or use one of the various ImportFrom… functions, like [ImportFromEPSG](https://www.mapwindow.org/documentation/mapwingis4.9/class_geo_projection.html#a74df7aa57ebdfc4c412fede6496e4401), which takes the standard EPSG code as input.

So there are many options.

Regards,  
Jerry.

---

<div class="post-metadata">

### Author: ![lang](https://avatars.discourse-cdn.com/v4/letter/l/0ea827/32.png) [@lang](https://mapwindow.discourse.group/u/lang)
#### Post date: [November 8, 2020, 12:39am UTC](https://mapwindow.discourse.group/t/map-projections/765/3 "2020-11-08T00:39:12Z")

</div>

Hi Jerry,

Thanks a lot! Very helpful.

---

<div class="post-metadata">

### Author: ![lang](https://avatars.discourse-cdn.com/v4/letter/l/0ea827/32.png) [@lang](https://mapwindow.discourse.group/u/lang)
#### Post date: [November 8, 2020, 12:54am UTC](https://mapwindow.discourse.group/t/map-projections/765/4 "2020-11-08T00:54:07Z")

</div>

Jerry,  
please me an example to set my map to wgs84\_UTM\_Zone\_15N.

Thanks!

---

<div class="post-metadata">

### Author: ![jerryfaust](https://yyz2.discourse-cdn.com/free1/user_avatar/mapwindow.discourse.group/jerryfaust/32/378_2.png) [@jerryfaust](https://mapwindow.discourse.group/u/jerryfaust)
#### Post date: [November 8, 2020, 6:22am UTC](https://mapwindow.discourse.group/t/map-projections/765/5 "2020-11-08T06:22:47Z")

</div>

Hello @lang

I wasn’t sure what language you prefer, but here it is in c#.

```
        GeoProjection gp = new GeoProjection();
        gp.ImportFromEPSG(32615);
        axMap1.GeoProjection = gp;

```

Regards.

---

<div class="post-metadata">

### Author: ![lang](https://avatars.discourse-cdn.com/v4/letter/l/0ea827/32.png) [@lang](https://mapwindow.discourse.group/u/lang)
#### Post date: [November 10, 2020, 1:51am UTC](https://mapwindow.discourse.group/t/map-projections/765/6 "2020-11-10T01:51:21Z")

</div>

Jerry,

Perfect! Thank you so much!

Best Regards

---

<div class="post-metadata">

### Author: ![pmeems](https://yyz2.discourse-cdn.com/free1/user_avatar/mapwindow.discourse.group/pmeems/32/9_2.png) [@pmeems](https://mapwindow.discourse.group/u/pmeems)
#### Post date: [January 5, 2022, 3:09pm UTC](https://mapwindow.discourse.group/t/map-projections/765/7 "2022-01-05T15:09:10Z")

</div>


