Quantcast
Channel: OpenCities Map Wiki
Viewing all 1284 articles
Browse latest View live

- Esri File Geodatabase as a Graphical Source

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/9/2020 6:48:51 PM

Launch Bentley Geospatial Administrator

From the Graphical Sources node, right click Esri File Geodatabase Connection and select Add > New

In the Build Connection dialog enter a Connection Name, Description and specify the path to the GDB file. 

Expand the newly created named connection, right click and select Register Features.

Select the features to register and click Next.

For simplicity, accept all of the default settings on each page of the wizard.

When done, all valid features in the file geodatabase are added to the Features node of the project.  Note that the feature definitions include properties and is noted as a Registered feature.

At this point, you can proceed as you would with locally defined features.

- Insert placement metadata

- Define and assign Criteria

- Update symbology settings

- Define and assign categories

- Update Command Manager

- Add a User workspace

- Save schema

- Export workspace metadata

Tip:  To automatically connect to the named graphical source pointing to the file geodatabase, add the following configuration variable to the Macros node of the User workspace:  MS_GEOINITCMD = GDI CONNECT GRAPHICALSOURCE

The Map Interoperability dialog will show an active connection to the named graphical source.

Use the Query button to extract the features from the graphical source. 

Once queried, existing features can be modified and posted back to file geodatabase.  Likewise, new features can be placed and added to the file geodatabase.

In both cases, simply make your changes and  select the Post Changes tool from the Spatial Tools pane of the Map Interoperability dialog.  Modified and new features will be posted back to the file geodatabase and the Message Center will return a Post Complete message.

You can verify that the changes were successfully posted by using the Erase Cached Features tool to remove the queried features from the design.  Then use the Query tool to re-query the features.

Recommended Reading:

Create a new schema

Tags: File Geodatabase, Geospatial Administrator, ESRI

- Disable Connect to Database dialog

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/9/2020 6:48:52 PM

To disable the Connect to Database dialog, set the following variable:

MS_GEOXFM_DISALLOW_INFERRED_DBCONNECTION = 1

Tags: Database

- Establish database connection upon startup

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/9/2020 6:48:52 PM

Elivagner Barros is pleased to share this MDL application that allows you to automatically connect to an Oracle Spatial or SQL Server database, by using the MS_GEOINITCMD parameter.  It does this without exposing the password.

You can read more about this tool download it via the following link:

Bentley Map C# Addin to establish Oracle Spatial and SQLServer connection on startup (without exposing the password)

Attached a PDF of the above article for your reference:

communities.bentley.com/.../AutoDBLoad.pdf

Note: This tool is supplied as is. This application does not come with support. Bentley Systems Inc. and the author of this programs assume no liability for damages direct, indirect, or consequential, which may result from the use of this programs. Use this application at your own risk.

- Item names showing __x00##__

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/9/2020 6:48:52 PM

There can be situations where OpenCities Map is showing level, domain list and/or feature names with __x00##__ similar to the following:

This is the result of encoded characters that are illegal in EC Framework which is the internal storage structure for the non-graphical portion of an element.  The recommended workaround is to rename the item during the Register Features process using the Geospatial Administrator.

NOTE regarding PostgreSQL (PostGIS)

To avoid __x0022__  (denotes a double quote) in your feature property names, do not use UPPER CASE characters in the column names.  For example, the following columns contain upper case characters: Well Name and DEPTH.  When registered, each word is wrapped with double quotes which translates to __x0022__.

Using only lower case characters will eliminate the presence of __x0022_ as shown below:

An alternate solution is to edit the XFM Feature Name and Display Name as you register the features.

Tags: __x00##__, Spatial Databases, Geospatial Administrator, Register Features

- WFS graphical source connection and feature registration

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/9/2020 6:48:52 PM

Defining a WFS graphical source is done in the same way as any other graphical source.  Let's review:

In the Bentley Geospatial Administrator, navigate to the Graphical Sources node.

Right click OGC WFS Connection, and choose Add > New

In the Build Connection dialog, enter a Connection Name and fill in the required Connection Parameters.

Click Test to ensure the connection is valid.

Right click the new WFS connection node and choose Register Features. 

In the Register Features dialog, select which features to register and specify settings in the wizard.

 

Once registered, the features will be added to the Features node.

Define the appropriate symbology, insert placement metadata, and update the Command Manager.

Save and export your project.

 

 

 

Tags: WFS

- Supported OGC geometry types

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/9/2020 6:48:52 PM

Bentley Map supports the following OGC geometry types.  Unsupported geometrywill produce errors and may prevent you from connecting to the database.

GeometryCode
Point1
LineString2
Polygon3
MultiPoint4
MultiLineString5
MultiPolygon6
GeometryCollection7
CircularArcString8
CompoundCurve9
CurvePolygon10
MultiCurve11
MultiSurface12
Tags: OGC Geometry

- Plane Constraint settings

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/9/2020 6:48:52 PM

When dealing with polygon features in Oracle Spatial, the feature definition provides an option to toggle support for non-planer shapes.  This option is available for both polygons and polygon collections and determines the contents of the Plane Constraint drop down list.

For a registered feature class, the value of this toggle would be stored in the feature’s registration information in the ECRelationalDbMapping class property allowNonPlanar. See last paragraph for discussion of this property’s usage during Oracle geometry validation.

When Support non-planar shapes is toggled ON, the drop-down list contents are:

Area of the projected polygon to the ground

  • Flattens the non-coplanar polygon geometry to the XY plane/top view when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_Horizontal (parallel to the XY plane)

Area of the projected polygon to the average plane

  • Flattens the non-coplanar polygon geometry to an average plane when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_Average (Best average plane from non-coplanar polygon)

Area of the mesh

  • Area of the polygon mesh when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_None (No plane calculation)

If  Support non-planar shapes is toggled OFF, the drop down list contents are:

Area of the projected polygon to the ground

  • Flattens the non-coplanar polygon geometry to the XY plane/top view when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_Horizontal (parallel to the XY plane)

Area of the polygon

  • Area of the polygon mesh when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_None (No plane calculation)

 

 

For a polygon collection feature definition, if Support non-planar shapes is toggled ON, the drop down list contents are:

Area of the projected polygon collection to the ground

  • Flattens the non-coplanar polygon geometry to the XY plane/top view when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_Horizontal (parallel to the XY plane)

Total of the areas of the projected polygon to the average plane per polygon

  • Flattens the non-coplanar polygon geometry to an average plane when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_Average (Best average plane from non-coplanar polygon)

Total of the areas of the meshes

  • Totals the area of each mesh when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_None (No plane calculation)

If  Support non-planar shapes is toggled OFF, the drop down list contents are:

Area of the projected polygon collection to the ground

  • Flattens the non-coplanar polygon geometry to the XY plane/top view when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_Horizontal (parallel to the XY plane)

Total area of all polygons

  • Totals the area of each mesh when calculating the area.
  • XFM API: XFMPOLYGONPLANECALCULATIONCONSTRAINT_None (No plane calculation)

 

 

For a registered feature class, the value of this drop-down list would be used to determine the value of the isHorizontal property in the ECRelationalDbMapping class of the feature’s registration information. The allowNonPlanar and isHorizontal property values are used during posting to Oracle when validating geometry.

When allowNonPlanar is True/ON, and isHorizontal is set as:

  • False, then geometry validation is not performed.
  • True, then geometry validation is performed with Oracle 10g validation mode which is more forgiving with non-coplanar geometry.

 

When allowNonPlanar is False/OFF, then geometry validation is performed normally, meaning with whatever validation their database supports by default (e.g. 11g, 12c).

- Keep connection to database open when changing files

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/9/2020 6:48:52 PM

By default, Bentley Map automatically closes the connection to the graphical source when changing files.  This behavior ensures that you connect to the appropriate graphical source for each design file as it is opened. To keep the connection open, add the following configuration variable to your workspace.

       GDI_KEEP_CONNECTION_OPEN_ON_FILE_CLOSE=1

Adding the above configuration variable overrides the default behavior and should be used with care. It is your responsibility to ensure that all opened design files contain data from the same graphical source connection.

Source: Connection to graphical data sources is lost when changing file

Tags: Spatial Databases, Configuration Variable

Troubleshooting

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/18/2020 3:48:57 PM

[[- "Activate Map" using GEOPAK V8i (SELECTseries 3) 08.11.09.772 crashes]]

- Bentley Map is very slow when opening files

[[- Bentley Map keeps starting in trial mode]]

- Bing Maps Internet Connection Exception (device HTTP connection, error code 6)

[[- Data browser does not open or is missing]]

[[- Delete Pattern in Bentley Map PowerView]]

- Draftpal fatal error and crash on startup

[[- Export to Shapefile generates error message "Error- Duplicate property name..."]]

[[- Export to Shapefile command may not operate properly]]

[[- Feature Properties not displaying in the Data Browser]]

[[- Fulfillment Center crash]]

- Installation error code 1601

- Installation error code 1638

[[- MicroStation 08.11.09.459 and Google Earth integration]]

[[- Missing tools]]

[[- New Sheet doesn't save selected size]]

- Previous installation is detected causing install to fail

[[- It's slow when you open a large design file with Bentley Map vs MicroStation!]]

- References not reprojecting correctly after upgrading to CONNECT Edition

[[- Restore defaults when dialogs are no longer displayed]]

[[- Unable to detect current version of MicroStation]]

[[- WMS error "error parsing capabilities response”]]

Tags: Troubleshooting, Bentley Map

Getting Started

Interoperability

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/18/2020 3:48:57 PM

Geospatial solutions are rarely used individually.  Data comes in and goes out for users in various formats, this is termed "interoperability" and allows different systems to utilize the data regardless of its origins.  This section of articles discusses how to connect to a variety of other data formats, to be used within the Bentley Map and associated software platforms.

[[- Add properties to MicroStation elements without a Map project]]

[[- Add properties to SHP files using Map]]

- Apply symbology when importing Esri Shapefiles

- Assign attributes when importing shapefiles

- Connect to ESRI File Geodatabase

[[- Convert numerical properties upon import from SHP]]

[[- Create join to SHP file to update properties]]

- Create a join between Microsoft Excel and Esri Shapefile data

- Export arcs and stroking tolerance

- Export textures to CityGML

- Export thematic symbology to MicroStation

- Export to Esri Shapefile format

- Export to Google Earth, polygon issues

- Export to Shapefile makes two Shapefiles

- Exporting a DGN to shapefile with properties

- File Geodatabase and Custom Coordinate Systems

- File Geodatabase reports unknown spatial reference

- Import coordinate and property information from an XLS or CSV file

- Import Esri Shapefile into Oracle Spatial

- Import INSPIRE GML using FME (Video)

- Import multiple folders of Shapefiles by using GDI keyins

- Import Oracle data using VRT

- Import requirements for geospatial file formats

- Import text strings from point SHP properties

- Importing 3D shapefiles with elevation

[[- Interoperability key-ins]]

- Key-in to execute import for an IMPX file

- Limitations of Esri File Geodatabase support

[[- MXD files]]

- Protecting Bentley Map design data in a MicroStation session

- Queries are not undoable

- Selecting specific feature properties when importing Shapefiles

- VRT File parameters to import Points, Lines, and Polygons

- VRT Files to import ODBC and CSV data sources

Tags: import, Export, Geospatial, Interoperability

Geospatial Administrator

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/18/2020 3:48:57 PM

[[- About Expand Variables]]

[[- Automatically connect to a graphical source]]

- Base Source Directory configuration

- Base Source Directory and Files node

- Built in XFM properties

[[- Capture user and date when modifying features]]

[[- Capture point feature coordinates with two examples]]

- Change property order using text editor

[[- Changing project and workset information]]

- Concatenate properties to populate new property using property watcher

- Create new schema - Folder location

- Create a geospatial schema (Video)

[[- Create a new schema - Recommended Workflow]]

[[- Customize Command Manager with help from Excel]]

[[- Customize dialogs]]

[[- Customize Operations to show property based on criteria]]

- Date time property show none to set dates to null

[[- Decimal Precision in Analyze XFM Feature Results]]

[[- Defining polygons with holes or islands]]

[[- Domain list initial values]]

[[- Domain list width]]

[[- Domain list width (Form View width)]]

[[- Generate workspace from command line]]

- Feature Collection and Collection Name Property

[[- Files node in User Workspace]]

- Fix Cannot Access a Disposed Object error

[[- Increment property values]]

[[- Multiline text for PBA]]

[[- Number  properties and setting decimal places for data entry]]

[[- Open schema via desktop shortcut]]

- Plane Constraint settings

[[- Property Based Annotation (PBA) replacement text during interoperability imports]]

[[- Property Watcher on an empty value]]

[[- Property Watcher to compute values]]

[[- Property Watcher to read Col2 of a Domain List]]

[[- Property Watcher to update a date property]]

[[- Property Watchers to drive domain lists]]

[[- Property Watcher to set true or false]]

[[- Replace text in cells using PBA with two examples]]

[[- Rounding PBA values]]

[[- Set Area and Perimeter to Read Only]]

- Shortcut arguments described: –ws , -wr, -wu

- Shortcut Target path

[[- Sort properties by their Display Name]]

- Store Last Value to define property fields for new feature placement

- Symbology Integrator tool, Geospatial & CAD-compliant GSA Schema creation

[[- Tabbed dialogs]]

[[- Text Annotation Subfeature]]

[[- Text Justification and Text Node Justification]]

[[- Text features from PBA]]

[[- Text size settings]]

[[- Understanding criteria]]

[[- Update property when Split/Merge used]]

[[- UpdatedBy and UpdatedDate properties]]

[[- Using raster images as a graphical source]]

[[- Value Col Name vs Edit Col Name]]

- Workspace location V8i vs CONNECT Edition

Bentley Cadastre

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/18/2020 3:48:57 PM

Note:  The Cadastre functionality of Bentley Map is not available in the CONNECT Edition.

[[- Associate linkages and Text Manager for spatial features]]

[[- Cadastre Workspace]]

- Merging parcels (Video)

[[- Node placement options]]

3D Geospatial

Freeware - Utilities - Applications - Programs

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/18/2020 3:48:57 PM

Disclaimer - The following applications (also known as programs, utilities, and freeware) are provided as is and do not come with support.  Bentley Systems Inc., and the author of this programs assume no liability for damages direct, indirect, or consequential, which may result from the use of this programs. Use these programs at your own risk.  Do not assume they have been tested to work on all versions of product.

[[- Learning Resources]]

- Auto update Editing initial values (Sync1 MDL)

[[- Centroid text to shape (VBA)]]

[[- Change feature elevation (VBA)]]

- Convert plain text to XFM and propagate text string to polygons (Two VBAs)

- Create schema from Shapefiles (Schema Register EXE)

- Export text string and Element ID (TextNodeToTextFile VBA)

- Extended properties (xProps MDL)

- Load business properties from text strings (text2xfm VBA)

- Planarize 3D polygons (MDL)

- Show XMF properties on tool tips (MDL)

- Symbology Integrator (EXE)

[[- Utilities from Elivagner Barros]]

- XFM attribute query (Feature Query VBA)

Tags: Initial Values, Geospatial Administrator, edit, Freeware, Bentley Map

Spatial Analysis

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/18/2020 3:48:57 PM

This section contains articles specific to spatial analysis.

[[- Using Filters for Creating Buffer]]

[[- Use of Buffer Tolerance in Map Manager]]

[[- Area to Area Overlay Analysis]]

[[- Point/Line‐to‐Area Overlay Analysis]]

Tags: Spatial Analysis

Working from home with Open Cities Map

$
0
0
Revision 2 posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 3/18/2020 3:53:13 PM
Product(s):OpenCities Map Enterprise, OpenCities Map, OpenCities Map PowerView
Version(s):10.xx.xx.xx
Area:Working Remotely

In these challenging times when COVID-19 is imposing significant disruptions to day to day activities and affecting normal business flow of our much-valued users and employees, we at Bentley are mindfully committed to ensuring a smooth transition of work from the office to a remote location or home. Our innovative software and services are all geared for working from home or remote locations and do not impose the need to be in an office set-up.

For a general overview of how this works for Bentley products refer to https://www.bentley.com/en/covid-19 

To ensure a smooth transition of work and effectiveness of your daily workflows with OpenCities Map, we have assembled information that you can refer to while working remotely or from home. We are working hard to deliver high levels of customer service, and welcome feedback, questions, and ideas on how we can serve you better in a remote work environment.

Solution

Resolving licensing issues:

Licensing Wiki
https://communities.bentley.com/products/licensing/w/licensing__wiki 

Subscription Entitlement Service
https://communities.bentley.com/products/licensing/w/licensing__wiki/37813/subscription-entitlement-service 

Bentley User Registration
https://www.bentley.com/en/perspectives-and-viewpoints/topics/campaign/bentley-user-registration 

Offline Usage
https://communities.bentley.com/products/licensing/w/licensing__wiki/40445/offline-usage 

How to ensure usage from only one user on a shared workstation
https://communities.bentley.com/products/licensing/w/licensing__wiki/43969/how-to-ensure-usage-from-only-one-user-on-a-shared-workstation 

How remote usage is recorded with Subscription Entitlement Service (SES)
https://communities.bentley.com/products/licensing/w/licensing__wiki/47070/how-remote-usage-is-recorded 

How to check out licenses from Entitlement Management (how to run offline)
https://communities.bentley.com/products/licensing/w/licensing__wiki/41085/how-to-check-out-licenses-from-entitlement-management 

How to bulk checkout licenses from Entitlement Management (extended offline scenarios)
https://communities.bentley.com/products/licensing/w/licensing__wiki/42117/how-to-bulk-checkout-licenses-from-entitlement-management 

How to get help

Service Request Manager for any technical question and support.
Our technical experts are ready to help
https://apps.bentley.com/srmanager/ProductSupport

Bentley Communities (WIKI and FORUM):

This WIKI and the Forum.

CONNECT Center

https://connect.bentley.com

Useful articles about working remotely

Tags: Working from Home

Version Information

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Inga Morozoff on 4/7/2020 1:55:18 PM

This page contains information about V8i and CONNECT Editions: version numbers, release dates, CONNECT Licensing, V8i dependencies and V8i prerequisites.  The CONNECT Editions of Bentley Map are being renamed as OpenCities Map.

CONNECT Edition generation:

The following table lists OpenCities Map CONNECT Editions which are built with the PowerPlatform. PowerPlatform is the MicroStation core application that underlies the CONNECT Edition products that are based on MicroStation.  Once a feature or fix is added to the Power Platform, it's available to all the applications based on PowerPlatform.  This has increased consistency between applications, is fundamental to Bentley's update strategy and is part of an ongoing plan to unify similar tools and functions across Bentley applications.

Important note regarding OpenCities Map for MicroStation:  Beginning with the CONNECT Edition, OpenCities Map is now a standalone product and is not available as a layered application for MicroStation.  For further information, please refer to the question How can I upgrade from V8i to CONNECT Edition? in the CONNECT Edition FAQ

Important note regarding licensing:  Starting with OpenCities Map CONNECT Edition x64 10.02.00.xx, licensing is handled with Subscription Entitlement Service (formerly known as CONNECT Licensing) which does not use activation keys. Product with Subscription Entitlement Service is indicated with (SES). To enhance security, the licensing requires that you become registered in User Management and then sign in with those credentials to access the application. For more information on licensing, please refer to Subscription Entitlement Service (formerly CONNECT Licensing). For detailed instructions on the user registration and sign-in process, refer to Bentley User Registration and Sign-in.

Dates are in Year-Month-Date format. 

DateRelease

PowerPlatform

Version

Descartes for

Map Enterprise

Notes
2019-11-04OpenCities Map CONNECT Edition x64 (SES) 10.04.00.42 Update 410.13.00.4810.13.00.48-
2019-09-27OpenCities Map CONNECT Edition x64 (SES) 10.04.00.41 Update 410.13.00.4810.13.00.48Resolved Issues
2019-08-23OpenCities Map CONNECT Edition x64 (SES) 10.04.00.35 Update 410.13.00.4810.13.00.48Resolved Issues
2019-04-16OpenCities Map CONNECT Edition x64 (SES) 10.03.00.26 Update 310.12.00.4010.10.00.40-
2019-03-25OpenCities Map CONNECT Edition x64 (SES) 10.03.00.23 Update 310.12.00.4010.10.00.40Resolved Issues
2018-11-22OpenCities Map CONNECT Edition x64 (SES) 10.02.00.18 Update 210.11.00.3810.09.00.38Resolved Issues
2018-07-31OpenCities Map CONNECT Edition x64 10.01.00.22 Update 110.10.00.2410.08.00.23Resolved Issues
2018-03-16OpenCities Map CONNECT Edition x64 10.00.00.3010.08.00.41N/A

V8i generation:

The following tables lists the Bentley Map V8i versions with their corresponding MicroStation versions they were released with.  

It's important to combine the Bentley Map V8i (SELECTseries) "For MicroStation" edition with its corresponding MicroStation version.  This allows you to take advantage of changes that were introduced into each product during the update cycle.  V8i (SELECTseries) generation products should be installed together.  However, within (SELECTseries) product release, newer versions of Bentley Map are compatible with older versions of MicroStation.  In some cases, older versions of Bentley Map are compatible with newer versions of MicroStation.  To maintain the integrity and supported functionality, the corresponding version of MicroStation should be installed at the same time.

Dates are in month/day/year format. 

*Important Note - The updated version of Bentley Map V8i (SELECTseries 10) provides new flexibility for organizations that require Windows 10 Readiness and privacy and security compliance while they sequence their upgrade to the CONNECT Edition.

Bentley Map V8i SS10 is a simple and transparent installation for Bentley Map V8i users with no file format change with complete fidelity of existing workspaces and MDL customizations. Bentley Map V8i SS10 consolidates all enhancements and updates of previous SELECTseries releases and offers an extended support period for V8i users:

  • Full Support will be provided until January 1, 2021.
  • Expiring Support will be provided until January 1, 2022 at which time full support will be discontinued.

This version only includes Subscription Entitlement Service (formerly known as CONNECT Licensing) for users who have chosen to delay upgrading to the latest OpenCities Map CONNECT Edition.  Subscription Entitlement Service is not supported by SELECT activation key(s). Subscription Entitlement Service  features new behavior to enhance your organization's user administration and security with mandatory user sign-in via CONNECTION Client to access the application. If you are already signed in to the CONNECTION Client, you have met this prerequisite. If you have not, please refer to the Administrator's Resource Center and/or contact your administrator for assistance in the registration and sign-in process.

We recommend that you install the latest version of OpenCities Map CONNECT Edition (*). But, if your organization needs more time to sequence your CONNECT Edition upgrade, Bentley Map V8i SS10 provides additional flexibility and ensures you can continue to use supported software.

Bentley Map V8i SS10 offers these capabilities:

  • Windows 10 Readiness
  • All previous V8i enhancements and updates
  • Subscription Entitlement Service
  • Extended support

 

 Bentley Map V8i SS10 is only available as a stand-alone product. 

Previous versions of Map included a layered option to install on an existing seat of MicroStation. This “For MicroStation” layered option has been discontinued. The two available products are now: Map V8i (SELECTseries 10) and Map CONNECT, both of which are stand-alone products not layered on top of an existing seat of MicroStation.

If you own MicroStation V8i and Bentley Map for MicroStation V8i you have two choices:

  • You can decide to exchange your Bentley Map for MicroStation V8i  license for a OpenCities Map CONNECT Edition license.  There is no cost for this license exchange however the price of SELECT will increase.
  • Or, you can decide to exchange both the MicroStation V8i and Bentley Map for MicroStation V8i licenses for one license of OpenCities Map Enterprise CONNECT Edition.  There is no cost for this exchange, however the price of SELECT will increase

Map stand-alone contains both Map and MicroStation commands found In the layered application.

(*) The CONNECT Edition of Bentley Map has been renamed to OpenCities Map.

Date

ReleaseNotesDependenciesPrerequisites
2020-04-05

Bentley Map V8i (SELECTseries 10) (SES) 08.11.09.920

---
2019-12-19

Bentley Map V8i (SELECTseries 10) (SES) 08.11.09.914

---
2019-07-08

Bentley Map V8i (SELECTseries 10) (SES) 08.11.09.908

---
2018-04-13

Bentley Map V8i (SELECTseries 4) 08.11.09.882 Update 10

Resolved IssuesMicroStation 08.11.09.867Included
2017-08-18

Bentley Map V8i (SELECTseries 4) 08.11.09.862 Update 8

Resolved IssuesMicroStation 08.11.09.862Included
2017-04-21

Bentley Map V8i (SELECTseries 4) 08.11.09.836 Update 7

Resolved IssuesMicroStation 08.11.09.862Included
2017-03-07

Bentley Map V8i (SELECTseries 4) 08.11.09.834 Update 6

Resolved IssuesMicroStation 08.11.09.862Included
2016-12-01

Bentley Map V8i (SELECTseries 4) 08.11.09.805 Update 5

Resolved IssuesMicroStation 08.11.09.862Included
2016-07-18

Bentley Map V8i (SELECTseries 4) 08.11.09.763 Update 4

Resolved IssuesMicroStation 08.11.09.838Included
2016-03-24

Bentley Map V8i (SELECTseries 4) 08.11.09.713 Update 3

Resolved IssuesMicroStation 08.11.09.829Included
2015-12-11

Bentley Map V8i (SELECTseries 4) 08.11.09.666 Update 2

Resolved IssuesMicroStation 08.11.09.752Included
2015-05-04

Bentley Map V8i (SELECTseries 4) 08.11.09.615 Update 1

Resolved IssuesMicroStation 08.11.09.714Included
2014-11-13

Bentley Map V8i (SELECTseries 4) 08.11.09.503

MicroStation 08.11.09.614Included
2012-09-17

Bentley Map V8i (SELECTseries 3) 08.11.09.107

MicroStation 08.11.09.35708.11.09.03
2012-05-31

Bentley Map V8i (SELECTseries 3) 08.11.09.91

MicroStation 08.11.09.35708.11.09.03
Product ID's Changed
2011-04-13

Bentley Map V8i (SELECTseries 2) 08.11.07.434

MicroStation 08.11.07.44308.11.07.03
2010-05-25

Bentley Map V8i (SELECTseries 1) 08.11.07.113

MicroStation 08.11.07.17108.11.07.03
2009-12-18

Bentley Map V8i (SELECTseries 1) 08.11.07.87

MicroStation 08.11.07.17108.11.07.03
2009-03-16

Bentley Map V8i 08.11.05.49

MicroStation 08.11.05.1708.11.05.05
Tags: Edition, MicroStation, version, Bentley Map

Bentley Map | OpenCities Map Wiki

Bentley Map Mobile

$
0
0
Current Revision posted to Bentley Map | OpenCities Map Wiki by Jesse Dringoli on 5/1/2020 3:56:48 PM

View, search and redline Bentley Map and MicroStation project data in the field.

Bentley Map Mobile provides powerful 2D/3D vector and raster viewing along with redlining and mark-up capabilities. It provides fast, efficient access to infrastructure data sets for field personnel of all types, including engineers, inspectors, maintenance crews, construction personnel and others. With Bentley Map Mobile, field workers can be kept up to date with the latest infrastructure data, reducing errors and improving service outcomes.

Bentley Map Mobile is GPS-enabled which simplifies the location of facilities in the field. If a network connection is available, then an interface to Google Maps (on Android and Windows) or Apple Maps (on iOS) will produce driving directions to the selected facility. The view display can be simplified by toggling features off and on, applying scale based visibility. A list of business properties values for all visible features can be easily generated for review. Free text search can be used to quickly locate text annotations or features.

Bentley Map Mobile is currently available in the Google Play Store for use on Android tablets, in the Apple App Store for iPads and iPhones, and on the Bentley Software Downloads site for 64-bit Windows 7, 8 and 10 desktops, notebooks and touch enabled tablet devices. Bentley Map Mobile requires the use of Bentley Map Mobile Publisher to publish next generation i-models from Bentley Map Enterprise, Bentley Map, Bentley OpenUtilities Designer, Bentley's communications and other Bentley Map based products.

Bentley Map Mobile requires a Bentley CONNECT login and Bentley CONNECTIONS Passport for use.

See Also

Bentley Map Mobile - Quick Start Guide

Bentley Map Mobile - Frequently Asked Questions

Bentley Map Mobile - What's New?

Bentley Map Mobile Publisher - Frequently Asked Questions

External Links

Bentley Homepage

Bentley Technical Support KnowledgeBase

Bentley LEARN Server

Bentley Map Mobile Publisher

Bentley Map Mobile

Bentley Map

Tags: Bentley Map Mobile Publisher, Bentley Map Mobile, Android, iPad, mobile, ios, Bentley Map, Map, Field, GIS
Viewing all 1284 articles
Browse latest View live