|
POST
|
When high quality renderings are needed, please consult Tutorial 19: VFX workflows with Alembic—CityEngine Tutorials | ArcGIS Desktop that explains how to utilize Houdini FX | SideFX for the task.
... View more
07-19-2017
03:58 AM
|
1
|
0
|
2687
|
|
POST
|
Thank you for your feedback. Since I'm mainly concerned with CityEngine let me focus on the first option you mentioned. Export from CityEngine You can export your scene as a local scene. Please note, that you have to create your own basemap. The following Blog post shows you how: How to Create Local Scenes in the Scene Viewer | ArcGIS Blog If you can somehow reproduce the problem why CE fails to export your scene, please send more information. I can file a bug report on this Upload / Publish on Portal In CityEngine 2017 the SLPK output has been adapted to be coherent with the latest versions ArcGIS Online and Portal. Please check if it is needed to update your portal. Since you can open your SLPK in ArcGIS Pro, I think the file is valid. In general there is better support for global scenes. Maybe this could also be a solution in your case.
... View more
07-18-2017
09:38 AM
|
2
|
1
|
1390
|
|
POST
|
For further information on terrain export please consult Exporting your map—Help | ArcGIS Desktop
... View more
07-18-2017
07:02 AM
|
2
|
0
|
2179
|
|
POST
|
For CityEngine areas with no NoData should be transparent. So you need to add a transparency layer. ArcMap has the ability to save with transparent color for those image formats that support a transparent color: GIF and PNG, of these two the PNG (Portable Network Graphic) is the better format as it supports 24bit color and transparency where GIF only has 8bit palette color and transparency. To make the export transparent select in the export dialog (File::Export) On the color dialog: Pick the large box at the top that says 'no color' and the PNG will be exported with a transparent background.
... View more
07-18-2017
06:48 AM
|
2
|
1
|
2179
|
|
POST
|
Thank you for the positive feedback on CE 2017. The CityEngine Web Viewer will be maintained, but there are no new features planned. Development is focused on export to SLPK for the ArcGIS Online 3D Scene Viewer
... View more
07-14-2017
09:17 AM
|
1
|
3
|
1390
|
|
POST
|
Sorry, I can only assist with SLPK creation from CityEngine. Your data probably is an export from drone 2 map Therefore I moved your question to the ArcGIS Pro section.
... View more
06-30-2017
08:01 AM
|
0
|
1
|
3365
|
|
POST
|
Are you sure the slpk was created with CityEngine? If so, it would be good use the latest version 2017.0 and try it again.
... View more
06-30-2017
07:13 AM
|
0
|
3
|
3365
|
|
POST
|
This is a limitation with Python the terrain sampling is reduced to 1024x1024 If a higher sampling is needed, please use a tiling approach by adding multiple terrain layers with reduced extend.
... View more
06-30-2017
07:06 AM
|
0
|
2
|
845
|
|
POST
|
Please also have a look at this thread: https://community.esri.com/message/677868-re-how-to-perfectly-align-shapes-to-a-street-network-on-a-basemap
... View more
06-30-2017
06:24 AM
|
1
|
0
|
794
|
|
POST
|
I am not sure what is going wrong here, would you please provide more info: How did you reduce the file size? Was is by only exporting part of the scene? What is the content of the scene? Any special scene coordinate system used? Which version of CityEngine were you using? Did you try to share the SLPK from the navigator via "RMB > Share as.."?
... View more
06-26-2017
01:08 AM
|
0
|
5
|
3365
|
|
POST
|
ESRI provides Tutorials for CityEngine. In Tutorial 7: Facade modeling—CityEngine Tutorials | ArcGIS Desktop. With it the users can practice modelling more complex and detailed buildings with CGA. It is shown how to instance pre-modeled facade elements like arcs. CityEngine supports import of many commonly used 3D formats, this allows to create the assets with a wide variety of modelling tools. I am confident you will be able to come to a satisfying result.
... View more
06-23-2017
04:08 AM
|
1
|
1
|
1503
|
|
POST
|
Thank you for the report. Generally FGDB textures are showing correctly in CityEngine. Could you provide your small example, so it can be analyzed?
... View more
06-23-2017
01:44 AM
|
0
|
0
|
1113
|
|
POST
|
Hello Jason, Here is a guess what might cause your login issues. The login user name for CityEngine is case sensitive, whereas on ArcGIS Online is not. Please go to the account settings in ArcGIS Online check if there are any capital letters in your user name. Then type the name exactly as shown there into the CityEngine ArcGIS Online "Name" field. If you do not use a portal, one can use the standard URL https://www.arcgis.com for login. Please excuse the inconsistent login experience. I hope this will get harmonized in the future.
... View more
06-19-2017
03:24 AM
|
2
|
3
|
3724
|
|
POST
|
Hi Marek, It is possible to use python to write user set CGA rule attributes to the street segments. The street network can than be written to FGDB. But you have to consider that the CGA rules are applied on the dynamic shapes. CityEngine creates these from street segments and street nodes. This is a 1:n relationship, since e.g. one street segment has a shape with "Street" as startrule and two shapes with "Sidewalk". So, if the left and the right sidewalk have different rule attributes, there will be a conflict. For simplicity I just used the street shape in the example below: from scripting import *
import os
# get a CityEngine instance
ce = CE()
def writeUserAttrToObject(shape,object):
for ruleAttributeName in ce.getAttributeList(shape):
print str(ce.getAttributeSource(shape, ruleAttributeName)) + ": " + \
ruleAttributeName + " = " + str(ce.getAttribute(shape, ruleAttributeName))
if str(ce.getAttributeSource(shape, ruleAttributeName)) == "USER":
objAttributeName = os.path.split(ruleAttributeName)[1]
ruleAttributeValue = ce.getAttribute(shape, ruleAttributeName)
setObjectAttribute(object,objAttributeName,ruleAttributeValue)
ce.setAttributeSource(object, ruleAttributeName, 'OBJECT')
def setObjectAttribute(object,attribute,value):
if type(value) is int:
ce.setAttribute(object, attribute, bool(value))
elif type(value) is float:
ce.setAttribute(object, attribute, value)
else:
ce.setAttribute(object, attribute, str(value))
def writeFGDB(graph,file):
exportSettings = FGDBExportGraphSettings()
exportSettings.setFilename(file)
ce.export(graph, exportSettings)
if __name__ == '__main__':
# prepare export of streetnetwork
for graphSegment in ce.getObjectsFrom(ce.selection,ce.isGraphSegment):
# graphSegment to streetShape is 1:n, ':0' is street
streetShape = ce.findByOID(ce.getOID(graphSegment)+':0')
writeUserAttrToObject(streetShape,graphSegment)
# path of the output file
file = ce.toFSPath("data/Complete_Street.gdb")
writeFGDB(ce.selection(),file)
... View more
06-14-2017
04:59 AM
|
0
|
0
|
813
|
|
POST
|
Have you installed a matching version of the CityEngine Administrator on your system? Its licensing service is needed. esri-cityengine-sdk/README.md at master · Esri/esri-cityengine-sdk · GitHub
... View more
06-07-2017
08:12 AM
|
0
|
2
|
692
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-15-2025 08:03 AM | |
| 1 | 10-16-2025 03:16 AM | |
| 3 | 10-20-2025 06:11 AM | |
| 1 | 04-19-2023 12:30 AM | |
| 1 | 02-27-2025 05:19 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|